Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2441373

Browse files
committed
http to https for pytorch.org in the tutorial documentation
Ref pytorch/pytorch#13951
1 parent 400e21b commit 2441373

27 files changed

Lines changed: 59 additions & 59 deletions

advanced_source/README.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ Advanced Tutorials
33

44
1. neural_style_tutorial.py
55
Neural Transfer with PyTorch
6-
http://pytorch.org/tutorials/advanced/neural_style_tutorial.html
6+
https://pytorch.org/tutorials/advanced/neural_style_tutorial.html
77

88
2. numpy_extensions_tutorial.py
99
Creating Extensions Using numpy and scipy
10-
http://pytorch.org/tutorials/advanced/numpy_extensions_tutorial.html
10+
https://pytorch.org/tutorials/advanced/numpy_extensions_tutorial.html
1111

1212
3. c_extension.rst
1313
Custom C Extensions for PyTorch
14-
http://pytorch.org/tutorials/advanced/c_extension.html
14+
https://pytorch.org/tutorials/advanced/c_extension.html
1515

1616
4. super_resolution_with_caffe2.py
1717
Transfering a Model from PyTorch to Caffe2 and Mobile using ONNX
18-
http://pytorch.org/tutorials/advanced/super_resolution_with_caffe2.html
18+
https://pytorch.org/tutorials/advanced/super_resolution_with_caffe2.html

advanced_source/cpp_export.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Loading a PyTorch Model in C++
22
==============================
33

44
.. attention:: This tutorial requires PyTorch 1.0 (preview) or later.
5-
For installation information visit http://pytorch.org/get-started.
5+
For installation information visit https://pytorch.org/get-started.
66

77
As its name suggests, the primary interface to PyTorch is the Python
88
programming language. While Python is a suitable and preferred language for

advanced_source/cpp_extension.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ you developed as part of your research.
1111

1212
The easiest way of integrating such a custom operation in PyTorch is to write it
1313
in Python by extending :class:`Function` and :class:`Module` as outlined `here
14-
<http://pytorch.org/docs/master/notes/extending.html>`_. This gives you the full
14+
<https://pytorch.org/docs/master/notes/extending.html>`_. This gives you the full
1515
power of automatic differentiation (spares you from writing derivative
1616
functions) as well as the usual expressiveness of Python. However, there may be
1717
times when your operation is better implemented in C++. For example, your code

advanced_source/neural_style_tutorial.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@
9090
#
9191
# .. Note::
9292
# Here are links to download the images required to run the tutorial:
93-
# `picasso.jpg <http://pytorch.org/tutorials/_static/img/neural-style/picasso.jpg>`__ and
94-
# `dancing.jpg <http://pytorch.org/tutorials/_static/img/neural-style/dancing.jpg>`__.
93+
# `picasso.jpg <https://pytorch.org/tutorials/_static/img/neural-style/picasso.jpg>`__ and
94+
# `dancing.jpg <https://pytorch.org/tutorials/_static/img/neural-style/dancing.jpg>`__.
9595
# Download these two images and add them to a directory
9696
# with name ``images`` in your current working directory.
9797

advanced_source/super_resolution_with_caffe2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def _initialize_weights(self):
103103
# or a random tensor as long as it is the right size.
104104
#
105105
# To learn more details about PyTorch's export interface, check out the
106-
# `torch.onnx documentation <http://pytorch.org/docs/master/onnx.html>`__.
106+
# `torch.onnx documentation <https://pytorch.org/docs/master/onnx.html>`__.
107107
#
108108

109109
# Input to the model

beginner_source/README.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@ Beginner Tutorials
33

44
1. blitz/* and deep_learning_60min_blitz.rst
55
Deep Learning with PyTorch: A 60 Minute Blitz
6-
http://pytorch.org/tutorials/beginner/deep_learning_60min_blitz.html
6+
https://pytorch.org/tutorials/beginner/deep_learning_60min_blitz.html
77

88
2. former_torches/* and former_torchies_tutorial.rst
99
PyTorch for Former Torch Users
10-
http://pytorch.org/tutorials/beginner/former_torchies_tutorial.html
10+
https://pytorch.org/tutorials/beginner/former_torchies_tutorial.html
1111

1212
3. examples_*/* and pytorch_with_examples.rst
1313
Learning PyTorch with Examples
14-
http://pytorch.org/tutorials/beginner/pytorch_with_examples.html
14+
https://pytorch.org/tutorials/beginner/pytorch_with_examples.html
1515

1616
4. transfer_learning_tutorial.py
1717
Transfer Learning Tutorial
18-
http://pytorch.org/tutorials/beginner/transfer_learning_tutorial.html
18+
https://pytorch.org/tutorials/beginner/transfer_learning_tutorial.html
1919

2020
5. nlp/* and deep_learning_nlp_tutorial.rst
2121
Deep Learning for NLP with Pytorch
22-
http://pytorch.org/tutorials/beginner/deep_learning_nlp_tutorial.html
22+
https://pytorch.org/tutorials/beginner/deep_learning_nlp_tutorial.html

beginner_source/blitz/README.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,22 @@ Deep Learning with PyTorch: A 60 Minute Blitz
33

44
1. tensor_tutorial.py
55
What is PyTorch?
6-
http://pytorch.org/tutorials/beginner/blitz/tensor_tutorial.html
6+
https://pytorch.org/tutorials/beginner/blitz/tensor_tutorial.html
77

88
2. autograd_tutorial.py
99
Autograd: Automatic Differentiation
10-
http://pytorch.org/tutorials/beginner/blitz/autograd_tutorial.html
10+
https://pytorch.org/tutorials/beginner/blitz/autograd_tutorial.html
1111

1212
3. neural_networks_tutorial.py
1313
Neural Networks
14-
http://pytorch.org/tutorials/beginner/blitz/neural_networks_tutorial.html#
14+
https://pytorch.org/tutorials/beginner/blitz/neural_networks_tutorial.html#
1515

1616
4. autograd_tutorial.py
1717
Automatic Differentiation
1818
https://pytorch.org/tutorials/beginner/blitz/autograd_tutorial.html
1919

2020
5. cifar10_tutorial.py
2121
Training a Classifier
22-
http://pytorch.org/tutorials/beginner/blitz/cifar10_tutorial.html
22+
https://pytorch.org/tutorials/beginner/blitz/cifar10_tutorial.html
2323

2424

beginner_source/blitz/autograd_tutorial.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,4 +140,4 @@
140140
# **Read Later:**
141141
#
142142
# Documentation of ``autograd`` and ``Function`` is at
143-
# http://pytorch.org/docs/autograd
143+
# https://pytorch.org/docs/autograd

beginner_source/blitz/cifar10_tutorial.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,4 +331,4 @@ def forward(self, x):
331331
# .. _More examples: https://github.com/pytorch/examples
332332
# .. _More tutorials: https://github.com/pytorch/tutorials
333333
# .. _Discuss PyTorch on the Forums: https://discuss.pytorch.org/
334-
# .. _Chat with other users on Slack: http://pytorch.slack.com/messages/beginner/
334+
# .. _Chat with other users on Slack: https://pytorch.slack.com/messages/beginner/

beginner_source/blitz/data_parallel_tutorial.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,5 +251,5 @@ def forward(self, input):
251251
# collects and merges the results before returning it to you.
252252
#
253253
# For more information, please check out
254-
# http://pytorch.org/tutorials/beginner/former\_torchies/parallelism\_tutorial.html.
254+
# https://pytorch.org/tutorials/beginner/former\_torchies/parallelism\_tutorial.html.
255255
#

0 commit comments

Comments
 (0)