sklearn ---- python ai assistant tool
MinMaxScaler
归一化工具,把特征 feature 放缩到给定的范围内(默认值 0~1)
- 一个 Python 类
模块位置
- sklearn.preprocessing
方法
Css
CSS 样式继承
参考:
特点:
- 有具体指出的属性,使用具体指出的
- 其它使用优先级,推导给定的
总结
- 越近的优先级越高
优先级
- 内联 > 内部 > 外部 > 浏览器默认值
破除继承和优先级关系
- 使用“!important”
背景 Background
svg 图片
Tutorial
svg, js and html
- http://www.petercollingridge.co.uk/tutorials/svg/interactive/javascript/#:~:text=To%20create%20elements%2C%20you%20need,methods%20of%20an%20SVG%20element.
- 示例代码:code-for-blog/svg-interaction/svg-and-js at master · petercollingridge/code-f…
- SVG 教程 - 基础教程在线
在网页中使用 svg
插入方式
- inline
- external
SVG + JS
Vue
Purpose
Notes for Vue
分割线
v-divider
水平分割线,上下分割
v-seperator
竖直分割线,左右分割
Javascript
变量作用域
作用域类型
全局 Global Scopes
- let 不属于 window
- undefined 属于 window
- var 声明 属于 window
局部 Local Scopes
- 函数 Function Scopes
块 Block Scopes
- 使用 let 或者 const
- let 声明普通变量
- const 声明“引用”不便类型