-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Distributed Pytorch implementation #1
base: master
Are you sure you want to change the base?
Conversation
@iamtao , can you simplify the code structure it a bit in view of thijs' single machine code? https://github.com/epfml/cifar/blob/master/train.py |
Yes. I will try to simplify the current code and make it more close to Thijs's scheme. |
Here I've provided my simplified Pytorch code for distributed training. The
MLBench
was building on top of it and has quickly evolved. The MLBench now is a bit hard for the beginner to start with; maybe this code also has this issue but will continue to simplify it.So in the next few days, I will try to introduce some of the new features/code design choices (e.g., different sparsification/quantization schemes) from MLBench, and make this code to as simple as possible.
Also, I still need to figure out how can I merge this code with Thijs's single worker code.