| | #!/bin/bash |
| |
|
| | ./move.sh |
| |
|
| | cd src/r1-v |
| |
|
| | export DEBUG_MODE="true" |
| | export LOG_PATH="./vllm_run.txt" |
| |
|
| |
|
| | |
| | QWEN_PATH='/apdcephfs_sh2/share_300000800/user/zongxia/sft_models/mllm_data1/Qwen2.5-VL-3B-Instruct' |
| |
|
| | DATA_FILE="merged_train" |
| | HF_DATASET="./Video-R1-data/${DATA_FILE}.json" |
| | OUTPUT_DIR="./log/3B-LLMEval/${DATA_FILE}" |
| | if [ ! -d "$OUTPUT_DIR" ]; then |
| | mkdir -p "$OUTPUT_DIR" |
| | fi |
| | RUN_NAME="3B-Description-LLMEval-${DATA_FILE}" |
| | DS_CONFIG="local_scripts/zero3.json" |
| |
|
| | |
| | |
| | |
| |
|
| | CUDA_VISIBLE_DEVICES="0,1,2,3,4,5,6,7" torchrun \ |
| | --nproc_per_node="7" \ |
| | --nnodes="1" \ |
| | --node_rank="0" \ |
| | --master_addr="127.0.0.1" \ |
| | --master_port="12345" \ |
| | src/open_r1/grpo-description-LLMEval.py \ |
| | --use_vllm true \ |
| | --output_dir ${OUTPUT_DIR} \ |
| | --model_name_or_path ${QWEN_PATH} \ |
| | --dataset_name ${HF_DATASET} \ |
| | --max_prompt_length 16384 \ |
| | --max_completion_length 1400 \ |
| | --per_device_train_batch_size 1 \ |
| | --gradient_accumulation_steps 4 \ |
| | --learning_rate 1e-6 \ |
| | --lr_scheduler_type "cosine" \ |
| | --weight_decay 0.01 \ |
| | --logging_steps 1 \ |
| | --bf16 true \ |
| | --gradient_checkpointing true \ |
| | --attn_implementation flash_attention_2 \ |
| | --min_pixels 3136 \ |
| | --max_pixels 501760 \ |
| | --num_train_epochs 1 \ |
| | --run_name ${RUN_NAME} \ |
| | --save_steps 20 \ |
| | --save_only_model false \ |
| | --temporal true \ |
| | --len_control false \ |
| | --report_to wandb \ |
| | --beta 0.04 \ |
| | --max_grad_norm 5 \ |
| | --temperature 1.0 \ |
| | --num_generations 8 \ |
| | --vllm_device "cuda:7" \ |
| | --vllm_gpu_memory_utilization 0.7 \ |
| | --deepspeed ${DS_CONFIG} \ |
| | 2>&1 | tee "${OUTPUT_DIR}/training_log.txt" |
| |
|
| |
|
| | python /cq_1/share_1603164/user/zongxia/workspace/gpu_burn.py |