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
Enhance HfArgumentParser with Dict command-line parser
There are many arguments with dict typing, such as lr_scheduler_kwargs, gradient_checkpointing_kwargs.
lr_scheduler_kwargs
gradient_checkpointing_kwargs
transformers/src/transformers/training_args.py
Line 806 in 6cdbd73
Line 1255 in 6cdbd73
It is possible to pass dict arguments through json_file or yaml_file. But it does not work in command-line.
TBD
The text was updated successfully, but these errors were encountered:
cc @pacman100 @muellerzr
Sorry, something went wrong.
muellerzr
Successfully merging a pull request may close this issue.
Feature request
Enhance HfArgumentParser with Dict command-line parser
Motivation
There are many arguments with dict typing, such as
lr_scheduler_kwargs
,gradient_checkpointing_kwargs
.transformers/src/transformers/training_args.py
Line 806 in 6cdbd73
transformers/src/transformers/training_args.py
Line 1255 in 6cdbd73
It is possible to pass dict arguments through json_file or yaml_file.
But it does not work in command-line.
Your contribution
TBD
The text was updated successfully, but these errors were encountered: