Skip to content

Commit

Permalink
Merge pull request #609 from Daydaylight/master
Browse files Browse the repository at this point in the history
链接和文件名的修改
  • Loading branch information
jiangzhonglian authored Jul 6, 2023
2 parents eabc091 + 5fc3a18 commit debad1b
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

> 译者:[runzhi214](https://github.com/runzhi214)
>
> 项目地址:<https://pytorch.apachecn.org/2.0/tutorials/Introduction_to_PyTorch/automatic_differentiation_with_torch_autograd/>
> 项目地址:<https://pytorch.apachecn.org/2.0/tutorials/Introduction_to_PyTorch/autogradqs_tutorial>
>
> 原始地址:<https://pytorch.org/tutorials/beginner/basics/autogradqs_tutorial.html>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

> 译者:[runzhi214](https://github.com/runzhi214)
>
> 项目地址:<https://pytorch.apachecn.org/2.0/tutorials/Introduction_to_PyTorch/build_the_neural_network/>
> 项目地址:<https://pytorch.apachecn.org/2.0/tutorials/Introduction_to_PyTorch/buildmodel_tutorial>
>
> 原始地址:<https://pytorch.org/tutorials/beginner/basics/buildmodel_tutorial.html>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

> 译者:[Daydaylight](https://github.com/Daydaylight)
>
> 项目地址:<https://pytorch.apachecn.org/2.0/tutorials/datasets_dataloaders>
> 项目地址:<https://pytorch.apachecn.org/2.0/tutorials/Introduction_to_PyTorch/data_tutorial>
>
> 原始地址:<https://pytorch.org/tutorials/beginner/basics/data_tutorial.html>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

> 译者:[Daydaylight](https://github.com/Daydaylight)
>
> 项目地址:<https://pytorch.apachecn.org/2.0/tutorials/Introduction_to_PyTorch/learn_the_basics/>
> 项目地址:<https://pytorch.apachecn.org/2.0/tutorials/Introduction_to_PyTorch/intro>
>
> 原始地址:<https://pytorch.org/tutorials/beginner/basics/intro.html>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

> 译者:[runzhi214](https://github.com/runzhi214)
>
> 项目地址:<https://pytorch.apachecn.org/2.0/tutorials/Introduction_to_PyTorch/optimizing_model_parameters/>
> 项目地址:<https://pytorch.apachecn.org/2.0/tutorials/Introduction_to_PyTorch/optimization_tutorial>
>
> 原始地址:<https://pytorch.org/tutorials/beginner/basics/optimization_tutorial.html>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# 快速入门
> 译者:[Daydaylight](https://github.com/Daydaylight)
>
> 项目地址:<https://pytorch.apachecn.org/2.0/tutorials/Introduction_to_PyTorch/quickstart_tutorial/>
> 项目地址:<https://pytorch.apachecn.org/2.0/tutorials/Introduction_to_PyTorch/quickstart_tutorial>
>
> 原始地址:<https://pytorch.org/tutorials/beginner/basics/quickstart_tutorial.html>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

> 译者:[runzhi214](https://github.com/runzhi214)
>
> 项目地址:<https://pytorch.apachecn.org/2.0/tutorials/Introduction_to_PyTorch/save_and_load_the_model/>
> 项目地址:<https://pytorch.apachecn.org/2.0/tutorials/Introduction_to_PyTorch/saveloadrun_tutorial>
>
> 原始地址:<https://pytorch.org/tutorials/beginner/basics/saveloadrun_tutorial.html>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Tensors
> 译者:[Daydaylight](https://github.com/Daydaylight)
>
> 项目地址:<https://pytorch.apachecn.org/2.0/tutorials/Introduction_to_PyTorch/tensors>
> 项目地址:<https://pytorch.apachecn.org/2.0/tutorials/Introduction_to_PyTorch/tensors_tutorial>
>
> 原始地址:<https://pytorch.org/tutorials/beginner/basics/quickstart_tutorial.html>
> 原始地址:<https://pytorch.org/tutorials/beginner/basics/tensorqs_tutorial.html>
Tensors是一种特殊的数据结构,与数组和矩阵非常相似。在 PyTorch 中,我们使用tensors对模型的输入和输出以及模型的参数进行编码。

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

> 译者:[Daydaylight](https://github.com/Daydaylight)
>
> 项目地址:<https://pytorch.apachecn.org/2.0/tutorials/transforms>
> 项目地址:<https://pytorch.apachecn.org/2.0/tutorials/transforms_tutorial>
>
> 原始地址:<https://pytorch.org/tutorials/beginner/basics/transforms_tutorial.html>
Expand Down
16 changes: 8 additions & 8 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ nav:
- "中文教程":
- "介绍": "2.0/tutorials/README.md"
- "PyTorch简介":
- "学习基本知识": "2.0/tutorials/Introduction_to_PyTorch/learn_the_basics.md"
- "学习基本知识": "2.0/tutorials/Introduction_to_PyTorch/intro.md"
- "快速入门": "2.0/tutorials/Introduction_to_PyTorch/quickstart_tutorial.md"
- "Tensors介绍": "2.0/tutorials/Introduction_to_PyTorch/tensors.md"
- "数据集和数据加载器": "2.0/tutorials/Introduction_to_PyTorch/datasets_dataloaders.md"
- "Transforms介绍": "2.0/tutorials/Introduction_to_PyTorch/transforms.md"
- "构建神经网络模型": "2.0/tutorials/Introduction_to_PyTorch/build_the_neural_network.md"
- "自动微分运算 - Torch.AutoGrad": "2.0/tutorials/Introduction_to_PyTorch/automatic_differentation_with_torch_autograd.md"
- "优化模型参数": "2.0/tutorials/Introduction_to_PyTorch/optimizing_model_parameters.md"
- "模型保存和加载": "2.0/tutorials/Introduction_to_PyTorch/save_and_load_the_model.md"
- "Tensors介绍": "2.0/tutorials/Introduction_to_PyTorch/tensors_tutorial.md"
- "数据集和数据加载器": "2.0/tutorials/Introduction_to_PyTorch/data_tutorial.md"
- "Transforms介绍": "2.0/tutorials/Introduction_to_PyTorch/transforms_tutorial.md"
- "构建神经网络模型": "2.0/tutorials/Introduction_to_PyTorch/buildmodel_tutorial.md"
- "自动微分运算 - Torch.AutoGrad": "2.0/tutorials/Introduction_to_PyTorch/autogradqs_tutorial.md"
- "优化模型参数": "2.0/tutorials/Introduction_to_PyTorch/optimization_tutorial.md"
- "模型保存和加载": "2.0/tutorials/Introduction_to_PyTorch/saveloadrun_tutorial.md"
- "学习PyTorch":
- "通过示例学习 PyTorch": "2.0/tutorials/Learning_PyTorch/learning_pytorch_with_examples.md"
- "究竟什么是 TORCH.NN": "2.0/tutorials/Learning_PyTorch/what_is_torchnn_really.md"
Expand Down

1 comment on commit debad1b

@vercel
Copy link

@vercel vercel bot commented on debad1b Jul 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

pytorch-doc-zh – ./

pytorch-doc-zh.vercel.app
pytorch-doc-zh-apachecn.vercel.app
pytorch-doc-zh-git-master-apachecn.vercel.app

Please sign in to comment.