Skip to content

Commit bf4f972

Browse files
authored
Merge branch 'main' into 3530_Distributed_Pipeline_Parallelism
2 parents 439ff87 + 7f8b6dc commit bf4f972

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

beginner_source/basics/intro.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
-------------------------
3535
You can run this tutorial in a couple of ways:
3636
37-
- **In the cloud**: This is the easiest way to get started! Each section has a "Run in Microsoft Learn" and "Run in Google Colab" link at the top, which opens an integrated notebook in Microsoft Learn or Google Colab, respectively, with the code in a fully-hosted environment.
37+
- **In the cloud**: This is the easiest way to get started! Each section has a "Run in Google Colab" link at the top, which opens an integrated notebook in Google Colab with the code in a fully-hosted environment.
3838
- **Locally**: This option requires you to setup PyTorch and TorchVision first on your local machine (`installation instructions <https://pytorch.org/get-started/locally/>`_). Download the notebook or copy the code into your favorite IDE.
3939
4040

beginner_source/blitz/neural_networks_tutorial.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def forward(self, input):
7878
# Fully connected layer F6: (N, 120) Tensor input,
7979
# and outputs a (N, 84) Tensor, it uses RELU activation function
8080
f6 = F.relu(self.fc2(f5))
81-
# Gaussian layer OUTPUT: (N, 84) Tensor input, and
81+
# Fully connected layer OUTPUT: (N, 84) Tensor input, and
8282
# outputs a (N, 10) Tensor
8383
output = self.fc3(f6)
8484
return output

0 commit comments

Comments
 (0)