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
DetectionDatasetorRecognitionDatasetfromViP/abstract_dataset.py - Complete
__init__and__getitem__functions - Example skeleton dataset can be found here
- Inherit