Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

coco_detection.py 467 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
  1. from super_gradients.training.datasets.detection_datasets.detection_dataset import DetectionDataSet
  2. from super_gradients.training.datasets.datasets_conf import COCO_DETECTION_CLASSES_LIST
  3. class COCODetectionDataSet(DetectionDataSet):
  4. """
  5. COCODetectionDataSet - Detection Data Set Class COCO Data Set
  6. """
  7. def __init__(self, *args, **kwargs):
  8. kwargs['all_classes_list'] = COCO_DETECTION_CLASSES_LIST
  9. super().__init__(*args, **kwargs)
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...