Home
last modified time | relevance | path

Searched refs:CocoDataset (Results 1 – 16 of 16) sorted by relevance

/third_party/mindspore/tests/ut/python/dataset/
Dtest_datasets_coco.py31 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 …]
Dtest_resize_with_bbox.py76 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",
Dtest_random_resize_with_bbox.py82 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",
Dtest_random_crop_and_resize_with_bbox.py80 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",
Dtest_random_horizontal_flip_with_bbox.py68 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",
Dtest_random_vertical_flip_with_bbox.py69 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",
Dtest_datasets_get_dataset_size.py179 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…
Dtest_bounding_box_augment.py158 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",
Dtest_random_crop_with_bbox.py71 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",
Dtest_get_col_names.py56 data = ds.CocoDataset(COCO_DIR, annotation_file=COCO_ANNOTATION, task="Detection",
Dtest_sampler_chain.py208 …data1 = ds.CocoDataset(COCO_DATA_DIR, annotation_file=ANNOTATION_FILE, task="Detection", decode=Tr…
Dtest_cache_map.py232 …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/
Ddatasets.h1342 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 …]
Dsamplers.h39 friend class CocoDataset; variable
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/api/
Ddatasets.cc981 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/
Ddatasets.py5141 class CocoDataset(MappableDataset): class