Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dragen1860/deep-learning-with-pytorch-tutorials
深度学习与PyTorch入门实战视频教程 配套源代码和PPT
https://github.com/dragen1860/deep-learning-with-pytorch-tutorials
artificial-intelligence convolutional-neural-networks deep-learning generative-adversarial-network machine-learning pytorch recurrent-neural-networks tutorial
Last synced: 1 day ago
JSON representation
深度学习与PyTorch入门实战视频教程 配套源代码和PPT
- Host: GitHub
- URL: https://github.com/dragen1860/deep-learning-with-pytorch-tutorials
- Owner: dragen1860
- Created: 2018-11-26T04:21:46.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-17T03:10:43.000Z (about 5 years ago)
- Last Synced: 2025-01-24T21:04:15.917Z (8 days ago)
- Topics: artificial-intelligence, convolutional-neural-networks, deep-learning, generative-adversarial-network, machine-learning, pytorch, recurrent-neural-networks, tutorial
- Language: Python
- Homepage: https://study.163.com/course/introduction/1208894818.htm
- Size: 87.2 MB
- Stars: 2,900
- Watchers: 70
- Forks: 1,297
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PyTorch安装指令
请先安装Anaconda和CUDA 10.0。- 配置国内源
```python
# 配置国内源,方便安装Numpy,Matplotlib等
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
# 配置国内源,安装PyTorch用
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
# 显示源地址
conda config --set show_channel_urls yes
```- 安装PyTorch
```python
# 安装PyTorch,要使用国内源请去掉-c pytorch这个参数!!
conda install pytorch torchvision cudatoolkit=10.0```
- 安装常用库
```python
pip install numpy matplotlib pillow pandas
```# 课程链接
**课程链接:** https://study.163.com/course/courseMain.htm?share=2&shareId=480000001847407&courseId=1208894818&_trace_c_p_k2_=61a9e0a511f7409b92a08d4f4c964330
**课程大纲:**
![课程介绍](res/outline.png)