Skip to content

Commit db1a92b

Browse files
committed
update
1 parent 73acdf5 commit db1a92b

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/mobile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ jobs:
270270
shell: bash
271271
run: |
272272
set -e
273-
pip install -r ./prepare_models.requirements.txt
273+
pip install -r ./requirements.txt
274274
./prepare_models.py --output_dir ./app/src/main/res/raw --format ${{ matrix.ModelFormat }}
275275
working-directory: mobile/examples/image_classification/android
276276

ci_build/azure_pipelines/mobile-examples-pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ stages:
245245

246246
- bash: |
247247
set -e
248-
pip install -r ./prepare_models.requirements.txt
248+
pip install -r ./requirements.txt
249249
./prepare_models.py --output_dir ./app/src/main/res/raw --format $(ModelFormat)
250250
workingDirectory: mobile/examples/image_classification/android
251251
displayName: "Generate models"

mobile/examples/image_classification/android/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Run `mobile/examples/image_classification/android/prepare_models.py` to download
2121

2222
```bash
2323
cd mobile/examples/image_classification/android # cd to this directory
24-
python -m pip install -r ./prepare_models.requirements.txt
24+
python -m pip install -r ./requirements.txt
2525
python ./prepare_models.py --output_dir ./app/src/main/res/raw
2626
```
2727

mobile/examples/image_classification/android/prepare_models.requirements.txt

Lines changed: 0 additions & 2 deletions
This file was deleted.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
onnx==1.17.0
2+
onnxruntime==1.22.1
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
onnx==1.13.1
2-
onnxruntime==1.14.1
3-
tensorflow==2.12.1
4-
tf2onnx==1.14.0
1+
onnx==1.17.0
2+
onnxruntime==1.22.1
3+
tensorflow==2.13.0
4+
tf2onnx==1.16.1

0 commit comments

Comments
 (0)