-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexample.sh
More file actions
executable file
·24 lines (19 loc) · 1.04 KB
/
example.sh
File metadata and controls
executable file
·24 lines (19 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Run Qwen2-VL-3D Training
python train_qwen2_vl_3d.py \
--lora_adapter_dir "/scratch/users/atacelen/official-code/training_checkpoints/lora_adapter/checkpoint-0" \
--data_dir "/scratch/users/atacelen/house_tour_dataset/Reconstructions3D" \
--diffuser_dir "/scratch/users/atacelen/official-code/checkpoints/residual-diffuser" \
--traj_data "/scratch/users/atacelen/diffuser/trajectories.jsonl"
# Run Qwen2-VL Supervised Fine-Tuning (SFT)
python train_qwen2_vl.py \
--data_dir "/scratch/users/atacelen/house_tour_dataset/Reconstructions3D" \
--output-dir "training_checkpoints/lora_adapter"
# Run Qwen2-VL-3D Evaluation
python eval_qwen2_vl_3d.py \
--model-path "/scratch/users/atacelen/official-code/checkpoints/qwen2-vl-3d" \
--traj-path "/scratch/users/atacelen/official-code/checkpoints/residual-diffuser" \
--traj-data "/scratch/users/atacelen/diffuser/trajectories.jsonl"
# Run Residual Diffuser Training
python -m scripts.train_residual_diffuser
# Run Residual Diffuser Testing
python -m scripts.test_residual_diffuser