Spaces:
Build error
Build error
File size: 527 Bytes
22c212e 38f452c 22c212e fc9601b 22c212e e1e71f5 28ac903 a2a97d3 28ac903 |
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 |
#!/bin/sh
BASEDIR=$(dirname "$0")
cd $BASEDIR/..
echo Current Directory:
pwd
nvidia-smi
uname -a
cat /etc/os-release
lscpu
grep MemTotal /proc/meminfo
#pip install -r requirements.txt
#cd ../LLaMA-Factory && pip install -e .[torch,metrics,vllm] && cd -
./scripts/tune-lf-4gpu.sh Qwen Qwen2-72B-Instruct qwen
#./scripts/tune-lf-4gpu.sh shenzhi-wang Llama3.1-70B-Chinese-Chat llama3
export LOAD_IN_4BIT=true
./scripts/eval-epochs.sh Qwen Qwen2-72B-Instruct
./scripts/eval-epochs.sh shenzhi-wang Llama3.1-70B-Chinese-Chat
|