leaderboard / benchmark /common /download_weights.sh
Jae-Won Chung
New leaderboard prototype
b10121d
raw
history blame
219 Bytes
#!/usr/bin/env bash
QUEUE_FILE="$1"
for model in $(tail -n +4 $QUEUE_FILE | awk '{print $2}'); do
HF_HOME=/data/leaderboard/hfcache huggingface-cli download $model --revision $(cat models/$model/revision.txt)
done