From 722e9364916e527e8d46cbd828a1516bf6aaebd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gema=20Parre=C3=B1o?= Date: Sun, 29 Oct 2023 19:22:26 +0100 Subject: [PATCH] [Typo fix] flag config in WANDB (#27130) typo fix flag config --- examples/pytorch/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/pytorch/README.md b/examples/pytorch/README.md index 60d762c69e1..2a00db08d2a 100644 --- a/examples/pytorch/README.md +++ b/examples/pytorch/README.md @@ -223,7 +223,7 @@ import wandb wandb.login() ``` -To enable logging to W&B, include `"wandb"` in the `report_to` of your `TrainingArguments` or script. Or just pass along `--report_to all` if you have `wandb` installed. +To enable logging to W&B, include `"wandb"` in the `report_to` of your `TrainingArguments` or script. Or just pass along `--report_to_all` if you have `wandb` installed. Whenever you use `Trainer` or `TFTrainer` classes, your losses, evaluation metrics, model topology and gradients (for `Trainer` only) will automatically be logged.