Upload download.sh with huggingface_hub
Browse files- download.sh +8 -0
download.sh
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
mkdir -p ./p_weight
|
2 |
+
cd ./p_weight
|
3 |
+
|
4 |
+
for i in {0..31}; do
|
5 |
+
wget "https://huggingface.co/Zkli/init_mod_test/resolve/main/Layer${i}_up_P_matrix.pt"
|
6 |
+
wget "https://huggingface.co/Zkli/init_mod_test/resolve/main/Layer${i}_gate_P_matrix.pt"
|
7 |
+
wget "https://huggingface.co/Zkli/init_mod_test/resolve/main/Layer${i}_self_P_matrix.pt"
|
8 |
+
done
|