Make sure you've implemented the dataset and placed it in maskrcnn/data/datasets/yourdataset.py (the implementation is referred to prw_dataset.py), remember to modify maskrcnn_benchmark/data/datasets/init.py
Add the relevant path and the parameters into maskrcnn_benchmark/config/paths_catalog.py
suppose you've trained an OIM on PRW, e.g., models/OIM,
modify configs/reid/PRW_R_50_C4.yaml:
DATASETS:
TRAIN: ("your_dataset_train", )
TEST: ("your_dataset_test", "your_dataset_query", )
If I want to use for testing other datasets, how to do it?