We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cc396b commit 951ff9fCopy full SHA for 951ff9f
1 file changed
.github/workflows/ci.yml
@@ -39,6 +39,18 @@ jobs:
39
path: ~/.cache/uv
40
key: ${{ runner.os }}-uv-${{ hashFiles('pyproject.toml') }}
41
42
+ - name: Cache image classification model
43
+ id: cache-img-model
44
+ uses: actions/cache@v4
45
+ with:
46
+ path: models/image_classification/model.onnx
47
+ key: img-class-model
48
+
49
+ - name: Download ONNX model
50
+ if: steps.cache-img-model.outputs.cache-hit != 'true'
51
+ run: |
52
+ curl -L -o models/image_classification/model.onnx https://huggingface.co/dima806/yoga_pose_image_classification/resolve/main/onnx/model.onnx
53
54
- name: Project setup
55
uses: ./.github/actions/project-setup
56
0 commit comments