Spaces:
Build error
Build error
File size: 684 Bytes
de489ee 32463b2 de489ee 281682c 687f68b 32463b2 687f68b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
#!/bin/sh
BASEDIR=$(dirname "$0")
cd $BASEDIR/..
echo Current Directory:
pwd
BASEDIR=`pwd`
nvidia-smi
uname -a
cat /etc/os-release
lscpu
grep MemTotal /proc/meminfo
export USING_LLAMA_FACTORY=false
export LOAD_IN_4BIT=true
$BASEDIR/scripts/eval-epochs.sh Qwen Qwen2.5-72B-Instruct
export START_NUM_SHOTS=5
$BASEDIR/scripts/eval-shots_4bit.sh Qwen Qwen2.5-72B-Instruct
export START_NUM_SHOTS=40
$BASEDIR/scripts/eval-shots_4bit.sh shenzhi-wang Llama3.1-70B-Chinese-Chat
export LOAD_IN_4BIT=false
export USING_LLAMA_FACTORY=true
$BASEDIR/scripts/eval-shots.sh internlm internlm2_5-7b-chat
export START_NUM_SHOTS=50
$BASEDIR/scripts/eval-shots.sh internlm internlm2_5-7b-chat-1m
|