Spaces:
Build error
Build error
File size: 503 Bytes
6fc6dc9 22c212e 6fc6dc9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
#!/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.sh internlm internlm2_5-7b-chat intern2
./scripts/tune-lf.sh Qwen Qwen2-7B-Instruct qwen
./scripts/tune-lf.sh shenzhi-wang Mistral-7B-v0.3-Chinese-Chat mistral
./scripts/tune-lf.sh shenzhi-wang Llama3.1-8B-Chinese-Chat llama3
|