Add a New Dataset - MichiganCOG/ViP GitHub Wiki
Add a New Dataset
To add a new dataset:
- Convert annotation data to our JSON format
- Create a dataset class in
ViP/datasets/custom_dataset_name.py
.- Inherit
DetectionDataset
orRecognitionDataset
fromViP/abstract_dataset.py
- Complete
__init__
and__getitem__
functions - Example skeleton dataset can be found here
- Inherit