请确认所有命令,以重现所有四个阶段。

作者: Kamlesh364创建于 2024年6月12日更新于 2024年6月12日

Stage 1: CUDA_VISIBLE_DEVICES=0 Python train_base.py \ --dataset-name videomatte240k \ --model-backbone resnet50 \ --model-name mattingbase-resnet50-videomatte240k \ --model-pretrain-initialization "pretraining/best_deeplabv3_resnet50_voc_os16.pth" \ --epoch-end 8

Stage 2: CUDA_VISIBLE_DEVICES=0 Python train_refine.py \ --dataset-name videomatte240k \ --model-backbone resnet50 \ --model-name mattingrefine-stage2-resnet50-videomatte240k \ --model-last-checkpoint "./checkpoint/mattingbase-resnet50-videomatte240k/epoch-7.pth" \ --epoch-end 1

Stage 3: CUDA_VISIBLE_DEVICES=0 Python train_refine.py \ --dataset-name photomatte13k \ --model-backbone resnet50 \ --model-name mattingrefine-stage3-resnet50-photomatte13k \ --model-last-checkpoint "./checkpoint/mattingbase-resnet50-videomatte240k/epoch-0.pth" \ --epoch-end 25

Stage 4: CUDA_VISIBLE_DEVICES=0 Python train_refine.py \ --dataset-name distinction \ --model-backbone resnet50 \ --model-name mattingrefine-stage4-resnet50-distinction \ --model-last-checkpoint "./checkpoint/mattingrefine-stage3-resnet50-photomatte13k/epoch-24.pth" \ --epoch-end 30

Also, when I use the Stage 2 command on GPUs(0,1,2,3)- Screenshot 2024-06-12 at 4 51 39 PM

Please verify if this is unusual!

内容来源: PeterL1n/BackgroundMattingV2