推荐|深度学习PyTorch的教程代码

Posted 全球人工智能

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了推荐|深度学习PyTorch的教程代码相关的知识,希望对你有一定的参考价值。

“全球人工智能”拥有十多万AI产业用户,10000多名AI技术专家。主要来自:北大,清华,中科院,麻省理工,卡内基梅隆,斯坦福,哈佛,牛津,剑桥...以及谷歌,腾讯,百度,脸谱,微软,阿里,海康威视,英伟达......等全球名校和名企。


——

——

韩国大学 yunjey

该存储库提供深入学习研究人员学习PyTorch的教程代码。在本教程中,大多数模型都使用少于30行代码实现。在开始本教程之前,建议您完成官方Pytorch教程(http://pytorch.org/tutorials/beginner/deep_learning_60min_blitz.html

一、基础知识

  • PyTorch基础知识

    https://github.com/yunjey/pytorch-tutorial/tree/master/tutorials/01-basics/pytorch_basics/main.py

  • 线性回归

    https://github.com/yunjey/pytorch-tutorial/tree/master/tutorials/01-basics/linear_regression/main.py#L24-L31

  • 逻辑回归

    https://github.com/yunjey/pytorch-tutorial/tree/master/tutorials/01-basics/logistic_regression/main.py#L35-L42

  • 前馈神经网络

    https://github.com/yunjey/pytorch-tutorial/tree/master/tutorials/01-basics/feedforward_neural_network/main.py#L36-L47

二、中级

  • 卷积神经网络

     https://github.com/yunjey/pytorch-tutorial/tree/master/tutorials/02-intermediate/convolutional_neural_network/main.py#L33-L53

  • 深层残留网络

    https://github.com/yunjey/pytorch-tutorial/tree/master/tutorials/02-intermediate/deep_residual_network/main.py#L67-L103

  • 经常性神经网络

    https://github.com/yunjey/pytorch-tutorial/tree/master/tutorials/02-intermediate/recurrent_neural_network/main.py#L38-L56

  • 双向循环神经网络

    https://github.com/yunjey/pytorch-tutorial/tree/master/tutorials/02-intermediate/bidirectional_recurrent_neural_network/main.py#L38-L57

  • 语言模型(RNN-LM)

    https://github.com/yunjey/pytorch-tutorial/tree/master/tutorials/02-intermediate/language_model/main.py#L28-L53

  • 生成对抗网络

    https://github.com/yunjey/pytorch-tutorial/blob/master/tutorials/02-intermediate/generative_adversarial_network/main.py#L34-L50

三、高级

  • 图像字幕(CNN-RNN)

    https://github.com/yunjey/pytorch-tutorial/tree/master/tutorials/03-advanced/image_captioning

  • 深卷积GAN(DCGAN)

    https://github.com/yunjey/pytorch-tutorial/tree/master/tutorials/03-advanced/deep_convolutional_gan

  • 变分自动编码器

    https://github.com/yunjey/pytorch-tutorial/tree/master/tutorials/03-advanced/variational_auto_encoder

  • 神经风格转移

    https://github.com/yunjey/pytorch-tutorial/tree/master/tutorials/03-advanced/neural_style_transfer

四、实用工具

  • TensorBoard在PyTorch

    https://github.com/yunjey/pytorch-tutorial/tree/master/tutorials/04-utils/tensorboard


系统学习,进入全球人工智能学院

热门文章推荐

以上是关于推荐|深度学习PyTorch的教程代码的主要内容,如果未能解决你的问题,请参考以下文章

免费送书|《深度学习入门之pytorch》一书

有没有pytorch的高级应用教程推荐一下

分析《Pytorch 深度学习》PDF中文+mobi+epub+源代码

pytorch深度学习60分钟闪电战

专知-PyTorch手把手深度学习教程05Dropout快速理解与PyTorch实现: 图文+代码

PyTorch——Python 优先的深度学习框架|软件推荐