Skip to content

Latest commit

 

History

History
30 lines (16 loc) · 1.27 KB

README.md

File metadata and controls

30 lines (16 loc) · 1.27 KB

ML notebooks

Deep Learning

Computer Vision

  • conv_example.py: Python code to train a Convolution NN on custom dataset, using pytorch dataloader. (End2end example)

  • GAN.ipynb: Train a DCGAN on CelebA dataset to generate fake faces.

  • DCGAN.ipynb: Train a DCGAN on MNIST dataset to generate fake digits.

GAN

  • Training challenges: -- Use small batch size especially if model is small, large batch size may train Discriminator very fast during early phase of training.

NLP

  • dataprep_bpe.ipynb: Example notebook to load custom Language dataset for Machine translation and tokenize it using Transformers Library with Byte Pair Encoding.

  • transformers.ipynb: Train a custom transformer model for Machine Translation

RL