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
quick question, is there any example script and yaml file that turn off FSDP completely? (I want to use DDP)
I am running it on a 7B model. I have A100 80GB. I guess this will fit onto the GPU right?
The text was updated successfully, but these errors were encountered:
You can look at https://github.com/allenai/OLMo/blob/main/configs/tiny/OLMo-20M.yaml for a ddp example. You just need the following from there:
ddp: grad_sync_mode: batch find_unused_params: false ... distributed_strategy: ddp
With just 1 GPU, FSDP doesn't do anything special and so there shouldn't be a need to turn it off.
Sorry, something went wrong.
No branches or pull requests
❓ The question
quick question, is there any example script and yaml file that turn off FSDP completely? (I want to use DDP)
I am running it on a 7B model. I have A100 80GB. I guess this will fit onto the GPU right?
The text was updated successfully, but these errors were encountered: