Skip to content

Commit eb02046

Browse files
authored
Merge branch 'master' into patch-1
2 parents 62e49c7 + c5794c9 commit eb02046

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

beginner_source/Intro_to_TorchScript_tutorial.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -368,9 +368,9 @@ def forward(self, xs):
368368
# process. Let’s save and load our wrapped RNN module:
369369
#
370370

371-
traced.save('wrapped_rnn.zip')
371+
traced.save('wrapped_rnn.pt')
372372

373-
loaded = torch.jit.load('wrapped_rnn.zip')
373+
loaded = torch.jit.load('wrapped_rnn.pt')
374374

375375
print(loaded)
376376
print(loaded.code)

beginner_source/dist_overview.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,6 @@ DDP materials are listed below:
131131
tutorial.
132132
3. The `Launching and configuring distributed data parallel applications <https://github.com/pytorch/examples/blob/master/distributed/ddp/README.md>`__
133133
document shows how to use the DDP launching script.
134-
4. `PyTorch Distributed Trainer with Amazon AWS <aws_distributed_training_tutorial.html>`__
135-
demonstrates how to use DDP on AWS.
136134

137135
TorchElastic
138136
~~~~~~~~~~~~

0 commit comments

Comments
 (0)