wandb 在没有启动的情况下被记录
wandb getting logged without initiating
我不想使用 wandb。我什至没有帐户。我只是在关注 this notebook 进行微调。我不是 运行 第 2 和第 3 个单元格,因为我不想将模型推到中心。
但是,当我执行 trainer.train() 时,出现以下错误:
我不明白 wandb.log 在哪里被调用。
我什至尝试 os.environ["WANDB_DISABLED"] = "true" 但我仍然收到错误。
请帮忙
发布与 over on transformers
相同的消息:
您可以通过在 Seq2SeqTrainingArguments
中传递 report_to="none"
来关闭所有外部记录器日志记录,包括 wandb 日志记录。
您在设置 TrainingArguments 时可能已经注意到以下警告:
The default value for the training argument `--report_to` will change in v5 (from all installed integrations to none). In v5, you will need to use `--report_to all` to get the same behavior as now. You should start updating your code and make this info disappear :-)
现在默认是 运行 您已安装的所有记录器,所以也许自上次 运行 脚本以来您在计算机上安装了 wandb?
如果您想使用 wandb 登录,最佳做法是开始设置 report_to="wandb"
我不想使用 wandb。我什至没有帐户。我只是在关注 this notebook 进行微调。我不是 运行 第 2 和第 3 个单元格,因为我不想将模型推到中心。
但是,当我执行 trainer.train() 时,出现以下错误:
我不明白 wandb.log 在哪里被调用。 我什至尝试 os.environ["WANDB_DISABLED"] = "true" 但我仍然收到错误。 请帮忙
发布与 over on transformers
相同的消息:
您可以通过在 Seq2SeqTrainingArguments
中传递 report_to="none"
来关闭所有外部记录器日志记录,包括 wandb 日志记录。
您在设置 TrainingArguments 时可能已经注意到以下警告:
The default value for the training argument `--report_to` will change in v5 (from all installed integrations to none). In v5, you will need to use `--report_to all` to get the same behavior as now. You should start updating your code and make this info disappear :-)
现在默认是 运行 您已安装的所有记录器,所以也许自上次 运行 脚本以来您在计算机上安装了 wandb?
如果您想使用 wandb 登录,最佳做法是开始设置 report_to="wandb"