Skip to content

Commit

Permalink
Fix #115: logging docs
Browse files Browse the repository at this point in the history
  • Loading branch information
flukeskywalker authored Sep 28, 2024
1 parent 415c32f commit c72f95c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/user_guide/logging.md
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ logger.run["..."].log(...)
searcher.run(100)

# Stop the neptune run
run.stop()
logger.run.stop()
```

## Logging with Weights & Biases
Expand Down Expand Up @@ -404,6 +404,6 @@ _ = WandbLogger(searcher, project="project-name")
# Run the search algorithm
searcher.run(100)

# Stop the neptune run
run.stop()
# Finish the W&B run
wandb.finish()
```

0 comments on commit c72f95c

Please sign in to comment.