@@ -33,65 +33,65 @@ Recipes are bite-sized bite-sized, actionable examples of how to use specific Py
33
33
.. customcarditem ::
34
34
:header: Loading data in PyTorch
35
35
:card_description: Learn how to use PyTorch packages to prepare and load common datasets for your model.
36
- :image: ../_static/img/thumbnails/cropped/loading-data.png
36
+ :image: ../_static/img/thumbnails/cropped/loading-data.PNG
37
37
:link: ../recipes/recipes/loading_data_recipe.html
38
38
:tags: Basics
39
39
40
40
41
41
.. customcarditem ::
42
42
:header: Defining a Neural Network
43
43
:card_description: Learn how to use PyTorch's torch.nn package to create and define a neural network the MNIST dataset.
44
- :image: ../_static/img/thumbnails/cropped/defining-a-network.png
44
+ :image: ../_static/img/thumbnails/cropped/defining-a-network.PNG
45
45
:link: ../recipes/recipes/defining_a_neural_network.html
46
46
:tags: Basics
47
47
48
48
.. customcarditem ::
49
49
:header: What is a state_dict in PyTorch
50
50
:card_description: Learn how state_dict objects, Python dictionaries, are used in saving or loading models from PyTorch.
51
- :image: ../_static/img/thumbnails/cropped/what-is-a-state-dict.png
51
+ :image: ../_static/img/thumbnails/cropped/what-is-a-state-dict.PNG
52
52
:link: ../recipes/recipes/what_is_state_dict.html
53
53
:tags: Basics
54
54
55
55
.. customcarditem ::
56
56
:header: Saving and loading models for inference in PyTorch
57
57
:card_description: Learn about the two approaches for saving and loading models for inference in PyTorch - via the state_dict and via the entire model.
58
- :image: ../_static/img/thumbnails/cropped/saving-and-loading-models-for-inference.png
58
+ :image: ../_static/img/thumbnails/cropped/saving-and-loading-models-for-inference.PNG
59
59
:link: ../recipes/recipes/saving_and_loading_models_for_inference.html
60
60
:tags: Basics
61
61
62
62
63
63
.. customcarditem ::
64
64
:header: Saving and loading a general checkpoint in PyTorch
65
65
:card_description: Saving and loading a general checkpoint model for inference or resuming training can be helpful for picking up where you last left off. In this recipe, explore how to save and load multiple checkpoints.
66
- :image: ../_static/img/thumbnails/cropped/saving-and-loading-general-checkpoint.png
66
+ :image: ../_static/img/thumbnails/cropped/saving-and-loading-general-checkpoint.PNG
67
67
:link: ../recipes/recipes/saving_and_loading_a_general_checkpoint.html
68
68
:tags: Basics
69
69
70
70
.. customcarditem ::
71
71
:header: Saving and loading multiple models in one file using PyTorch
72
72
:card_description: In this recipe, learn how saving and loading multiple models can be helpful for reusing models that you have previously trained.
73
- :image: ../_static/img/thumbnails/cropped/saving-multiple-models.png
73
+ :image: ../_static/img/thumbnails/cropped/saving-multiple-models.PNG
74
74
:link: ../recipes/recipes/saving_multiple_models_in_one_file.html
75
75
:tags: Basics
76
76
77
77
.. customcarditem ::
78
78
:header: Warmstarting model using parameters from a different model in PyTorch
79
79
:card_description: Learn how warmstarting the training process by partially loading a model or loading a partial model can help your model converge much faster than training from scratch.
80
- :image: ../_static/img/thumbnails/cropped/warmstarting-models.png
80
+ :image: ../_static/img/thumbnails/cropped/warmstarting-models.PNG
81
81
:link: ../recipes/recipes/warmstarting_model_using_parameters_from_a_different_model.html
82
82
:tags: Basics
83
83
84
84
.. customcarditem ::
85
85
:header: Saving and loading models across devices in PyTorch
86
86
:card_description: Learn how saving and loading models across devices (CPUs and GPUs) is relatively straightforward using PyTorch.
87
- :image: ../_static/img/thumbnails/cropped/saving-and-loading-models-across-devices.png
87
+ :image: ../_static/img/thumbnails/cropped/saving-and-loading-models-across-devices.PNG
88
88
:link: ../recipes/recipes/save_load_across_devices.html
89
89
:tags: Basics
90
90
91
91
.. customcarditem ::
92
92
:header: Zeroing out gradients in PyTorch
93
93
:card_description: Learn when you should zero out graidents and how doing so can help increase the accuracy of your model.
94
- :image: ../_static/img/thumbnails/cropped/zeroing-out-gradients.png
94
+ :image: ../_static/img/thumbnails/cropped/zeroing-out-gradients.PNG
95
95
:link: ../recipes/recipes/zeroing_out_gradients.html
96
96
:tags: Basics
97
97
0 commit comments