Notes icon indicating copy to clipboard operation
Notes copied to clipboard

:rocket: 笔记

Results 100 Notes issues
Sort by recently updated
recently updated
newest added

如果库已经存在, 但是想改为组织, 那么必须先去npm网站手动创建组织

# 安装 curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun # docker启动        systemctl start docker service docker start # 重启docker服务 systemctl restart  docker sudo service docker restart # 关闭docker    ...

如何理解卷积神经网络(CNN)中的卷积和池化? - 量子位的回答 - 知乎 https://www.zhihu.com/question/49376084/answer/712089980

取每个过滤框里最大的值 ![image](https://user-images.githubusercontent.com/8264787/118069855-82478d80-b3d7-11eb-8d96-2aff7e77864a.png)

m维向量: 一个m×n的矩阵,可以看做n个m维列向量组成

https://www.w3cschool.cn/tensorflowjs/tensorflowjs-y6kx2q2c.html 损失函数(loss function):这个损失函数代表了给定多项式和数据的匹配程度。 损失函数值越小,那么这个多项式和数据就跟匹配。 优化器(optimizer):这个优化器实现了一个算法,它会基于损失函数的输出来修正系数值。所以优化器的目的就是尽可能的减小损失函数的值。 训练迭代器(traing loop):即它会不断地运行这个优化器来减少损失函数。

`-U`代表已安装, 那么自动升级

```cmd pip config set global.index-url https://mirrors.aliyun.com/pypi/simple ```

进入命令行: ```cmd bcdboot C:\windows /l zh-cn ``` 重启会提示哪个文件加载错误, 删除了即可 ```cmd del c:xxxx ```

根目录新建`.gitattributes`文件 **忽略指定目录** ``` public/statics/* linguist-vendored ``` **忽略文件类型** ``` *.css linguist-vendored *.scss linguist-vendored *.js linguist-vendored ```