inflaton commited on
Commit
4f064ec
·
1 Parent(s): 031ff20

4bit small models

Browse files
scripts/eval-mgtv-qwen2.5_3b_4bit.sh ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/sh
2
+
3
+ BASEDIR=$(dirname "$0")
4
+ cd $BASEDIR/..
5
+ echo Current Directory:
6
+ pwd
7
+
8
+ BASEDIR=`pwd`
9
+
10
+ nvidia-smi
11
+ uname -a
12
+ cat /etc/os-release
13
+ lscpu
14
+ grep MemTotal /proc/meminfo
15
+
16
+ export USING_LLAMA_FACTORY=true
17
+ export LOAD_IN_4BIT=true
18
+
19
+ $BASEDIR/scripts/eval-epochs.sh Qwen Qwen2.5-3B-Instruct
20
+
21
+ $BASEDIR/scripts/eval-shots.sh Qwen Qwen2.5-3B-Instruct
22
+
23
+ $BASEDIR/scripts/eval-epochs.sh Qwen Qwen2.5-1.5B-Instruct
24
+
25
+ $BASEDIR/scripts/eval-shots.sh Qwen Qwen2.5-1.5B-Instruct
26
+
27
+ $BASEDIR/scripts/eval-epochs.sh Qwen Qwen2.5-0.5B-Instruct
28
+
29
+ $BASEDIR/scripts/eval-shots.sh Qwen Qwen2.5-0.5B-Instruct
30
+