Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.14 KB

File metadata and controls

27 lines (20 loc) · 1.14 KB

PyTorch Tutorial (Guide)

This tutorial is best followed in the order below, as later topics build on concepts introduced earlier.

Data

Loading premade datasets, building custom and robust datasets, augmenting data, and constructing DataLoaders. data.md

Accuracy

Training baseline models, evaluating performance, building modular networks, preventing overfitting, and applying transfer learning.
accuracy.md

Optimization

Improving training with optimizers, learning-rate schedulers, regularization, and hyperparameter tuning.
optimization.md

Interpretability

Understanding model predictions using saliency maps, Grad-CAM, and feature visualizations.
interpretability.md

Efficiency

Understanding performance bottlenecks, data loading efficiency, and gradient accumulation.
efficiency.md

Deployment

Exporting using ONNX and preparing models for real-world inference through pruning and quantization.
deployment.md