We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
DDPDataLoader
Let's remove the DDPDataLoader and instead move its functionality directly into the training loop -- e.g.
for epoch in epochs: if isinstance(state.train_dataloader.sampler, DistributedSampler): state.train_dataloader.sampler.set_epoch(int(state.timer.epoch))
The text was updated successfully, but these errors were encountered:
Removed the DDP data loader
98c173e
Closes #244
Remove the DDP DataLoader (#245)
4ec0544
Remove the DDP DataLoader (mosaicml#245)
5574b64
Closes mosaicml#244
Successfully merging a pull request may close this issue.
Let's remove the
DDPDataLoader
and instead move its functionality directly into the training loop -- e.g.The text was updated successfully, but these errors were encountered: