Skip to content

Commit a8d7b44

Browse files
authored
Fix PyTorch spelling errors (#13774)
* Fix PyTorch spelling errors * more
1 parent 2278719 commit a8d7b44

File tree

16 files changed

+18
-18
lines changed

16 files changed

+18
-18
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ git push -f
225225

226226
#### How to add new tests?
227227

228-
We are using [pytest](https://docs.pytest.org/en/stable/) in Pytorch Lightning.
228+
We are using [pytest](https://docs.pytest.org/en/stable/) in PyTorch Lightning.
229229

230230
Here are tutorials:
231231

.github/ISSUE_TEMPLATE/documentation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ ______________________________________________________________________
3030

3131
- [**Bolts**](https://github.com/Lightning-AI/lightning-bolts): Pretrained SOTA Deep Learning models, callbacks, and more for research and production with PyTorch Lightning and PyTorch.
3232

33-
- [**Lightning Transformers**](https://github.com/Lightning-AI/lightning-transformers): Flexible interface for high-performance research using SOTA Transformers leveraging Pytorch Lightning, Transformers, and Hydra.
33+
- [**Lightning Transformers**](https://github.com/Lightning-AI/lightning-transformers): Flexible interface for high-performance research using SOTA Transformers leveraging PyTorch Lightning, Transformers, and Hydra.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ ______________________________________________________________________
3838

3939
- [**Bolts**](https://github.com/Lightning-AI/lightning-bolts): Pretrained SOTA Deep Learning models, callbacks, and more for research and production with PyTorch Lightning and PyTorch.
4040

41-
- [**Lightning Transformers**](https://github.com/Lightning-AI/lightning-transformers): Flexible interface for high-performance research using SOTA Transformers leveraging Pytorch Lightning, Transformers, and Hydra.
41+
- [**Lightning Transformers**](https://github.com/Lightning-AI/lightning-transformers): Flexible interface for high-performance research using SOTA Transformers leveraging PyTorch Lightning, Transformers, and Hydra.

.github/ISSUE_TEMPLATE/refactor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ ______________________________________________________________________
3434

3535
- [**Bolts**](https://github.com/Lightning-AI/lightning-bolts): Pretrained SOTA Deep Learning models, callbacks, and more for research and production with PyTorch Lightning and PyTorch.
3636

37-
- [**Lightning Transformers**](https://github.com/Lightning-AI/lightning-transformers): Flexible interface for high-performance research using SOTA Transformers leveraging Pytorch Lightning, Transformers, and Hydra.
37+
- [**Lightning Transformers**](https://github.com/Lightning-AI/lightning-transformers): Flexible interface for high-performance research using SOTA Transformers leveraging PyTorch Lightning, Transformers, and Hydra.

.github/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ issues:
1414
markComment: >
1515
This issue has been automatically marked as stale because it hasn't had any recent activity.
1616
This issue will be closed in 7 days if no further activity occurs.
17-
Thank you for your contributions, Pytorch Lightning Team!
17+
Thank you for your contributions, PyTorch Lightning Team!
1818
# Comment to post when closing a stale issue. Set to `false` to disable
1919
closeComment: false
2020

dockers/base-xla/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ ENV \
7777
RUN pip --version && \
7878
pip config set global.cache-dir false && \
7979
conda remove pytorch torchvision && \
80-
# Install Pytorch XLA
80+
# Install PyTorch XLA
8181
py_version=${PYTHON_VERSION/./} && \
8282
gsutil cp "gs://tpu-pytorch/wheels/torch-${XLA_VERSION}-cp${py_version}-cp${py_version}m-linux_x86_64.whl" . && \
8383
gsutil cp "gs://tpu-pytorch/wheels/torch_xla-${XLA_VERSION}-cp${py_version}-cp${py_version}m-linux_x86_64.whl" . && \

docs/source-app/get_started/training_with_apps.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Evolve a model into an ML system
88

99
**Required background:** Basic Python familiarity and complete the :ref:`build_model` guide.
1010

11-
**Goal:** We'll walk you through the two key steps to build your first Lightning App from your existing Pytorch Lightning scripts.
11+
**Goal:** We'll walk you through the two key steps to build your first Lightning App from your existing PyTorch Lightning scripts.
1212

1313
.. join_slack::
1414
:align: left
@@ -50,7 +50,7 @@ Inside the ``app.py`` file, add the following code.
5050

5151
.. literalinclude:: ../code_samples/convert_pl_to_app/app.py
5252

53-
This App runs the Pytorch Lightning script contained in the ``train.py`` file using the powerful :class:`~lightning_app.components.python.tracer.TracerPythonScript` component. This is really worth checking out!
53+
This App runs the PyTorch Lightning script contained in the ``train.py`` file using the powerful :class:`~lightning_app.components.python.tracer.TracerPythonScript` component. This is really worth checking out!
5454

5555
----
5656

docs/source-pytorch/deploy/production_advanced_2.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ can save or directly use.
3434

3535
It is recommended that you install the latest supported version of PyTorch to use this feature without limitations.
3636

37-
Once you have the exported model, you can run it in Pytorch or C++ runtime:
37+
Once you have the exported model, you can run it in PyTorch or C++ runtime:
3838

3939
.. code-block:: python
4040

docs/source-pytorch/ecosystem/asr_nlp_tts.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ so that each can be configured from .yaml or the Hydra CLI.
4848

4949
.. note:: Every NeMo model has an example configuration file and a corresponding script that contains all configurations needed for training.
5050

51-
The end result of using NeMo, Pytorch Lightning, and Hydra is that
51+
The end result of using NeMo, PyTorch Lightning, and Hydra is that
5252
NeMo models all have the same look and feel. This makes it easy to do Conversational AI research
5353
across multiple domains. NeMo models are also fully compatible with the PyTorch ecosystem.
5454

examples/pl_domain_templates/computer_vision_fine_tuning.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def val_dataloader(self):
150150
return self.__dataloader(train=False)
151151

152152

153-
# --- Pytorch-lightning module ---
153+
# --- PyTorch Lightning module ---
154154

155155

156156
class TransferLearningModel(LightningModule):

0 commit comments

Comments
 (0)