MichiganCOG / ViP

Video Platform for Action Recognition and Object Detection in Pytorch
MIT License
219 stars 37 forks source link

Support for multi-gpu training & evaluation #50

Open natlouis opened 4 years ago

natlouis commented 4 years ago

Add option for DataParallel training in PyTorch. It's pretty straight forward, the only issues are when accessing the state_dict and functions belonging to model (for multi-gpu training). It becomesmodel.module.state_dict instead of model.state_dict.