Move a Tensor to a Specific Device in PyTorch
Adaptive Pooling in PyTorch
Tips and Traps¶
- Adpative pooling an generate fixed-sized output, which enables a model to handle varying sized input. The models in torchvision are such examples.
References¶
Ways to Enable and Disable Gradient in PyTorch
set_grad_enable¶
Make Your Model Training Reproducible in PyTorch
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
The PyTorch doc Reproducibility has very detailed instructions on how to make your model training reproducible. Basically, you need the following code.
torch.manual_seed(args.seed)
np.random.seed(args.seed …