Skip to content

Commit d42e124

Browse files
committed
fix: download.sh script argument
1 parent 172e654 commit d42e124

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

download.sh

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
mkdir -p $MODEL
1+
#!/bin/bash
2+
mkdir -p $1
23
git lfs install --skip-smudge
3-
git clone https://huggingface.co/$MODEL $MODEL
4-
cd $MODEL
4+
git clone https://huggingface.co/$1 $1
5+
cd $1
56
git lfs pull
67
git lfs install --force
78
rm -rf .git

0 commit comments

Comments
 (0)