I do not want to use wandb. I don't even have an account. I am simply following this notebook for finetuning. I am not running the 2nd and 3 cells because I do not want to push the model to the hub.
However, when I do trainer.train() I get the following error :
I don't understand where wandb.log is being called. I even tried os.environ["WANDB_DISABLED"] = "true" but I still get the error. Please help.
posting the same message as over on
transformers
:You can turn off all external logger logging, including wandb logging by passing
report_to="none"
in yourSeq2SeqTrainingArguments
.You might have noticed the following warning when setting up your TrainingArguments:
Right now the default is to run all loggers that you have installed, so maybe you installed wandb on your machine since the last time you ran the script?
If you would like to log with wandb, best practice would already be to start setting
report_to="wandb"