Skip to content

Commit 0c39bb3

Browse files
committed
fixing
1 parent dd2c11a commit 0c39bb3

File tree

10 files changed

+18
-18
lines changed

10 files changed

+18
-18
lines changed

.github/CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,11 +130,11 @@ In case you are adding new dependencies, make sure that they are compatible with
130130

131131
### Documentation
132132

133-
To learn about development of docs, check out the docs [README.md](https://github.com/Lightning-AI/lightning/blob/master/docs/README.md).
133+
To learn about development of docs, check out the docs [README.md](https://github.com/Lightning-AI/pytorch-lightning/blob/master/docs/README.md).
134134

135135
### Testing
136136

137-
To learn about tests, check out the tests [README.md](https://github.com/Lightning-AI/lightning/blob/master/tests/README.md).
137+
To learn about tests, check out the tests [README.md](https://github.com/Lightning-AI/pytorch-lightning/blob/master/tests/README.md).
138138

139139
### Pull Request
140140

@@ -165,7 +165,7 @@ We welcome any useful contribution! For your convenience here's a recommended wo
165165

166166
1. If any of the existing tests fail in your PR on our CI, refer to the following READMEs to identify what's failing and try to address it.
167167

168-
- [Test README](https://github.com/Lightning-AI/lightning/blob/master/tests/README.md)
168+
- [Test README](https://github.com/Lightning-AI/pytorch-lightning/blob/master/tests/README.md)
169169
- [CI/CD README](https://github.com/Lightning-AI/pytorch-lightning/tree/master/.github/workflows#readme)
170170

171171
1. When you feel ready for integrating your work, mark your PR "Ready for review".

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ ______________________________________________________________________
3131

3232
[![Discord](https://img.shields.io/discord/1077906959069626439?style=plastic)](https://discord.gg/VptPCZkGNa)
3333
![GitHub commit activity](https://img.shields.io/github/commit-activity/w/lightning-ai/lightning)
34-
[![license](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/Lightning-AI/lightning/blob/master/LICENSE)
34+
[![license](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/Lightning-AI/pytorch-lightning/blob/master/LICENSE)
3535

3636
<!--
3737
[![CodeFactor](https://www.codefactor.io/repository/github/Lightning-AI/lightning/badge)](https://www.codefactor.io/repository/github/Lightning-AI/lightning)

docs/source-fabric/advanced/compile.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ needed to achieve the equivalent of `compile(distributed(quantized(model)))`:
221221
222222
model = fabric.setup(model)
223223
224-
For a full example, see our `FP8 Distributed Transformer example <https://github.com/Lightning-AI/lightning/blob/master/examples/fabric/fp8_distributed_transformer>`_.
224+
For a full example, see our `FP8 Distributed Transformer example <https://github.com/Lightning-AI/pytorch-lightning/blob/master/examples/fabric/fp8_distributed_transformer>`_.
225225

226226
----
227227

docs/source-fabric/advanced/multiple_setup.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,4 +113,4 @@ You can pair up as many models and optimizers as you want. For example, two mode
113113
# Set up discriminator
114114
discriminator, optimizer_dis = fabric.setup(discriminator, optimizer_dis)
115115
116-
For a full example of this use case, see our `GAN example <https://github.com/Lightning-AI/lightning/blob/master/examples/fabric/dcgan>`_.
116+
For a full example of this use case, see our `GAN example <https://github.com/Lightning-AI/pytorch-lightning/blob/master/examples/fabric/dcgan>`_.

docs/source-fabric/examples/index.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,31 +10,31 @@ Examples
1010
.. displayitem::
1111
:header: Image Classification
1212
:description: Train an image classifier on the MNIST dataset
13-
:button_link: https://github.com/Lightning-AI/lightning/blob/master/examples/fabric/image_classifier
13+
:button_link: https://github.com/Lightning-AI/pytorch-lightning/blob/master/examples/fabric/image_classifier
1414
:col_css: col-md-4
1515
:height: 200
1616
:tag: basic
1717

1818
.. displayitem::
1919
:header: Transformer Language Model
2020
:description: A simple language model that learns to predict the next word in a sentence
21-
:button_link: https://github.com/Lightning-AI/lightning/blob/master/examples/fabric/language_model
21+
:button_link: https://github.com/Lightning-AI/pytorch-lightning/blob/master/examples/fabric/language_model
2222
:col_css: col-md-4
2323
:height: 200
2424
:tag: basic
2525

2626
.. displayitem::
2727
:header: GAN
2828
:description: Train a GAN that generates realistic human faces
29-
:button_link: https://github.com/Lightning-AI/lightning/blob/master/examples/fabric/dcgan
29+
:button_link: https://github.com/Lightning-AI/pytorch-lightning/blob/master/examples/fabric/dcgan
3030
:col_css: col-md-4
3131
:height: 200
3232
:tag: intermediate
3333

3434
.. displayitem::
3535
:header: Meta-Learning
3636
:description: Distributed training with the MAML algorithm on the Omniglot and MiniImagenet datasets
37-
:button_link: https://github.com/Lightning-AI/lightning/blob/master/examples/fabric/meta_learning
37+
:button_link: https://github.com/Lightning-AI/pytorch-lightning/blob/master/examples/fabric/meta_learning
3838
:col_css: col-md-4
3939
:height: 200
4040
:tag: intermediate
@@ -50,7 +50,7 @@ Examples
5050
.. displayitem::
5151
:header: Reinforcement Learning
5252
:description: Implementation of the Proximal Policy Optimization (PPO) algorithm with multi-GPU support
53-
:button_link: https://github.com/Lightning-AI/lightning/blob/master/examples/fabric/reinforcement_learning
53+
:button_link: https://github.com/Lightning-AI/pytorch-lightning/blob/master/examples/fabric/reinforcement_learning
5454
:col_css: col-md-4
5555
:height: 200
5656
:tag: intermediate

docs/source-fabric/fundamentals/convert.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ All steps combined, this is how your code will change:
8484
8585
8686
That's it! You can now train on any device at any scale with a switch of a flag.
87-
Check out our before-and-after example for `image classification <https://github.com/Lightning-AI/lightning/blob/master/examples/fabric/image_classifier/README.md>`_ and many more :doc:`examples <../examples/index>` that use Fabric.
87+
Check out our before-and-after example for `image classification <https://github.com/Lightning-AI/pytorch-lightning/blob/master/examples/fabric/image_classifier/README.md>`_ and many more :doc:`examples <../examples/index>` that use Fabric.
8888

8989

9090
----

docs/source-pytorch/advanced/compile.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ needed to achieve the equivalent of `compile(distributed(quantized(model)))`:
251251
252252
self.model = torch.compile(model)
253253
254-
For a full example, see our `FP8 Distributed Transformer example <https://github.com/Lightning-AI/lightning/blob/master/examples/pytorch/fp8_distributed_transformer>`_.
254+
For a full example, see our `FP8 Distributed Transformer example <https://github.com/Lightning-AI/pytorch-lightning/blob/master/examples/pytorch/fp8_distributed_transformer>`_.
255255

256256
----
257257

docs/source-pytorch/community/governance.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,6 @@ and start tracking the development. It is possible that priorities change over t
6767

6868
Commits to the project are exclusively to be added by pull requests on GitHub and anyone in the community is welcome to
6969
review them. However, reviews submitted by
70-
`code owners <https://github.com/Lightning-AI/lightning/blob/master/.github/CODEOWNERS>`_
70+
`code owners <https://github.com/Lightning-AI/pytorch-lightning/blob/master/.github/CODEOWNERS>`_
7171
have higher weight and it is necessary to get the approval of code owners before a pull request can be merged.
7272
Additional requirements may apply case by case.

src/pytorch_lightning/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ______________________________________________________________________
1515
<a href="#examples">Examples</a> •
1616
<a href="#community">Community</a> •
1717
<a href="https://lightning.ai/">Lightning AI</a> •
18-
<a href="https://github.com/Lightning-AI/lightning/blob/master/LICENSE">License</a>
18+
<a href="https://github.com/Lightning-AI/pytorch-lightning/blob/master/LICENSE">License</a>
1919
</p>
2020

2121
<!-- DO NOT ADD CONDA DOWNLOADS... README CHANGES MUST BE APPROVED BY EDEN OR WILL -->
@@ -28,7 +28,7 @@ ______________________________________________________________________
2828
[![codecov](https://codecov.io/gh/Lightning-AI/pytorch-lightning/graph/badge.svg?token=SmzX8mnKlA)](https://codecov.io/gh/Lightning-AI/pytorch-lightning)
2929

3030
[![ReadTheDocs](https://readthedocs.org/projects/pytorch-lightning/badge/?version=stable)](https://lightning.ai/docs/pytorch/stable/)[![Discord](https://img.shields.io/discord/1077906959069626439?style=plastic)](https://discord.gg/VptPCZkGNa)
31-
[![license](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/Lightning-AI/lightning/blob/master/LICENSE)
31+
[![license](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/Lightning-AI/pytorch-lightning/blob/master/LICENSE)
3232

3333
<!--
3434
[![CodeFactor](https://www.codefactor.io/repository/github/Lightning-AI/lightning/badge)](https://www.codefactor.io/repository/github/Lightning-AI/lightning)

tests/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# PyTorch-Lightning Tests
22

3-
Most of the tests in PyTorch Lightning train a [BoringModel](https://github.com/Lightning-AI/lightning/blob/master/src/lightning/pytorch/demos/boring_classes.py) under various trainer conditions (ddp, amp, etc...). Want to add a new test case and not sure how? [Talk to us!](https://www.pytorchlightning.ai/community)
3+
Most of the tests in PyTorch Lightning train a [BoringModel](https://github.com/Lightning-AI/pytorch-lightning/blob/master/src/lightning/pytorch/demos/boring_classes.py) under various trainer conditions (ddp, amp, etc...). Want to add a new test case and not sure how? [Talk to us!](https://www.pytorchlightning.ai/community)
44

55
## Running tests
66

@@ -26,7 +26,7 @@ Additionally, for testing backward compatibility with older versions of PyTorch
2626
bash .actions/pull_legacy_checkpoints.sh
2727
```
2828

29-
Note: These checkpoints are generated to set baselines for maintaining backward compatibility with legacy versions of PyTorch Lightning. Details of checkpoints for back-compatibility can be found [here](https://github.com/Lightning-AI/lightning/blob/master/tests/legacy/README.md).
29+
Note: These checkpoints are generated to set baselines for maintaining backward compatibility with legacy versions of PyTorch Lightning. Details of checkpoints for back-compatibility can be found [here](https://github.com/Lightning-AI/pytorch-lightning/blob/master/tests/legacy/README.md).
3030

3131
You can run the full test suite in your terminal via this make script:
3232

0 commit comments

Comments
 (0)