Skip to content

Commit 03e66ee

Browse files
committed
Is this working?
1 parent 4af9142 commit 03e66ee

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.github/workflows/android-perf.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -200,14 +200,15 @@ jobs:
200200
TOKENIZER_BIN_FILE=tokenizer.bin
201201
# Fetch the file using a Python one-liner
202202
DOWNLOADED_TOKENIZER_FILE_PATH=$(python -c "
203-
from huggingface_hub import hf_hub_download
204-
# Download the file from the Hugging Face Hub
205-
downloaded_path = hf_hub_download(
206-
repo_id='${{ matrix.model }}',
207-
filename='${TOKENIZER_FILE}'
208-
)
209-
print(downloaded_path)
210-
")
203+
from huggingface_hub import hf_hub_download
204+
# Download the file from the Hugging Face Hub
205+
downloaded_path = hf_hub_download(
206+
repo_id='${{ matrix.model }}',
207+
filename='${TOKENIZER_FILE}'
208+
)
209+
print(downloaded_path)
210+
")
211+
211212
if [ -f "$DOWNLOADED_TOKENIZER_FILE_PATH" ]; then
212213
echo "${TOKENIZER_FILE} downloaded successfully at: $DOWNLOADED_TOKENIZER_FILE_PATH"
213214
python -m extension.llm.tokenizer.tokenizer -t $DOWNLOADED_TOKENIZER_FILE_PATH -o ./${TOKENIZER_BIN_FILE}

0 commit comments

Comments
 (0)