├── .gitattributes ├── .idea ├── PyTorchDocs.iml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── dictionaries │ └── wangfei.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── Content.md ├── EigthSection ├── Deploying PyTorch in Python via a REST APIwith Flask.md ├── torchScript.md └── torchScript_in_C++.md ├── FifthSection ├── Char RNN Classification.md ├── Char RNN Generation.MD ├── Chatbot.md ├── DL_with_PyTorch.md ├── DeepLearning NLP.md ├── Dynamic_Desicion_Bi-LSTM.md ├── PyTorch_Introuction.md ├── Sequence_and_LSTM_Network.md ├── Translation_S2S Network.md ├── Word_Embedding.md └── notation │ ├── (2,4,NP).gif │ ├── (I,J,R).gif │ ├── 1.gif │ ├── 2.gif │ ├── 21.gif │ ├── AC.gif │ ├── Ad+b.gif │ ├── C.gif │ ├── D.gif │ ├── L(_theta).gif │ ├── N.gif │ ├── P.gif │ ├── P_jk.gif │ ├── ReLU.gif │ ├── Score(x,y).gif │ ├── Score(x,y)2.gif │ ├── Score_2.gif │ ├── T.gif │ ├── V.gif │ ├── _T_.gif │ ├── _V_.gif │ ├── _V_XD.gif │ ├── c_w.gif │ ├── f(g(x)).gif │ ├── f(x).gif │ ├── f(x)=.gif │ ├── g(x).gif │ ├── h_i.gif │ ├── h_t.gif │ ├── i.gif │ ├── j.gif │ ├── k.gif │ ├── log.gif │ ├── logSoftmax.gif │ ├── p(y_x).gif │ ├── phi.gif │ ├── q_w.gif │ ├── sigma(x).gif │ ├── tanh(x).gif │ ├── w.gif │ ├── w_1-w_M.gif │ ├── w_i.gif │ ├── x.gif │ ├── x_w.gif │ ├── y.gif │ ├── y_i.gif │ ├── 公式.PNG │ ├── 公式11.PNG │ ├── 公式12.PNG │ ├── 公式13.PNG │ ├── 公式15.PNG │ ├── 公式16.gif │ ├── 公式17.gif │ ├── 公式18.gif │ ├── 公式19.gif │ ├── 公式20.PNG │ ├── 公式20.gif │ ├── 公式21.PNG │ ├── 公式22.PNG │ ├── 公式23.PNG │ ├── 公式24.gif │ ├── 公式25.gif │ ├── 公式26.gif │ ├── 公式27.gif │ └── 公式4.PNG ├── FirstSection ├── InstallIutorial.md └── PyTorchIntro.md ├── Image ├── 1.PNG ├── 10:环境变量配置2.PNG ├── 11:环境变量配置3.PNG ├── 12:环境变量配置4.PNG ├── 13:环境变量配置5.PNG ├── 14:找到Anaconda Navigator.jpg ├── 15:打开Anaconda.PNG ├── 16:PyTorch安装1.PNG ├── 16:PyTorch安装2:pip下打命令.PNG ├── 17:PyTorchvision安装.PNG ├── 18:小demo运行检验是否安装成功.PNG ├── 19:conda环境下安装pytorch官网命令.jpg ├── 2.PNG ├── 20:cmd下输入命令安装(conda).PNG ├── 21:在Jupyter下新建python文件验证.jpg ├── 21:验证代码.PNG ├── 22:验证成功截图.PNG ├── 3.PNG ├── 4.PNG ├── 5.PNG ├── 6.PNG ├── 7.PNG ├── 8.PNG ├── 9:Anaconda环境变量配置1.PNG ├── conda.PNG ├── pytorch.PNG ├── 输出01.PNG ├── 输出02.PNG ├── 输出03.PNG ├── 输出04.PNG ├── 输出05.PNG ├── 输出06.PNG ├── 输出07.PNG ├── 输出08.PNG ├── 输出09.PNG ├── 输出10.PNG ├── 输出11.PNG ├── 输出12.PNG ├── 输出13.PNG ├── 输出14.PNG ├── 输出15.PNG ├── 输出16.PNG ├── 输出17.PNG ├── 输出18.PNG ├── 输出19.PNG ├── 输出20.PNG └── 输出21.PNG ├── README.md ├── SecondSection ├── Autograd.md ├── LICENSE ├── README.md ├── Tensor.md ├── autograd_automatic_differentiation.md ├── neural_networks.md ├── optional_data_parallelism.md ├── training_a_classifier.md └── what_is_pytorch.md ├── SeventhSection ├── ReinforcementLearning.md └── notation │ ├── B.gif │ ├── Q.gif │ ├── Q_.gif │ ├── Q_s_left.gif │ ├── Q_s_right.gif │ ├── Q_sa.gif │ ├── R_t0.gif │ ├── V()=.gif │ ├── V(s)=0.gif │ ├── V_st+1.gif │ ├── delta.gif │ ├── delta_.gif │ ├── gamma.gif │ ├── 公式1.PNG │ ├── 公式2.PNG │ ├── 公式3.PNG │ ├── 公式4.PNG │ ├── 公式5.PNG │ └── 公式6.PNG ├── SixthSection ├── Dcgan.md └── notation │ ├── D(x).gif │ ├── D.gif │ ├── D_G(z).gif │ ├── G(z).gif │ ├── G.gif │ ├── P_g=P_data.gif │ ├── log(1-).gif │ ├── log(1-D(G(x))).gif │ ├── log(1-x).gif │ ├── log(x).gif │ ├── log+log(1-).gif │ ├── log+log_DGz.gif │ ├── logD(x).gif │ ├── log_DGz.gif │ ├── p_data.gif │ ├── p_g.gif │ ├── x.gif │ ├── z.gif │ ├── 公式1.PNG │ └── 公式2.PNG ├── ThirdSection ├── DataLoding.md ├── DeployingSeq2SeqModelwithHybridFrontend.MD ├── LearningPyTorch.md ├── SaveModel.md ├── TransferLearning.md └── image │ ├── 5.png │ ├── landmarked_face2.png │ ├── sphx_glr_data_loading_tutorial_001.png │ ├── sphx_glr_data_loading_tutorial_002.png │ ├── sphx_glr_data_loading_tutorial_003.png │ └── sphx_glr_data_loading_tutorial_004.png └── fourSection ├── AdversarialExampleGene.md ├── FinetuningTorchVisionModel.md ├── NeuralTransfer.md ├── ONNX.md ├── ObjectDetectionFinetuning.md ├── SpatialTranNet.md ├── image ├── 01.png ├── 02.png ├── 03.png ├── 04.png ├── 05.png ├── 06.png ├── 07.png ├── 08.png ├── 09.jpg ├── 10.jpg ├── 11.jpg ├── 12.jpg ├── 13.jpg ├── 14.jpg ├── 15.png ├── 16.png ├── 17.png ├── 18.png ├── 19.jpg └── 20.png └── notation ├── (e).gif ├── (x).gif ├── J().gif ├── J_X.gif ├── data_gr.gif ├── e.gif ├── epsilon.gif ├── image.gif ├── long.gif ├── sign().gif ├── theta.gif ├── x.gif ├── x^'.gif └── y.gif /.gitattributes: -------------------------------------------------------------------------------- 1 | *.md linguist-language=python 2 | -------------------------------------------------------------------------------- /.idea/PyTorchDocs.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/.idea/PyTorchDocs.iml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/dictionaries/wangfei.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/.idea/dictionaries/wangfei.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /Content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Content.md -------------------------------------------------------------------------------- /EigthSection/Deploying PyTorch in Python via a REST APIwith Flask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/EigthSection/Deploying PyTorch in Python via a REST APIwith Flask.md -------------------------------------------------------------------------------- /EigthSection/torchScript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/EigthSection/torchScript.md -------------------------------------------------------------------------------- /EigthSection/torchScript_in_C++.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/EigthSection/torchScript_in_C++.md -------------------------------------------------------------------------------- /FifthSection/Char RNN Classification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/Char RNN Classification.md -------------------------------------------------------------------------------- /FifthSection/Char RNN Generation.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/Char RNN Generation.MD -------------------------------------------------------------------------------- /FifthSection/Chatbot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/Chatbot.md -------------------------------------------------------------------------------- /FifthSection/DL_with_PyTorch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/DL_with_PyTorch.md -------------------------------------------------------------------------------- /FifthSection/DeepLearning NLP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/DeepLearning NLP.md -------------------------------------------------------------------------------- /FifthSection/Dynamic_Desicion_Bi-LSTM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/Dynamic_Desicion_Bi-LSTM.md -------------------------------------------------------------------------------- /FifthSection/PyTorch_Introuction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/PyTorch_Introuction.md -------------------------------------------------------------------------------- /FifthSection/Sequence_and_LSTM_Network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/Sequence_and_LSTM_Network.md -------------------------------------------------------------------------------- /FifthSection/Translation_S2S Network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/Translation_S2S Network.md -------------------------------------------------------------------------------- /FifthSection/Word_Embedding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/Word_Embedding.md -------------------------------------------------------------------------------- /FifthSection/notation/(2,4,NP).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/(2,4,NP).gif -------------------------------------------------------------------------------- /FifthSection/notation/(I,J,R).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/(I,J,R).gif -------------------------------------------------------------------------------- /FifthSection/notation/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/1.gif -------------------------------------------------------------------------------- /FifthSection/notation/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/2.gif -------------------------------------------------------------------------------- /FifthSection/notation/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/21.gif -------------------------------------------------------------------------------- /FifthSection/notation/AC.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/AC.gif -------------------------------------------------------------------------------- /FifthSection/notation/Ad+b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/Ad+b.gif -------------------------------------------------------------------------------- /FifthSection/notation/C.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/C.gif -------------------------------------------------------------------------------- /FifthSection/notation/D.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/D.gif -------------------------------------------------------------------------------- /FifthSection/notation/L(_theta).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/L(_theta).gif -------------------------------------------------------------------------------- /FifthSection/notation/N.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/N.gif -------------------------------------------------------------------------------- /FifthSection/notation/P.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/P.gif -------------------------------------------------------------------------------- /FifthSection/notation/P_jk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/P_jk.gif -------------------------------------------------------------------------------- /FifthSection/notation/ReLU.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/ReLU.gif -------------------------------------------------------------------------------- /FifthSection/notation/Score(x,y).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/Score(x,y).gif -------------------------------------------------------------------------------- /FifthSection/notation/Score(x,y)2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/Score(x,y)2.gif -------------------------------------------------------------------------------- /FifthSection/notation/Score_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/Score_2.gif -------------------------------------------------------------------------------- /FifthSection/notation/T.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/T.gif -------------------------------------------------------------------------------- /FifthSection/notation/V.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/V.gif -------------------------------------------------------------------------------- /FifthSection/notation/_T_.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/_T_.gif -------------------------------------------------------------------------------- /FifthSection/notation/_V_.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/_V_.gif -------------------------------------------------------------------------------- /FifthSection/notation/_V_XD.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/_V_XD.gif -------------------------------------------------------------------------------- /FifthSection/notation/c_w.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/c_w.gif -------------------------------------------------------------------------------- /FifthSection/notation/f(g(x)).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/f(g(x)).gif -------------------------------------------------------------------------------- /FifthSection/notation/f(x).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/f(x).gif -------------------------------------------------------------------------------- /FifthSection/notation/f(x)=.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/f(x)=.gif -------------------------------------------------------------------------------- /FifthSection/notation/g(x).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/g(x).gif -------------------------------------------------------------------------------- /FifthSection/notation/h_i.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/h_i.gif -------------------------------------------------------------------------------- /FifthSection/notation/h_t.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/h_t.gif -------------------------------------------------------------------------------- /FifthSection/notation/i.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/i.gif -------------------------------------------------------------------------------- /FifthSection/notation/j.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/j.gif -------------------------------------------------------------------------------- /FifthSection/notation/k.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/k.gif -------------------------------------------------------------------------------- /FifthSection/notation/log.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/log.gif -------------------------------------------------------------------------------- /FifthSection/notation/logSoftmax.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/logSoftmax.gif -------------------------------------------------------------------------------- /FifthSection/notation/p(y_x).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/p(y_x).gif -------------------------------------------------------------------------------- /FifthSection/notation/phi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/phi.gif -------------------------------------------------------------------------------- /FifthSection/notation/q_w.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/q_w.gif -------------------------------------------------------------------------------- /FifthSection/notation/sigma(x).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/sigma(x).gif -------------------------------------------------------------------------------- /FifthSection/notation/tanh(x).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/tanh(x).gif -------------------------------------------------------------------------------- /FifthSection/notation/w.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/w.gif -------------------------------------------------------------------------------- /FifthSection/notation/w_1-w_M.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/w_1-w_M.gif -------------------------------------------------------------------------------- /FifthSection/notation/w_i.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/w_i.gif -------------------------------------------------------------------------------- /FifthSection/notation/x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/x.gif -------------------------------------------------------------------------------- /FifthSection/notation/x_w.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/x_w.gif -------------------------------------------------------------------------------- /FifthSection/notation/y.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/y.gif -------------------------------------------------------------------------------- /FifthSection/notation/y_i.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/y_i.gif -------------------------------------------------------------------------------- /FifthSection/notation/公式.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/公式.PNG -------------------------------------------------------------------------------- /FifthSection/notation/公式11.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/公式11.PNG -------------------------------------------------------------------------------- /FifthSection/notation/公式12.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/公式12.PNG -------------------------------------------------------------------------------- /FifthSection/notation/公式13.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/公式13.PNG -------------------------------------------------------------------------------- /FifthSection/notation/公式15.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/公式15.PNG -------------------------------------------------------------------------------- /FifthSection/notation/公式16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/公式16.gif -------------------------------------------------------------------------------- /FifthSection/notation/公式17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/公式17.gif -------------------------------------------------------------------------------- /FifthSection/notation/公式18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/公式18.gif -------------------------------------------------------------------------------- /FifthSection/notation/公式19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/公式19.gif -------------------------------------------------------------------------------- /FifthSection/notation/公式20.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/公式20.PNG -------------------------------------------------------------------------------- /FifthSection/notation/公式20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/公式20.gif -------------------------------------------------------------------------------- /FifthSection/notation/公式21.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/公式21.PNG -------------------------------------------------------------------------------- /FifthSection/notation/公式22.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/公式22.PNG -------------------------------------------------------------------------------- /FifthSection/notation/公式23.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/公式23.PNG -------------------------------------------------------------------------------- /FifthSection/notation/公式24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/公式24.gif -------------------------------------------------------------------------------- /FifthSection/notation/公式25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/公式25.gif -------------------------------------------------------------------------------- /FifthSection/notation/公式26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/公式26.gif -------------------------------------------------------------------------------- /FifthSection/notation/公式27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/公式27.gif -------------------------------------------------------------------------------- /FifthSection/notation/公式4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FifthSection/notation/公式4.PNG -------------------------------------------------------------------------------- /FirstSection/InstallIutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FirstSection/InstallIutorial.md -------------------------------------------------------------------------------- /FirstSection/PyTorchIntro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/FirstSection/PyTorchIntro.md -------------------------------------------------------------------------------- /Image/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/1.PNG -------------------------------------------------------------------------------- /Image/10:环境变量配置2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/10:环境变量配置2.PNG -------------------------------------------------------------------------------- /Image/11:环境变量配置3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/11:环境变量配置3.PNG -------------------------------------------------------------------------------- /Image/12:环境变量配置4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/12:环境变量配置4.PNG -------------------------------------------------------------------------------- /Image/13:环境变量配置5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/13:环境变量配置5.PNG -------------------------------------------------------------------------------- /Image/14:找到Anaconda Navigator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/14:找到Anaconda Navigator.jpg -------------------------------------------------------------------------------- /Image/15:打开Anaconda.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/15:打开Anaconda.PNG -------------------------------------------------------------------------------- /Image/16:PyTorch安装1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/16:PyTorch安装1.PNG -------------------------------------------------------------------------------- /Image/16:PyTorch安装2:pip下打命令.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/16:PyTorch安装2:pip下打命令.PNG -------------------------------------------------------------------------------- /Image/17:PyTorchvision安装.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/17:PyTorchvision安装.PNG -------------------------------------------------------------------------------- /Image/18:小demo运行检验是否安装成功.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/18:小demo运行检验是否安装成功.PNG -------------------------------------------------------------------------------- /Image/19:conda环境下安装pytorch官网命令.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/19:conda环境下安装pytorch官网命令.jpg -------------------------------------------------------------------------------- /Image/2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/2.PNG -------------------------------------------------------------------------------- /Image/20:cmd下输入命令安装(conda).PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/20:cmd下输入命令安装(conda).PNG -------------------------------------------------------------------------------- /Image/21:在Jupyter下新建python文件验证.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/21:在Jupyter下新建python文件验证.jpg -------------------------------------------------------------------------------- /Image/21:验证代码.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/21:验证代码.PNG -------------------------------------------------------------------------------- /Image/22:验证成功截图.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/22:验证成功截图.PNG -------------------------------------------------------------------------------- /Image/3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/3.PNG -------------------------------------------------------------------------------- /Image/4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/4.PNG -------------------------------------------------------------------------------- /Image/5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/5.PNG -------------------------------------------------------------------------------- /Image/6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/6.PNG -------------------------------------------------------------------------------- /Image/7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/7.PNG -------------------------------------------------------------------------------- /Image/8.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/8.PNG -------------------------------------------------------------------------------- /Image/9:Anaconda环境变量配置1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/9:Anaconda环境变量配置1.PNG -------------------------------------------------------------------------------- /Image/conda.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/conda.PNG -------------------------------------------------------------------------------- /Image/pytorch.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/pytorch.PNG -------------------------------------------------------------------------------- /Image/输出01.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/输出01.PNG -------------------------------------------------------------------------------- /Image/输出02.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/输出02.PNG -------------------------------------------------------------------------------- /Image/输出03.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/输出03.PNG -------------------------------------------------------------------------------- /Image/输出04.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/输出04.PNG -------------------------------------------------------------------------------- /Image/输出05.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/输出05.PNG -------------------------------------------------------------------------------- /Image/输出06.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/输出06.PNG -------------------------------------------------------------------------------- /Image/输出07.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/输出07.PNG -------------------------------------------------------------------------------- /Image/输出08.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/输出08.PNG -------------------------------------------------------------------------------- /Image/输出09.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/输出09.PNG -------------------------------------------------------------------------------- /Image/输出10.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/输出10.PNG -------------------------------------------------------------------------------- /Image/输出11.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/输出11.PNG -------------------------------------------------------------------------------- /Image/输出12.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/输出12.PNG -------------------------------------------------------------------------------- /Image/输出13.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/输出13.PNG -------------------------------------------------------------------------------- /Image/输出14.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/输出14.PNG -------------------------------------------------------------------------------- /Image/输出15.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/输出15.PNG -------------------------------------------------------------------------------- /Image/输出16.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/输出16.PNG -------------------------------------------------------------------------------- /Image/输出17.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/输出17.PNG -------------------------------------------------------------------------------- /Image/输出18.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/输出18.PNG -------------------------------------------------------------------------------- /Image/输出19.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/输出19.PNG -------------------------------------------------------------------------------- /Image/输出20.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/输出20.PNG -------------------------------------------------------------------------------- /Image/输出21.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/Image/输出21.PNG -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/README.md -------------------------------------------------------------------------------- /SecondSection/Autograd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SecondSection/Autograd.md -------------------------------------------------------------------------------- /SecondSection/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SecondSection/LICENSE -------------------------------------------------------------------------------- /SecondSection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SecondSection/README.md -------------------------------------------------------------------------------- /SecondSection/Tensor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SecondSection/Tensor.md -------------------------------------------------------------------------------- /SecondSection/autograd_automatic_differentiation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SecondSection/autograd_automatic_differentiation.md -------------------------------------------------------------------------------- /SecondSection/neural_networks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SecondSection/neural_networks.md -------------------------------------------------------------------------------- /SecondSection/optional_data_parallelism.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SecondSection/optional_data_parallelism.md -------------------------------------------------------------------------------- /SecondSection/training_a_classifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SecondSection/training_a_classifier.md -------------------------------------------------------------------------------- /SecondSection/what_is_pytorch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SecondSection/what_is_pytorch.md -------------------------------------------------------------------------------- /SeventhSection/ReinforcementLearning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SeventhSection/ReinforcementLearning.md -------------------------------------------------------------------------------- /SeventhSection/notation/B.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SeventhSection/notation/B.gif -------------------------------------------------------------------------------- /SeventhSection/notation/Q.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SeventhSection/notation/Q.gif -------------------------------------------------------------------------------- /SeventhSection/notation/Q_.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SeventhSection/notation/Q_.gif -------------------------------------------------------------------------------- /SeventhSection/notation/Q_s_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SeventhSection/notation/Q_s_left.gif -------------------------------------------------------------------------------- /SeventhSection/notation/Q_s_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SeventhSection/notation/Q_s_right.gif -------------------------------------------------------------------------------- /SeventhSection/notation/Q_sa.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SeventhSection/notation/Q_sa.gif -------------------------------------------------------------------------------- /SeventhSection/notation/R_t0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SeventhSection/notation/R_t0.gif -------------------------------------------------------------------------------- /SeventhSection/notation/V()=.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SeventhSection/notation/V()=.gif -------------------------------------------------------------------------------- /SeventhSection/notation/V(s)=0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SeventhSection/notation/V(s)=0.gif -------------------------------------------------------------------------------- /SeventhSection/notation/V_st+1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SeventhSection/notation/V_st+1.gif -------------------------------------------------------------------------------- /SeventhSection/notation/delta.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SeventhSection/notation/delta.gif -------------------------------------------------------------------------------- /SeventhSection/notation/delta_.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SeventhSection/notation/delta_.gif -------------------------------------------------------------------------------- /SeventhSection/notation/gamma.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SeventhSection/notation/gamma.gif -------------------------------------------------------------------------------- /SeventhSection/notation/公式1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SeventhSection/notation/公式1.PNG -------------------------------------------------------------------------------- /SeventhSection/notation/公式2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SeventhSection/notation/公式2.PNG -------------------------------------------------------------------------------- /SeventhSection/notation/公式3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SeventhSection/notation/公式3.PNG -------------------------------------------------------------------------------- /SeventhSection/notation/公式4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SeventhSection/notation/公式4.PNG -------------------------------------------------------------------------------- /SeventhSection/notation/公式5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SeventhSection/notation/公式5.PNG -------------------------------------------------------------------------------- /SeventhSection/notation/公式6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SeventhSection/notation/公式6.PNG -------------------------------------------------------------------------------- /SixthSection/Dcgan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SixthSection/Dcgan.md -------------------------------------------------------------------------------- /SixthSection/notation/D(x).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SixthSection/notation/D(x).gif -------------------------------------------------------------------------------- /SixthSection/notation/D.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SixthSection/notation/D.gif -------------------------------------------------------------------------------- /SixthSection/notation/D_G(z).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SixthSection/notation/D_G(z).gif -------------------------------------------------------------------------------- /SixthSection/notation/G(z).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SixthSection/notation/G(z).gif -------------------------------------------------------------------------------- /SixthSection/notation/G.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SixthSection/notation/G.gif -------------------------------------------------------------------------------- /SixthSection/notation/P_g=P_data.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SixthSection/notation/P_g=P_data.gif -------------------------------------------------------------------------------- /SixthSection/notation/log(1-).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SixthSection/notation/log(1-).gif -------------------------------------------------------------------------------- /SixthSection/notation/log(1-D(G(x))).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SixthSection/notation/log(1-D(G(x))).gif -------------------------------------------------------------------------------- /SixthSection/notation/log(1-x).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SixthSection/notation/log(1-x).gif -------------------------------------------------------------------------------- /SixthSection/notation/log(x).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SixthSection/notation/log(x).gif -------------------------------------------------------------------------------- /SixthSection/notation/log+log(1-).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SixthSection/notation/log+log(1-).gif -------------------------------------------------------------------------------- /SixthSection/notation/log+log_DGz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SixthSection/notation/log+log_DGz.gif -------------------------------------------------------------------------------- /SixthSection/notation/logD(x).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SixthSection/notation/logD(x).gif -------------------------------------------------------------------------------- /SixthSection/notation/log_DGz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SixthSection/notation/log_DGz.gif -------------------------------------------------------------------------------- /SixthSection/notation/p_data.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SixthSection/notation/p_data.gif -------------------------------------------------------------------------------- /SixthSection/notation/p_g.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SixthSection/notation/p_g.gif -------------------------------------------------------------------------------- /SixthSection/notation/x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SixthSection/notation/x.gif -------------------------------------------------------------------------------- /SixthSection/notation/z.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SixthSection/notation/z.gif -------------------------------------------------------------------------------- /SixthSection/notation/公式1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SixthSection/notation/公式1.PNG -------------------------------------------------------------------------------- /SixthSection/notation/公式2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/SixthSection/notation/公式2.PNG -------------------------------------------------------------------------------- /ThirdSection/DataLoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/ThirdSection/DataLoding.md -------------------------------------------------------------------------------- /ThirdSection/DeployingSeq2SeqModelwithHybridFrontend.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/ThirdSection/DeployingSeq2SeqModelwithHybridFrontend.MD -------------------------------------------------------------------------------- /ThirdSection/LearningPyTorch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/ThirdSection/LearningPyTorch.md -------------------------------------------------------------------------------- /ThirdSection/SaveModel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/ThirdSection/SaveModel.md -------------------------------------------------------------------------------- /ThirdSection/TransferLearning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/ThirdSection/TransferLearning.md -------------------------------------------------------------------------------- /ThirdSection/image/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/ThirdSection/image/5.png -------------------------------------------------------------------------------- /ThirdSection/image/landmarked_face2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/ThirdSection/image/landmarked_face2.png -------------------------------------------------------------------------------- /ThirdSection/image/sphx_glr_data_loading_tutorial_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/ThirdSection/image/sphx_glr_data_loading_tutorial_001.png -------------------------------------------------------------------------------- /ThirdSection/image/sphx_glr_data_loading_tutorial_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/ThirdSection/image/sphx_glr_data_loading_tutorial_002.png -------------------------------------------------------------------------------- /ThirdSection/image/sphx_glr_data_loading_tutorial_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/ThirdSection/image/sphx_glr_data_loading_tutorial_003.png -------------------------------------------------------------------------------- /ThirdSection/image/sphx_glr_data_loading_tutorial_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/ThirdSection/image/sphx_glr_data_loading_tutorial_004.png -------------------------------------------------------------------------------- /fourSection/AdversarialExampleGene.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/AdversarialExampleGene.md -------------------------------------------------------------------------------- /fourSection/FinetuningTorchVisionModel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/FinetuningTorchVisionModel.md -------------------------------------------------------------------------------- /fourSection/NeuralTransfer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/NeuralTransfer.md -------------------------------------------------------------------------------- /fourSection/ONNX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/ONNX.md -------------------------------------------------------------------------------- /fourSection/ObjectDetectionFinetuning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/ObjectDetectionFinetuning.md -------------------------------------------------------------------------------- /fourSection/SpatialTranNet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/SpatialTranNet.md -------------------------------------------------------------------------------- /fourSection/image/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/image/01.png -------------------------------------------------------------------------------- /fourSection/image/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/image/02.png -------------------------------------------------------------------------------- /fourSection/image/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/image/03.png -------------------------------------------------------------------------------- /fourSection/image/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/image/04.png -------------------------------------------------------------------------------- /fourSection/image/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/image/05.png -------------------------------------------------------------------------------- /fourSection/image/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/image/06.png -------------------------------------------------------------------------------- /fourSection/image/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/image/07.png -------------------------------------------------------------------------------- /fourSection/image/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/image/08.png -------------------------------------------------------------------------------- /fourSection/image/09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/image/09.jpg -------------------------------------------------------------------------------- /fourSection/image/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/image/10.jpg -------------------------------------------------------------------------------- /fourSection/image/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/image/11.jpg -------------------------------------------------------------------------------- /fourSection/image/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/image/12.jpg -------------------------------------------------------------------------------- /fourSection/image/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/image/13.jpg -------------------------------------------------------------------------------- /fourSection/image/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/image/14.jpg -------------------------------------------------------------------------------- /fourSection/image/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/image/15.png -------------------------------------------------------------------------------- /fourSection/image/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/image/16.png -------------------------------------------------------------------------------- /fourSection/image/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/image/17.png -------------------------------------------------------------------------------- /fourSection/image/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/image/18.png -------------------------------------------------------------------------------- /fourSection/image/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/image/19.jpg -------------------------------------------------------------------------------- /fourSection/image/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/image/20.png -------------------------------------------------------------------------------- /fourSection/notation/(e).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/notation/(e).gif -------------------------------------------------------------------------------- /fourSection/notation/(x).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/notation/(x).gif -------------------------------------------------------------------------------- /fourSection/notation/J().gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/notation/J().gif -------------------------------------------------------------------------------- /fourSection/notation/J_X.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/notation/J_X.gif -------------------------------------------------------------------------------- /fourSection/notation/data_gr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/notation/data_gr.gif -------------------------------------------------------------------------------- /fourSection/notation/e.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/notation/e.gif -------------------------------------------------------------------------------- /fourSection/notation/epsilon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/notation/epsilon.gif -------------------------------------------------------------------------------- /fourSection/notation/image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/notation/image.gif -------------------------------------------------------------------------------- /fourSection/notation/long.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/notation/long.gif -------------------------------------------------------------------------------- /fourSection/notation/sign().gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/notation/sign().gif -------------------------------------------------------------------------------- /fourSection/notation/theta.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/notation/theta.gif -------------------------------------------------------------------------------- /fourSection/notation/x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/notation/x.gif -------------------------------------------------------------------------------- /fourSection/notation/x^'.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/notation/x^'.gif -------------------------------------------------------------------------------- /fourSection/notation/y.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/PyTorchDocs/HEAD/fourSection/notation/y.gif --------------------------------------------------------------------------------