I don't need all 80 classes from COCO. I need only 2 of them. And my own dataset consists of images of 2 classes. How to train ctdet in such a case if I really want to remove other classes from training process?
Hi,
Basically there are three steps to add new dataset:
src/lib/datasets/dataset. In most cases you can just copy src/lib/datasets/dataset/coco.py to your dataset name and change the category information, and annotation path.src/lib/datasets/dataset_factory.
Most helpful comment
Hi,
Basically there are three steps to add new dataset:
src/lib/datasets/dataset. In most cases you can just copysrc/lib/datasets/dataset/coco.pyto your dataset name and change the category information, and annotation path.src/lib/datasets/dataset_factory.