Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/zipzou/notes-machinelearning-deeplearning

统计机器学习-深度学习-神经网络等的学习笔记
https://github.com/zipzou/notes-machinelearning-deeplearning

Last synced: 13 days ago
JSON representation

统计机器学习-深度学习-神经网络等的学习笔记

Awesome Lists containing this project

README

        

# notes-machinelearning-deeplearning
统计机器学习-深度学习-神经网络等的学习笔记

如果有需要自行编译`tex`文件,推荐使用texlive,并使用xelatex。作者使用VSCode + Latex Workshop + TexLive 2018编译,编译工具配置如下:
```json
"latex-workshop.latex.recipes": [
{
"name": "xelatex",
"tools": [
"xelatex"
]
},
{
"name": "xelatex ➞ bibtex ➞ xelatex × 2",
"tools": [
"xelatex",
"bibtex",
"xelatex",
"xelatex"
]
}
]
```