From c72f95c13b51d0e64b1e83933b3f7ec8c6a4d93e Mon Sep 17 00:00:00 2001 From: Rupesh K Srivastava Date: Fri, 27 Sep 2024 21:30:48 -0700 Subject: [PATCH 1/2] Fix #115: logging docs --- docs/user_guide/logging.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/user_guide/logging.md b/docs/user_guide/logging.md index 6db4728..6de079a 100644 --- a/docs/user_guide/logging.md +++ b/docs/user_guide/logging.md @@ -362,7 +362,7 @@ logger.run["..."].log(...) searcher.run(100) # Stop the neptune run - run.stop() + logger.run.stop() ``` ## Logging with Weights & Biases @@ -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() ``` From 3488531cbe54f84114364d602bcdd12e63102317 Mon Sep 17 00:00:00 2001 From: Vojtech Micka Date: Tue, 5 Nov 2024 20:34:56 +0100 Subject: [PATCH 2/2] =?UTF-8?q?Remove=20=E2=80=94-rebase=20from=20Mike?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/docs.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 561bed8..74128b9 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -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