You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For a many deprecated args, you need to pass them it in the config and in the trainer, otherwise it will be overwritten by the default value of the trainer. Example with num_of_sequences and SFTTrainer:
If wrongly report that I've passed a num_of_sequences argument to the SFTTrainer. And the value that I've set in SFTConfig is overwritten by the trainer's default (1024). The only way to make it work as expected is to use
For a many deprecated args, you need to pass them it in the config and in the trainer, otherwise it will be overwritten by the default value of the trainer. Example with
num_of_sequences
andSFTTrainer
:If wrongly report that I've passed a
num_of_sequences
argument to the SFTTrainer. And the value that I've set inSFTConfig
is overwritten by the trainer's default (1024). The only way to make it work as expected is to usewhich is not satisfying, since it create a duplicate, and it uses a deprecated arg.
The text was updated successfully, but these errors were encountered: