/third_party/mindspore/tests/ut/python/dataset/ |
D | test_datasets_coco.py | 31 data1 = ds.CocoDataset(DATA_DIR, annotation_file=ANNOTATION_FILE, task="Detection", 69 data1 = ds.CocoDataset(DATA_DIR, annotation_file=ANNOTATION_FILE, task="Stuff", 115 data1 = ds.CocoDataset(DATA_DIR, annotation_file=KEYPOINT_FILE, task="Keypoint", 147 …data1 = ds.CocoDataset(DATA_DIR, annotation_file=PANOPTIC_FILE, task="Panoptic", decode=True, shuf… 180 data1 = ds.CocoDataset(DATA_DIR, annotation_file=ANNOTATION_FILE, task="Detection", 185 data2 = ds.CocoDataset(DATA_DIR, annotation_file=ANNOTATION_FILE, task="Stuff", 190 data3 = ds.CocoDataset(DATA_DIR, annotation_file=KEYPOINT_FILE, task="Keypoint", 195 data4 = ds.CocoDataset(DATA_DIR, annotation_file=PANOPTIC_FILE, task="Panoptic", 202 data1 = ds.CocoDataset(DATA_DIR, annotation_file=ANNOTATION_FILE, task="Detection", decode=True) 213 data1 = ds.CocoDataset(DATA_DIR, annotation_file=PANOPTIC_FILE, task="Panoptic", decode=True) [all …]
|
D | test_resize_with_bbox.py | 76 dataCOCO1 = ds.CocoDataset(DATA_DIR_2[0], annotation_file=DATA_DIR_2[1], task="Detection", 79 dataCOCO2 = ds.CocoDataset(DATA_DIR_2[0], annotation_file=DATA_DIR_2[1], task="Detection",
|
D | test_random_resize_with_bbox.py | 82 dataCoco1 = ds.CocoDataset(DATA_DIR_2[0], annotation_file=DATA_DIR_2[1], task="Detection", 85 dataCoco2 = ds.CocoDataset(DATA_DIR_2[0], annotation_file=DATA_DIR_2[1], task="Detection",
|
D | test_random_crop_and_resize_with_bbox.py | 80 dataCoco1 = ds.CocoDataset(DATA_DIR_COCO[0], annotation_file=DATA_DIR_COCO[1], task="Detection", 83 dataCoco2 = ds.CocoDataset(DATA_DIR_COCO[0], annotation_file=DATA_DIR_COCO[1], task="Detection",
|
D | test_random_horizontal_flip_with_bbox.py | 68 dataCoco1 = ds.CocoDataset(DATA_DIR_2[0], annotation_file=DATA_DIR_2[1], task="Detection", 71 dataCoco2 = ds.CocoDataset(DATA_DIR_2[0], annotation_file=DATA_DIR_2[1], task="Detection",
|
D | test_random_vertical_flip_with_bbox.py | 69 dataCoco1 = ds.CocoDataset(DATA_DIR_COCO[0], annotation_file=DATA_DIR_COCO[1], task="Detection", 72 dataCoco2 = ds.CocoDataset(DATA_DIR_COCO[0], annotation_file=DATA_DIR_COCO[1], task="Detection",
|
D | test_datasets_get_dataset_size.py | 179 dataset = ds.CocoDataset(COCO_DATA_DIR, annotation_file=ANNOTATION_FILE, task="Detection", 183 …dataset_shard_2_0 = ds.CocoDataset(COCO_DATA_DIR, annotation_file=ANNOTATION_FILE, task="Detection…
|
D | test_bounding_box_augment.py | 158 dataCoco1 = ds.CocoDataset(DATA_DIR_2[0], annotation_file=DATA_DIR_2[1], task="Detection", 161 dataCoco2 = ds.CocoDataset(DATA_DIR_2[0], annotation_file=DATA_DIR_2[1], task="Detection",
|
D | test_random_crop_with_bbox.py | 71 dataCoco1 = ds.CocoDataset(DATA_DIR_COCO[0], annotation_file=DATA_DIR_COCO[1], task="Detection", 74 dataCoco2 = ds.CocoDataset(DATA_DIR_COCO[0], annotation_file=DATA_DIR_COCO[1], task="Detection",
|
D | test_get_col_names.py | 56 data = ds.CocoDataset(COCO_DIR, annotation_file=COCO_ANNOTATION, task="Detection",
|
D | test_sampler_chain.py | 208 …data1 = ds.CocoDataset(COCO_DATA_DIR, annotation_file=ANNOTATION_FILE, task="Detection", decode=Tr…
|
D | test_cache_map.py | 232 …ds1 = ds.CocoDataset(COCO_DATA_DIR, annotation_file=COCO_ANNOTATION_FILE, task="Detection", decode… 1490 …ds1 = ds.CocoDataset(COCO_DATA_DIR, annotation_file=COCO_ANNOTATION_FILE, task="Detection", decode… 1526 …ds1 = ds.CocoDataset(COCO_DATA_DIR, annotation_file=COCO_ANNOTATION_FILE, task="Detection", decode…
|
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/include/dataset/ |
D | datasets.h | 1342 class CocoDataset : public Dataset { 1353 CocoDataset(const std::vector<char> &dataset_dir, const std::vector<char> &annotation_file, 1365 CocoDataset(const std::vector<char> &dataset_dir, const std::vector<char> &annotation_file, 1377 CocoDataset(const std::vector<char> &dataset_dir, const std::vector<char> &annotation_file, 1382 ~CocoDataset() = default; 1403 inline std::shared_ptr<CocoDataset> Coco(const std::string &dataset_dir, const std::string &annotat… 1408 …return std::make_shared<CocoDataset>(StringToChar(dataset_dir), StringToChar(annotation_file), Str… 1429 inline std::shared_ptr<CocoDataset> Coco(const std::string &dataset_dir, const std::string &annotat… 1433 …return std::make_shared<CocoDataset>(StringToChar(dataset_dir), StringToChar(annotation_file), Str… 1454 inline std::shared_ptr<CocoDataset> Coco(const std::string &dataset_dir, const std::string &annotat… [all …]
|
D | samplers.h | 39 friend class CocoDataset; variable
|
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/api/ |
D | datasets.cc | 981 CocoDataset::CocoDataset(const std::vector<char> &dataset_dir, const std::vector<char> &annotation_… in CocoDataset() function in mindspore::dataset::CocoDataset 989 CocoDataset::CocoDataset(const std::vector<char> &dataset_dir, const std::vector<char> &annotation_… in CocoDataset() function in mindspore::dataset::CocoDataset 997 CocoDataset::CocoDataset(const std::vector<char> &dataset_dir, const std::vector<char> &annotation_… in CocoDataset() function in mindspore::dataset::CocoDataset
|
/third_party/mindspore/mindspore/dataset/engine/ |
D | datasets.py | 5141 class CocoDataset(MappableDataset): class
|