PRE_SEQ_LEN=128 LR=5e-3 export HSA_FORCE_FINE_GRAIN_PCIE=1 export NCCL_P2P_LEVEL=5 export NCCL_MIN_NCHANNELS=20 MASTER_PORT=$(shuf -n 1 -i 10000-65535) HIP_VISIBLE_DEVICES=0,1,2,3 deepspeed --num_gpus=4 --master_port $MASTER_PORT main.py \ --do_train \ --train_file AdvertiseGen/train.json \ --test_file AdvertiseGen/dev.json \ --prompt_column content \ --response_column summary \ --model_name_or_path ../model/chatglm-6b \ --output_dir ./output_pt/adgen-chatglm-6b-pt-4c-$LR \ --overwrite_output_dir \ --max_source_length 512 \ --max_target_length 512 \ --per_device_train_batch_size 1 \ --per_device_eval_batch_size 1 \ --gradient_accumulation_steps 1 \ --predict_with_generate \ --max_steps 30 \ --logging_steps 1 \ --save_steps 1000 \ --learning_rate $LR \ --pre_seq_len $PRE_SEQ_LEN \ --fp16 \