From f7a51df7d5a354c8c4a70ed70e304a7264605345 Mon Sep 17 00:00:00 2001 From: yizhenjia Date: Fri, 25 Oct 2024 09:37:44 +0800 Subject: [PATCH] [doc] readme update wandb guide --- README.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/README.md b/README.md index 97f5790a4..cc2f5afb1 100644 --- a/README.md +++ b/README.md @@ -115,6 +115,31 @@ conda install mpi4py bash install.sh ``` +> [!TIP] +> We use WandB to track and visualize the training process by default. Before running the training scripts, users may need to log in to WandB using the command: +>```bash +>wandb login +>``` +> For detailed instructions, refer to the [WandB Quickstart Guide](https://docs.wandb.ai/quickstart/). Step 1 (registration) and Step 2 (login using your WandB API key) should be sufficient to set up your environment. +> +>
Disabling wandb +> +> One can disable wandb by either: +> +> 1. Adding environment variable before running the training command. +> +>```bash +>export WANDB_MODE=disabled +>``` +> +> 2. OR, specifying the integrations to report the results and logs to. In the training script, add: +> +>```bash +>--report_to none \ +>``` +> +>
+ ### Prepare Dataset Please refer to our [doc](https://optimalscale.github.io/LMFlow/examples/DATASETS.html).