mirror of
https://github.com/modelscope/modelscope.git
synced 2025-12-19 01:29:24 +01:00
9 lines
162 B
Bash
9 lines
162 B
Bash
#!/bin/bash
|
|
|
|
DATE=$(date +"%Y%m%d-%H%M%S")
|
|
nohup python llm_sft.py \
|
|
--device 0 \
|
|
--model_type llama2-7b \
|
|
--data_sample 25000 \
|
|
&> train_$DATE.out &
|