一、指定 GPU 的 id
1 | CUDA_VISIBLE_DEVICES=1 python my_script.py |
二、深度学习框架
- Neural Networks and Deep Learning:http://neuralnetworksanddeeplearning.com/
1、TensorFlow
- 官方API www.tensorflow.org
- 国内API tensorflow.google.cn
- TensorFlow从0到1丨开篇:Hello TensorFlow !
- 教学:http://www.tensorflownews.com/
- Tensorflow 搭建自己的神经网络 (莫烦 Python 教程)
- 莫烦 https://github.com/MorvanZhou 主页
- TensorFlow 深度学习笔记 TensorFlow实现与优化深度神经网络
2、Keras
- 英文文档 https://keras.io/
- 中文文档 https://keras.io/zh/
- 别人翻译 http://keras-cn.readthedocs.io/en/latest/
- 莫烦 keras 教程 https://morvanzhou.github.io/tutorials/machine-learning/keras/
- 深度学习:Keras入门(一)之基础篇
- 《Keras 实现 LSTM》笔记
1 | keras离线官方文档 https://blog.csdn.net/nima1994/article/details/80579240 |
3、PyTorch
- 官网:https://pytorch.org/
- 英文文档:https://pytorch.org/docs/stable/index.html
- 中文文档:https://pytorch-cn.readthedocs.io/zh/latest/
- PyTorch 中文手册:https://github.com/zergtant/pytorch-handbook
- 中文官方文档:https://github.com/apachecn/pytorch-doc-zh
- 神经网络框架-Pytorch使用介绍:https://blog.csdn.net/zzulp/article/details/80573331
- 安装以前的版本:https://pytorch.org/get-started/previous-versions/#linux-and-windows
4、FastAI
- 论文网址:http://nlp.fast.ai/category/classification.html
- Fast.AI 第一课学习笔记 : https://www.jianshu.com/p/df6446057004
- Fast.AI课程文件、教学视频及学习环境虚拟机下载分享:https://www.jianshu.com/p/2fe22a6b0ecb
- 【深度学习】从fast.ai学到的十大技巧:https://blog.csdn.net/ChenVast/article/details/81480865
- 使用fastai训练的一个性别识别模型:https://www.cnblogs.com/ctsch/p/9498327.html
- https://github.com/fastai/fastai/tree/master/courses/dl2/imdb_scripts
5、MXNet
三、《动手学深度学习》
- 中文官网:http://zh.gluon.ai/
- MxNet版 中文教程:https://github.com/d2l-ai/d2l-zh
- PyTorch版 中文教程:https://github.com/ShusenTang/Dive-into-DL-PyTorch
- TF2.0版 中文教程:https://github.com/TrickyGo/Dive-into-DL-TensorFlow2.0