vidit98's picture
demo files
2171e8f

Training OneFormer with Custom Datasets

OneFormer advocates the usage of panoptic annotations along with its task-conditioned joint training strategy. However, if panoptic annotations are not available, then also OneFormer can be trained using only the instance or semantic annotations on custom datasets. We provide some guidelines for training with custom datasets.

Register your New Dataset

  • OneFormer uses the information (class names, thing classes, etc.) stored in a dataset's metadata while preparing a dataset dictionary using a dataset_mapper.

  • Use Custom Datasets gives a deeper dive into registering a new custom dataset.

Training with Available Panoptic Annotations

  • To prepare the dataset dictionary for each iteration during training, OneFormer uses a dataset_mapper class.

  • Originally, we provide two dataset_mapper classes which support task-conditioned joint training using the panoptic annotations:

  • If you have panoptic annotations for your custom dataset, you may use these dataset_mapper classes directly after registering your dataset. You may also tune the task sampling probabilities in the corresponding config file.

  • If you want to train using only the instance or semantic annotation, please follow the next section on preparing a custom dataset mapper class.

Write a Custom Dataset Mapper Class

Now you are all set to train OneFormer using your custom dataset!