Spaces:
Build error
Build error
File size: 359 Bytes
a2100ac 6e8064d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
#!/bin/sh
BASEDIR=$(dirname "$0")
cd $BASEDIR/../llama-factory/
echo Current Directory:
pwd
export ORG_NAME=$1
export MODEL_NAME=$2
export CHAT_TEMPLATE=$3
export DATA_PATH=../datasets/mac/mac.tsv
export YAML=config/mac_template_4gpu.yaml
python ../llm_toolkit/setup_lf.py
CUDA_VISIBLE_DEVICES=0,1,2,3 llamafactory-cli train config/models/$MODEL_NAME.yaml
|