Shortcuts

PyTorch Recipes

Recipes are bite-sized bite-sized, actionable examples of how to use specific PyTorch features, different from our full-length tutorials.


Loading data in PyTorch

Learn how to use PyTorch packages to prepare and load common datasets for your model.

Basics

Defining a Neural Network

Learn how to use PyTorch's torch.nn package to create and define a neural network the MNIST dataset.

Basics

What is a state_dict in PyTorch

Learn how state_dict objects, Python dictionaries, are used in saving or loading models from PyTorch.

Basics

Saving and loading models for inference in PyTorch

Learn about the two approaches for saving and loading models for inference in PyTorch - via the state_dict and via the entire model.

Basics

Saving and loading a general checkpoint in PyTorch

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.

Basics

Saving and loading multiple models in one file using PyTorch

In this recipe, learn how saving and loading multiple models can be helpful for reusing models that you have previously trained.

Basics

Warmstarting model using parameters from a different model in PyTorch

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.

Basics

Saving and loading models across devices in PyTorch

Learn how saving and loading models across devices (CPUs and GPUs) is relatively straightforward using PyTorch.

Basics

Zeroing out gradients in PyTorch

Learn when you should zero out graidents and how doing so can help increase the accuracy of your model.

Basics

Custom Datasets, Transforms & Dataloaders

Learn how to leverage the PyTorch dataset API to easily create a custom dataset and custom dataloader.

Data-Customization

Model Interpretability using Captum

Learn how to use Captum attribute the predictions of an image classifier to their corresponding image features and visualize the attribution results.

Interpretability, Captum

How to use TensorBoard with PyTorch

Learn basic usage of TensorBoard with PyTorch, and how to visualize data in TensorBoard UI

Interpretability, TensorBoard

Dynamic Quantization

Apply dynamic quantization to a simple LSTM model.

Quantization, Text, Model-Optimization

TorchScript for Deployment

Learn how to export your trained model in TorchScript format and how to load your TorchScript model in C++ and do inference.

TorchScript

Deploying with Flask

Learn how to use Flask, a lightweight web server, to quickly setup a web API from your trained PyTorch model.

Production, TorchScript

Docs

Access comprehensive developer documentation for PyTorch

View Docs

Tutorials

Get in-depth tutorials for beginners and advanced developers

View Tutorials

Resources

Find development resources and get your questions answered

View Resources