We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d43b22a commit 85b61e5Copy full SHA for 85b61e5
.github/workflows/main.yml
@@ -9,9 +9,9 @@ jobs:
9
- name: Install uv
10
uses: astral-sh/setup-uv@v5
11
- name: install dependencies
12
- run: sudo apt-get update -y && sudo apt-get install -y git libsm6 --no-install-recommends -y && uv sync && git lfs install
+ run: sudo apt-get update -y && sudo apt-get install -y git libsm6 --no-install-recommends -y && uv sync && uv add huggingface_hub[cli] && git lfs install
13
- name: Download the Model
14
- run: git clone ${{ matrix.model_url }} --depth 1
+ run: huggingface-cli download ${{ matrix.model_url }} --ignore-patterns=*.rknn --ignore-patterns=*.armnn
15
- name: Run Conversion Script
16
run: uv run bash ./convert.sh ${{ matrix.model_name }} ${{ matrix.platform }}
17
strategy:
0 commit comments