Skip to content

Latest commit

 

History

History
25 lines (22 loc) · 963 Bytes

README.md

File metadata and controls

25 lines (22 loc) · 963 Bytes

Basic PyTorch Pipline.

  1. Design the Model (input, output size)
  2. Construct the loss and optimizers
  3. Training Loop
  • Forward pass: compute predictions
  • Backward Pass: Gradients
  • Update Weights

Different ways to load dataset explained in GoogleColab Notebook Number (4).

  1. Using PyTorch inbuilt datasets
  2. Loading dataset from a CSV file
  3. Loading dataset from a single folder with a CSV file that maps image name to the class
  4. Loading dataset from multiple folders seperated according to the classes
  5. Using HDF5 file for loading dataset.

GoogleColab Notebook List.

  1. PyTorch Basic Syntax
  2. Linear Regression using numpy and it's step by step conversion to PyTorch code
  3. Linear Regression
  4. Logistic Regression
  5. Custom Dataset loading and creating dataset class
  6. Creating First Feed Forward NN and testing it on MNIST dataset
  7. Creating First CNN Model and testing it on CIFAR-10 dataset
  8. Saving and Loading models