File size: 1,160 Bytes
749745d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
from .coco import COCODataset
from .voc import PascalVOCDataset
from .concat_dataset import ConcatDataset
from .background import Background
from .tsv import TSVDataset, ODTSVDataset

from .modulated_coco import ModulatedDataset, CocoDetection, CocoGrounding
from .flickr import FlickrDataset
from .refexp import RefExpDataset
from .mixed import MixedDataset
from .gqa import GQADataset

from .coco_dt import CocoDetectionTSV
from .caption import CaptionTSV
from .lvis import LvisDetection
from .pseudo_data import PseudoData
from .phrasecut import PhrasecutDetection
try:
    from .omnilabel import OmniLabelDataset
except:
    pass
__all__ = [
    "COCODataset",
    "TSVDataset",
    "ODTSVDataset",
    "ConcatDataset",
    "PascalVOCDataset",
    "Background",
    "ModulatedDataset",
    "MixedDataset",
    "CocoDetection",
    "FlickrDataset",
    "RefExpDataset",
    "GQADataset",
    "CocoDetectionTSV",
    "CocoGrounding",
    "CaptionTSV",
    "LvisDetection",
    "PseudoData",
    "PhrasecutDetection",
    "OmniLabelDataset",
]