You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
587 B
Python
31 lines
587 B
Python
|
|
# Copyright (C) 2019 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
from datumaro.components.importers.datumaro import DatumaroImporter
|
|
|
|
from datumaro.components.importers.ms_coco import (
|
|
CocoImporter,
|
|
)
|
|
|
|
from datumaro.components.importers.voc import (
|
|
VocImporter,
|
|
VocResultsImporter,
|
|
)
|
|
|
|
from datumaro.components.importers.tfrecord import (
|
|
DetectionApiImporter,
|
|
)
|
|
|
|
|
|
items = [
|
|
('datumaro', DatumaroImporter),
|
|
|
|
('ms_coco', CocoImporter),
|
|
|
|
('voc', VocImporter),
|
|
('voc_results', VocResultsImporter),
|
|
|
|
('tf_detection_api', DetectionApiImporter),
|
|
] |