-
Notifications
You must be signed in to change notification settings - Fork 37
Add a New Dataset
Eric Hofesmann edited this page Nov 15, 2019
·
2 revisions
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