Skip to content

Commit

Permalink
Merge branch 'master' into add-checkpoint-artifact-path-prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
lantiga authored Feb 3, 2025
2 parents b748e5d + ea59e40 commit db26a08
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/call-clear-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on:
jobs:
cron-clear:
if: github.event_name == 'schedule' || github.event_name == 'pull_request'
uses: Lightning-AI/utilities/.github/workflows/cleanup-caches.yml@v0.11.9
uses: Lightning-AI/utilities/.github/workflows/cleanup-caches.yml@v0.12.0
with:
scripts-ref: v0.11.8
dry-run: ${{ github.event_name == 'pull_request' }}
Expand All @@ -32,7 +32,7 @@ jobs:

direct-clear:
if: github.event_name == 'workflow_dispatch' || github.event_name == 'pull_request'
uses: Lightning-AI/utilities/.github/workflows/cleanup-caches.yml@v0.11.9
uses: Lightning-AI/utilities/.github/workflows/cleanup-caches.yml@v0.12.0
with:
scripts-ref: v0.11.8
dry-run: ${{ github.event_name == 'pull_request' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-check-md-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:

jobs:
check-md-links:
uses: Lightning-AI/utilities/.github/workflows/check-md-links.yml@v0.11.9
uses: Lightning-AI/utilities/.github/workflows/check-md-links.yml@v0.12.0
with:
config-file: ".github/markdown-links-config.json"
base-branch: "master"
2 changes: 1 addition & 1 deletion .github/workflows/ci-schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
check:
uses: Lightning-AI/utilities/.github/workflows/check-schema.yml@v0.11.9
uses: Lightning-AI/utilities/.github/workflows/check-schema.yml@v0.12.0
with:
# skip azure due to the wrong schema file by MSFT
# https://github.com/Lightning-AI/lightning-flash/pull/1455#issuecomment-1244793607
Expand Down
2 changes: 1 addition & 1 deletion docs/source-pytorch/starter/converting.rst
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,6 @@ The predict loop will not be used until you call :meth:`~lightning.pytorch.train
model = LitModel()
trainer.predict(model)
.. note:: ``model.eval()`` and ``torch.no_grad()`` are called automatically for testing.
.. note:: ``model.eval()`` and ``torch.no_grad()`` are called automatically for predicting.

.. tip:: ``trainer.predict()`` loads the best checkpoint automatically by default if checkpointing is enabled.
3 changes: 2 additions & 1 deletion requirements/ci.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
setuptools <70.1.1
wheel <0.44.0
awscli >=1.30.0, <1.31.0
twine ==4.0.1
twine ==6.0.1
importlib-metadata <8.0.0
wget
pkginfo ==1.12.0
packaging <24.2

0 comments on commit db26a08

Please sign in to comment.