Datasets:
File size: 438 Bytes
cc7d399 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #!/bin/bash
set -e
# The Python runtime chooses a writable cache root automatically.
# Set SFR_CACHE_ROOT=/path/to/cache to override it on a cloud GPU.
cd "$(dirname "$0")/.."
uv run python -u scripts/eval_multilang.py \
--results-dir ./results_gemma4 \
--hub-repo "${ANONYMIZED_OUTPUT_REPO:-}" \
--languages pashto urdu arabic persian hindi bengali malayalam tamil somali georgian \
--whisper-sizes \
--run-gemma4
|