Spaces:
Runtime error
Runtime error
File size: 277 Bytes
e49cdfa 7667318 5789839 7667318 e49cdfa 6caa2f8 e49cdfa |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#!/bin/bash
set -e
for i in pythia-1.4b-deduped-v0,EleutherAI/pythia-1.4b-deduped-v0
do
IFS=","
set -- $i
echo "migrating $2"
CUDA_VISIBLE_DEVICES=-1 python3 lens_migration.py --model $2 --resource-id $1 --output lens/$1
git commit -am "$1 migrated"
done
|