{"id":15032607,"url":"https://github.com/fendouai/pytorchdocs","last_synced_at":"2025-05-15T10:06:48.694Z","repository":{"id":40593407,"uuid":"183181254","full_name":"fendouai/PyTorchDocs","owner":"fendouai","description":"PyTorch 官方中文教程包含 60 分钟快速入门教程，强化教程，计算机视觉，自然语言处理，生成对抗网络，强化学习。欢迎 Star，Fork！","archived":false,"fork":false,"pushed_at":"2022-02-15T02:49:13.000Z","size":7836,"stargazers_count":2648,"open_issues_count":5,"forks_count":712,"subscribers_count":55,"default_branch":"master","last_synced_at":"2025-05-15T10:06:05.963Z","etag":null,"topics":["pytorch","pytorch-cnn","pytorch-gan","pytorch-nlp","pytorch-tutorial"],"latest_commit_sha":null,"homepage":"http://pytorchchina.com","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fendouai.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-04-24T08:13:05.000Z","updated_at":"2025-05-14T14:40:51.000Z","dependencies_parsed_at":"2022-08-24T23:40:30.523Z","dependency_job_id":null,"html_url":"https://github.com/fendouai/PyTorchDocs","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fendouai%2FPyTorchDocs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fendouai%2FPyTorchDocs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fendouai%2FPyTorchDocs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fendouai%2FPyTorchDocs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fendouai","download_url":"https://codeload.github.com/fendouai/PyTorchDocs/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254319720,"owners_count":22051073,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["pytorch","pytorch-cnn","pytorch-gan","pytorch-nlp","pytorch-tutorial"],"created_at":"2024-09-24T20:18:52.106Z","updated_at":"2025-05-15T10:06:43.679Z","avatar_url":"https://github.com/fendouai.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 简介\n\n目前研究人员正在使用的深度学习框架不尽相同，有 TensorFlow 、PyTorch、Keras等。这些深度学习框架被应用于计算机视觉、语音识别、自然语言处理与生物信息学等领域，并获取了极好的效果。其中，PyTorch是当前难得的简洁优雅且高效快速的框架，当前开源的框架中，没有哪一个框架能够在灵活性、易用性、速度这三个方面有两个能同时超过PyTorch。\n\n本文档的定位是 PyTorch 入门教程，主要针对想要学习PyTorch的学生群体或者深度学习爱好者。通过教程的学习，能够实现零基础想要了解和学习深度学习，降低自学的难度，快速学习PyTorch。\n\n官方教程包含了 PyTorch 介绍，安装教程；60分钟快速入门教程，可以迅速从小白阶段完成一个分类器模型；计算机视觉常用模型，方便基于自己的数据进行调整，不再需要从头开始写；自然语言处理模型，聊天机器人，文本生成等生动有趣的项目。\n\n总而言之：\n* 如果你想了解一下 PyTorch，可以看介绍部分。\n* 如果你想快速入门 PyTorch，可以看60分钟快速入门。\n* 如果你想解决计算机视觉问题，可以看计算机视觉部分。\n* 如果你想解决自然语言处理问题，可以看NLP 部分。\n* 还有强化学习和生成对抗网络部分内容。\n\n# PyTorch 官方文档视频版上线B站\n\nhttps://www.bilibili.com/video/BV1GS4y1F71Q/\n\n合集 https://github.com/fendouai/PyTorchVideo\n\n作者：[PyTorchChina](http://pytorchchina.com) [PyTorch](http://pytorch123.com/) 翻译小组: News \u0026 PanChuang\n\n原文：[https://pytorch.org/tutorials/](https://pytorch.org/tutorials/)\n\n# 目录\n## 第一章：PyTorch之简介与下载\n### 1.[PyTorch简介](https://github.com/fendouai/PyTorchDocs/blob/master/FirstSection/PyTorchIntro.md)\n### 2.[PyTorch环境搭建](https://github.com/fendouai/PyTorchDocs/blob/master/FirstSection/InstallIutorial.md)\n\n## 第二章：PyTorch之60min入门\n### 1.[PyTorch 入门](https://github.com/fendouai/PyTorchDocs/blob/master/SecondSection/what_is_pytorch.md)\n### 2.[PyTorch 自动微分](https://github.com/fendouai/PyTorchDocs/blob/master/SecondSection/autograd_automatic_differentiation.md)\n### 3.[PyTorch 神经网络](https://github.com/fendouai/PyTorchDocs/blob/master/SecondSection/neural_networks.md)\n### 4.[PyTorch 图像分类器](https://github.com/fendouai/PyTorchDocs/blob/master/SecondSection/training_a_classifier.md)\n### 5.[PyTorch 数据并行处理](https://github.com/fendouai/PyTorchDocs/blob/master/SecondSection/optional_data_parallelism.md)\n\n## 第三章：PyTorch之入门强化\n### 1.[数据加载和处理](https://github.com/fendouai/PyTorchDocs/blob/master/ThirdSection/DataLoding.md)\n### 2.[PyTorch小试牛刀](https://github.com/fendouai/PyTorchDocs/blob/master/ThirdSection/LearningPyTorch.md)\n### 3.[迁移学习](https://github.com/fendouai/PyTorchDocs/blob/master/ThirdSection/TransferLearning.md)\n### 4.[混合前端的seq2seq模型部署](https://github.com/fendouai/PyTorchDocs/blob/master/ThirdSection/DeployingSeq2SeqModelwithHybridFrontend.MD)\n### 5.[保存和加载模型](https://github.com/fendouai/PyTorchDocs/blob/master/ThirdSection/SaveModel.md)\n\n## 第四章：PyTorch之图像篇\n### 1.[微调基于torchvision 0.3的目标检测模型](https://github.com/fendouai/PyTorchDocs/blob/master/fourSection/ObjectDetectionFinetuning.md)\n### 2.[微调TorchVision模型](https://github.com/fendouai/PyTorchDocs/blob/master/fourSection/FinetuningTorchVisionModel.md)\n### 3.[空间变换器网络](https://github.com/fendouai/PyTorchDocs/blob/master/fourSection/SpatialTranNet.md)\n### 4.[使用PyTorch进行Neural-Transfer](https://github.com/fendouai/PyTorchDocs/blob/master/fourSection/NeuralTransfer.md)\n### 5.[生成对抗示例](https://github.com/fendouai/PyTorchDocs/blob/master/fourSection/AdversarialExampleGene.md)\n### 6.[使用ONNX将模型转移至Caffe2和移动端](https://github.com/fendouai/PyTorchDocs/blob/master/fourSection/ONNX.md)\n\n## 第五章：PyTorch之文本篇\n### 1.[聊天机器人教程](https://github.com/fendouai/PyTorchDocs/blob/master/FifthSection/Chatbot.md)\n### 2.[使用字符级RNN生成名字](https://github.com/fendouai/PyTorchDocs/blob/master/FifthSection/Char%20RNN%20Generation.MD)\n### 3.[使用字符级RNN进行名字分类](https://github.com/fendouai/PyTorchDocs/blob/master/FifthSection/Char%20RNN%20Classification.md)\n### 4.[在深度学习和NLP中使用Pytorch](https://github.com/fendouai/PyTorchDocs/blob/master/FifthSection/DeepLearning%20NLP.md)\n### 5.[使用Sequence2Sequence网络和注意力进行翻译](https://github.com/fendouai/PyTorchDocs/blob/master/FifthSection/Translation_S2S%20Network.md)\n\n## 第六章：PyTorch之生成对抗网络\n\n### 1.[生成对抗网络（Generative Adversarial Networks）](https://github.com/fendouai/PyTorchDocs/blob/master/SixthSection/Dcgan.md)\n\n## 第七章：PyTorch之强化学习\n\n### 1.[强化学习（DQN）](https://github.com/fendouai/PyTorchDocs/blob/master/SeventhSection/ReinforcementLearning.md)\n\n# 教程推荐\n\n* PyTorch 入门教程\n\n[http://pytorchchina.com](http://pytorchchina.com)\n\n* 磐创AI 聊天机器人，智能客服：\n\n[http://www.panchuangai.com/](http://www.panchuangai.com/)\n\n* 磐创教程网站，TensorFlow，Pytorch，Keras：\n\n[http://panchuang.net/](http://panchuang.net/)\n\n* 魔图互联 知识图谱推荐系统：\n\n[http://motuhulian.com](http://motuhulian.com)\n\n由于译者水平有限，如有疏漏，欢迎提交 PR。\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffendouai%2Fpytorchdocs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffendouai%2Fpytorchdocs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffendouai%2Fpytorchdocs/lists"}