Skip to content

Commit

Permalink
Update commands to log into wandb
Browse files Browse the repository at this point in the history
  • Loading branch information
golmschenk committed May 17, 2024
1 parent 70b5dec commit 4e23afa
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,16 +54,16 @@ where, in this case, the temporary dips are transiting events.
`qusi` uses Weights & Biases (`wandb`), a machine learning logging platform, to record metrics from training experiments. Among other things, it will create plots showing the training progress and allow easy comparison among the various runs. While you can run the `wandb` platform locally, it's easiest to use their cloud platform, which has [free academic research team projects and free personal projects](https://wandb.ai/site/pricing). To use it with `qusi`, [sign up for an account](https://wandb.ai/site), then from your project directory use

```sh
wandb login
(cd sessions && wandb login)
```

to login. If you want to proceed without a `wandb` account and log the data offline, you will need to run

```sh
wandb offline
(cd sessions && wandb offline)
```

This will only log runs locally. If you choose the offline route, at some point, you will want to follow [their guide to run the local server](https://docs.wandb.ai/guides/hosting/how-to-guides/basic-setup) so that you can view the metric plots. However, for the moment, just running `wandb offline` will allow you to proceed with this tutorial.
This will only log runs locally. If you choose the offline route, at some point, you will want to follow [their guide to run the local server](https://docs.wandb.ai/guides/hosting/how-to-guides/basic-setup) so that you can view the metric plots. However, for the moment, just running `wandb offline` (from the sessions directory) will allow you to proceed with this tutorial.

## Train the network

Expand Down

0 comments on commit 4e23afa

Please sign in to comment.