Home - Paxoo/PyTorch-Best_Practices GitHub Wiki

Welcome to the PyTorch-Best_Practices wiki!

ToDo

  • Hyperparameter Tuning
  • Performance Profiling

Tutorials

Offical: PyTorch Tutorials

This is a curated list of tutorials, projects, libraries, videos, papers, books The incredible PyTorch

This repository introduces the fundamental concepts of PyTorch Examples

How to keep my experiments reproducible?

torch.manual_seed(seed)
np.random.seed(seed)
random.seed(seed) 
# for cuda
torch.cuda.manual_seed_all(seed)
torch.backends.cudnn.deterministic = True
torch.backends.cudnn.benchmark = False
torch.backends.cudnn.enabled = False

Good summary by IgorSusmelj