maybeLx / MVSFormerPlusPlus

Codes of MVSFormer++: Revealing the Devil in Transformer’s Details for Multi-View Stereo (ICLR2024)
Apache License 2.0
107 stars 4 forks source link

Where to find the config file when finetuning on Blended? #6

Closed xingchen2022 closed 1 month ago

xingchen2022 commented 2 months ago

Thank you for your dedication to open-sourcing your work!

In the README file, the script for fine-tuning on the Blended dataset is provided as follows:

CUDA_VISIBLE_DEVICES=0,1,2,3 python train.py --config ./saved/models/DINOv2/mvsformer++/config_ft.json\
                                             --exp_name MVSFormer++_blendedmvs_dtu_mixed_M0 \
                                             --dataloader_type "BlendedLoader" \
                                             --data_path ${YOUR_BLENDEMVS_PATH} \
                                             --dtu_model_path ./saved/models/DINOv2/mvsformer++/model_best.pth \
                                             --finetune \
                                             --balanced_training \
                                             --DDP

I‘m wondering where to find the config_ft.json file, thanks in advance!