From 46dfe99e44887e40b821b0232dcfe6a52d31c3c4 Mon Sep 17 00:00:00 2001 From: Chungman Lee <50270612+fullyz@users.noreply.github.com> Date: Sat, 9 Oct 2021 03:25:32 +0900 Subject: [PATCH] Fix typo in README.md (#13883) --- examples/pytorch/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/pytorch/README.md b/examples/pytorch/README.md index 1eaa61e0f0..7cbf7edc95 100644 --- a/examples/pytorch/README.md +++ b/examples/pytorch/README.md @@ -88,7 +88,7 @@ A few notes on this integration: ## Distributed training and mixed precision All the PyTorch scripts mentioned above work out of the box with distributed training and mixed precision, thanks to -the [Trainer API](https://huggingface.co/transformers/main_classes/trainer.html). To launch one of them on _n_ GPUS, +the [Trainer API](https://huggingface.co/transformers/main_classes/trainer.html). To launch one of them on _n_ GPUs, use the following command: ```bash @@ -180,7 +180,7 @@ and reply to the questions asked. Then accelerate test ``` -that will check everything is ready for training. Finally, you cam launch training with +that will check everything is ready for training. Finally, you can launch training with ```bash accelerate launch path_to_script.py --args_to_script @@ -223,7 +223,7 @@ Advanced configuration is possible by setting environment variables: | Environment Variable | Value | |---|---| -| WANDB_LOG_MODEL | Log the model as artifact (log the model as artifact at the end of training (`false` by default) | +| WANDB_LOG_MODEL | Log the model as artifact (log the model as artifact at the end of training) (`false` by default) | | WANDB_WATCH | one of `gradients` (default) to log histograms of gradients, `all` to log histograms of both gradients and parameters, or `false` for no histogram logging | | WANDB_PROJECT | Organize runs by project |