zju3dv / PVO

[CVPR 2023] PVO: Panoptic Visual Odometry
https://zju3dv.github.io/pvo/
209 stars 15 forks source link

VPS Training dataset problem #16

Open rscr1 opened 6 months ago

rscr1 commented 6 months ago

I am trying to train a VPS module using config file from guide (VPS_Module/configs/COCO-PanopticSegmentation/panoptic_fpn_R_50_3x_vkitti_511.yaml). And it contains

DATASETS:
  TRAIN: ("vkitti_511_train",)
  TEST: ("vkitti_511_val",)

But VPS_Module/detectron2/data/datasets/others.py doesn't contain vkitti_511_train

def register_others(root):
    register_vkitti_511_val()
    register_vkitti_clone()
    register_vkitti_test()

How i can fix this problem? thx