Update downs.sh
Browse files
downs.sh
CHANGED
@@ -7,17 +7,24 @@ CHECKPOINT=$1
|
|
7 |
RC=$2
|
8 |
|
9 |
GOORM="0"
|
|
|
|
|
10 |
if [ -d "/workspace/firstContainer" ]; then
|
11 |
GOORM="1"
|
|
|
|
|
12 |
fi
|
13 |
|
14 |
RELATIVE_DIR=`dirname "$0"`
|
15 |
cd $RELATIVE_DIR
|
16 |
|
17 |
-
if [
|
18 |
cd SD
|
|
|
|
|
19 |
else
|
20 |
cd SD*
|
|
|
21 |
fi
|
22 |
|
23 |
cd models
|
@@ -59,9 +66,15 @@ case $CHECKPOINT in
|
|
59 |
d)
|
60 |
CK_LINK="https://huggingface.co/zuv0/test/resolve/main/noobaiXLNAIXL_earlyAccessVersion.safetensors"
|
61 |
;;
|
|
|
|
|
|
|
62 |
e)
|
63 |
CK_LINK="https://huggingface.co/hanzogak/comradeshipXL/resolve/main/comradeshipXL-v14T13.safetensors"
|
64 |
;;
|
|
|
|
|
|
|
65 |
gc)
|
66 |
rm -rf *.safetensors
|
67 |
echo "CHECKPOINT remove."
|
|
|
7 |
RC=$2
|
8 |
|
9 |
GOORM="0"
|
10 |
+
RUNPOD="0"
|
11 |
+
|
12 |
if [ -d "/workspace/firstContainer" ]; then
|
13 |
GOORM="1"
|
14 |
+
elif [ -d "/workspace" ]; then
|
15 |
+
RUNPOD="1"
|
16 |
fi
|
17 |
|
18 |
RELATIVE_DIR=`dirname "$0"`
|
19 |
cd $RELATIVE_DIR
|
20 |
|
21 |
+
if [ -d "SD" ]; then
|
22 |
cd SD
|
23 |
+
elif [ -d "CU" ]; then
|
24 |
+
cd CU
|
25 |
else
|
26 |
cd SD*
|
27 |
+
cd CU*
|
28 |
fi
|
29 |
|
30 |
cd models
|
|
|
66 |
d)
|
67 |
CK_LINK="https://huggingface.co/zuv0/test/resolve/main/noobaiXLNAIXL_earlyAccessVersion.safetensors"
|
68 |
;;
|
69 |
+
d2)
|
70 |
+
CK_LINK="https://huggingface.co/zuv0/test/resolve/main/noobaiXLNAIXL_epsilonPred05Version.safetensors"
|
71 |
+
;;
|
72 |
e)
|
73 |
CK_LINK="https://huggingface.co/hanzogak/comradeshipXL/resolve/main/comradeshipXL-v14T13.safetensors"
|
74 |
;;
|
75 |
+
f)
|
76 |
+
CK_LINK="https://huggingface.co/zuv0/test/resolve/main/illustriousXPonyMix_v3.safetensors"
|
77 |
+
;;
|
78 |
gc)
|
79 |
rm -rf *.safetensors
|
80 |
echo "CHECKPOINT remove."
|