-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIX: Redirect old Loading data in PyTorch to newer Datasets & DataLoa…
…ders (#2922) * add redirect to data tutorial --------- Co-authored-by: Svetlana Karslioglu <[email protected]>
- Loading branch information
1 parent
7a44230
commit 63f987d
Showing
6 changed files
with
41 additions
and
210 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Loading data in PyTorch | ||
======================= | ||
|
||
The content is deprecated. See `Datasets & DataLoaders <https://pytorch.org/tutorials/beginner/basics/data_tutorial.html>`__ instead. | ||
|
||
.. raw:: html | ||
|
||
<meta http-equiv="Refresh" content="1; url='https://pytorch.org/tutorials/beginner/basics/data_tutorial.html'" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,62 +1,58 @@ | ||
PyTorch Recipes | ||
--------------------------------------------- | ||
1. loading_data_recipe.py | ||
Loading Data in PyTorch | ||
https://pytorch.org/tutorials/recipes/recipes/loading_data_recipe.html | ||
|
||
2. defining_a_neural_network.py | ||
1. defining_a_neural_network.py | ||
Defining a Neural Network in PyTorch | ||
https://pytorch.org/tutorials/recipes/recipes/defining_a_neural_network.html | ||
|
||
3. what_is_state_dict.py | ||
2. what_is_state_dict.py | ||
What is a state_dict in PyTorch | ||
https://pytorch.org/tutorials/recipes/recipes/what_is_state_dict.html | ||
|
||
4. saving_and_loading_models_for_inference.py | ||
3. saving_and_loading_models_for_inference.py | ||
Saving and loading models for inference in PyTorch | ||
https://pytorch.org/tutorials/recipes/recipes/saving_and_loading_models_for_inference.html | ||
|
||
5. custom_dataset_transforms_loader.py | ||
4. custom_dataset_transforms_loader.py | ||
Developing Custom PyTorch Dataloaders | ||
https://pytorch.org/tutorials/recipes/recipes/custom_dataset_transforms_loader.html | ||
|
||
|
||
6. Captum_Recipe.py | ||
5. Captum_Recipe.py | ||
Model Interpretability using Captum | ||
https://pytorch.org/tutorials/recipes/recipes/Captum_Recipe.html | ||
|
||
7. dynamic_quantization.py | ||
6. dynamic_quantization.py | ||
Dynamic Quantization | ||
https://pytorch.org/tutorials/recipes/recipes/dynamic_quantization.html | ||
|
||
8. save_load_across_devices.py | ||
7. save_load_across_devices.py | ||
Saving and loading models across devices in PyTorch | ||
https://pytorch.org/tutorials/recipes/recipes/save_load_across_devices.html | ||
|
||
9. saving_and_loading_a_general_checkpoint.py | ||
8. saving_and_loading_a_general_checkpoint.py | ||
Saving and loading a general checkpoint in PyTorch | ||
https://pytorch.org/tutorials/recipes/recipes/saving_and_loading_a_general_checkpoint.html | ||
|
||
10. saving_and_loading_models_for_inference.py | ||
9. saving_and_loading_models_for_inference.py | ||
Saving and loading models for inference in PyTorch | ||
https://pytorch.org/tutorials/recipes/recipes/saving_and_loading_models_for_inference.html | ||
|
||
11. saving_multiple_models_in_one_file.py | ||
10. saving_multiple_models_in_one_file.py | ||
Saving and loading multiple models in one file using PyTorch | ||
https://pytorch.org/tutorials/recipes/recipes/saving_multiple_models_in_one_file.html | ||
|
||
12. warmstarting_model_using_parameters_from_a_different_model.py | ||
11. warmstarting_model_using_parameters_from_a_different_model.py | ||
Warmstarting models using parameters from different model | ||
https://pytorch.org/tutorials/recipes/recipes/warmstarting_model_using_parameters_from_a_different_model.html | ||
|
||
13. zeroing_out_gradients.py | ||
12. zeroing_out_gradients.py | ||
Zeroing out gradients | ||
https://pytorch.org/tutorials/recipes/recipes/zeroing_out_gradients.html | ||
|
||
14. mobile_perf.py | ||
13. mobile_perf.py | ||
PyTorch Mobile Performance Recipes | ||
https://pytorch.org/tutorials/recipes/mobile_perf.html | ||
|
||
15. amp_recipe.py | ||
14. amp_recipe.py | ||
Automatic Mixed Precision | ||
https://pytorch.org/tutorials/recipes/amp_recipe.html |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters