All Projects → dragen1860 → Deep Learning With Pytorch Tutorials

dragen1860 / Deep Learning With Pytorch Tutorials

深度学习与PyTorch入门实战视频教程 配套源代码和PPT

Programming Languages

python
139335 projects - #7 most used programming language
Jupyter Notebook
11667 projects

Projects that are alternatives of or similar to Deep Learning With Pytorch Tutorials

Deep Learning With Python
Deep learning codes and projects using Python
Stars: ✭ 195 (-90.18%)
Mutual labels:  artificial-intelligence, convolutional-neural-networks, generative-adversarial-network, recurrent-neural-networks
Awesome Tensorlayer
A curated list of dedicated resources and applications
Stars: ✭ 248 (-87.51%)
Mutual labels:  convolutional-neural-networks, generative-adversarial-network, recurrent-neural-networks
Har Keras Cnn
Human Activity Recognition (HAR) with 1D Convolutional Neural Network in Python and Keras
Stars: ✭ 97 (-95.12%)
Mutual labels:  artificial-intelligence, tutorial, convolutional-neural-networks
Top Deep Learning
Top 200 deep learning Github repositories sorted by the number of stars.
Stars: ✭ 1,365 (-31.27%)
Mutual labels:  artificial-intelligence, convolutional-neural-networks, recurrent-neural-networks
Malware Classification
Towards Building an Intelligent Anti-Malware System: A Deep Learning Approach using Support Vector Machine for Malware Classification
Stars: ✭ 88 (-95.57%)
Mutual labels:  artificial-intelligence, convolutional-neural-networks, recurrent-neural-networks
Iseebetter
iSeeBetter: Spatio-Temporal Video Super Resolution using Recurrent-Generative Back-Projection Networks | Python3 | PyTorch | GANs | CNNs | ResNets | RNNs | Published in Springer Journal of Computational Visual Media, September 2020, Tsinghua University Press
Stars: ✭ 202 (-89.83%)
Mutual labels:  convolutional-neural-networks, generative-adversarial-network, recurrent-neural-networks
Chemgan Challenge
Code for the paper: Benhenda, M. 2017. ChemGAN challenge for drug discovery: can AI reproduce natural chemical diversity? arXiv preprint arXiv:1708.08227.
Stars: ✭ 98 (-95.07%)
Mutual labels:  artificial-intelligence, generative-adversarial-network, recurrent-neural-networks
Image Caption Generator
[DEPRECATED] A Neural Network based generative model for captioning images using Tensorflow
Stars: ✭ 141 (-92.9%)
Mutual labels:  artificial-intelligence, convolutional-neural-networks, recurrent-neural-networks
Komputation
Komputation is a neural network framework for the Java Virtual Machine written in Kotlin and CUDA C.
Stars: ✭ 295 (-85.15%)
Mutual labels:  artificial-intelligence, convolutional-neural-networks, recurrent-neural-networks
First Steps Towards Deep Learning
This is an open sourced book on deep learning.
Stars: ✭ 376 (-81.07%)
Mutual labels:  artificial-intelligence, convolutional-neural-networks, recurrent-neural-networks
Trending Deep Learning
Top 100 trending deep learning repositories sorted by the number of stars gained on a specific day.
Stars: ✭ 543 (-72.66%)
Mutual labels:  artificial-intelligence, convolutional-neural-networks, recurrent-neural-networks
Deep Learning For Beginners
videos, lectures, blogs for Deep Learning
Stars: ✭ 89 (-95.52%)
Mutual labels:  convolutional-neural-networks, generative-adversarial-network, recurrent-neural-networks
Pytorch Cpp
C++ Implementation of PyTorch Tutorials for Everyone
Stars: ✭ 1,014 (-48.94%)
Mutual labels:  artificial-intelligence, tutorial, generative-adversarial-network
Reading comprehension tf
Machine Reading Comprehension in Tensorflow
Stars: ✭ 37 (-98.14%)
Mutual labels:  artificial-intelligence, convolutional-neural-networks, recurrent-neural-networks
Computervision Recipes
Best Practices, code samples, and documentation for Computer Vision.
Stars: ✭ 8,214 (+313.6%)
Mutual labels:  artificial-intelligence, tutorial, convolutional-neural-networks
Kerasr
R interface to the keras library
Stars: ✭ 90 (-95.47%)
Mutual labels:  convolutional-neural-networks, recurrent-neural-networks
Text classification
Text Classification Algorithms: A Survey
Stars: ✭ 1,276 (-35.75%)
Mutual labels:  convolutional-neural-networks, recurrent-neural-networks
Pytorch Pos Tagging
A tutorial on how to implement models for part-of-speech tagging using PyTorch and TorchText.
Stars: ✭ 96 (-95.17%)
Mutual labels:  tutorial, recurrent-neural-networks
Pytorch Learners Tutorial
PyTorch tutorial for learners
Stars: ✭ 97 (-95.12%)
Mutual labels:  convolutional-neural-networks, recurrent-neural-networks
Tnn
Biologically-realistic recurrent convolutional neural networks
Stars: ✭ 83 (-95.82%)
Mutual labels:  convolutional-neural-networks, recurrent-neural-networks

PyTorch安装指令

请先安装Anaconda和CUDA 10.0。

  • 配置国内源
# 配置国内源,方便安装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
# 安装PyTorch,要使用国内源请去掉-c pytorch这个参数!!
conda install pytorch torchvision cudatoolkit=10.0
  • 安装常用库
pip install numpy matplotlib pillow pandas

课程链接

课程链接: https://study.163.com/course/courseMain.htm?share=2&shareId=480000001847407&courseId=1208894818&_trace_c_p_k2_=61a9e0a511f7409b92a08d4f4c964330

课程大纲: 课程介绍

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].