Skip to content

Commit

Permalink
Fix #115: logging docs (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
flukeskywalker authored Nov 5, 2024
1 parent 0517bd0 commit 081557c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ jobs:
git config --local user.name "github-actions[bot]"
git config --local user.email "github-actions[bot]@users.noreply.github.com"
- name: Deploy with mike (tag_ 🚀
- name: Deploy with mike (tag) 🚀
if: ${{ github.ref_type == 'tag' }}
run: mike deploy --push --rebase --update-aliases ${{ github.ref_name }} latest
run: mike deploy --push --update-aliases ${{ github.ref_name }} latest

- name: Deploy with mike (branch) 🚀
if: ${{ github.ref_type == 'branch' }}
run: mike deploy --push --rebase docs-latest
run: mike deploy --push docs-latest
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 081557c

Please sign in to comment.