mindspore/tests/ut/python/dataset/test_paddeddataset.py

611 lines
22 KiB
Python
Raw Normal View History

2022-06-03 09:24:09 +08:00
# Copyright 2020-2022 Huawei Technologies Co., Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
from io import BytesIO
2020-08-20 22:32:12 +08:00
import copy
2020-07-30 10:20:33 +08:00
import os
import numpy as np
import pytest
from PIL import Image
2020-07-30 10:20:33 +08:00
import mindspore.dataset as ds
from mindspore.mindrecord import FileWriter
import mindspore.dataset.vision as V_C
2020-07-30 10:20:33 +08:00
FILES_NUM = 4
CV_DIR_NAME = "../data/mindrecord/testImageNetData"
2020-09-10 01:23:02 +08:00
2020-07-30 10:20:33 +08:00
def generator_5():
for i in range(0, 5):
yield (np.array([i]),)
2020-09-10 01:23:02 +08:00
2020-07-30 10:20:33 +08:00
def generator_8():
for i in range(5, 8):
yield (np.array([i]),)
2020-09-10 01:23:02 +08:00
2020-07-30 10:20:33 +08:00
def generator_10():
for i in range(0, 10):
yield (np.array([i]),)
2020-09-10 01:23:02 +08:00
2020-07-30 10:20:33 +08:00
def generator_20():
for i in range(10, 20):
yield (np.array([i]),)
2020-09-10 01:23:02 +08:00
2020-07-30 10:20:33 +08:00
def generator_30():
for i in range(20, 30):
yield (np.array([i]),)
def test_TFRecord_Padded():
2022-06-03 09:24:09 +08:00
"""
Feature: PaddedDataset
Description: Test padding PaddedDataset on TFRecordDataset
Expectation: Output is equal to the expected output
"""
data_dir = ["../data/dataset/test_tf_file_3_images/train-0000-of-0001.data"]
schema_dir = "../data/dataset/test_tf_file_3_images/datasetSchema.json"
2020-07-30 10:20:33 +08:00
result_list = [[159109, 2], [192607, 3], [179251, 4], [1, 5]]
verify_list = []
shard_num = 4
for i in range(shard_num):
2022-06-03 09:24:09 +08:00
data = ds.TFRecordDataset(data_dir, schema_dir, columns_list=["image"],
2020-07-30 10:20:33 +08:00
shuffle=False, shard_equal_rows=True)
padded_samples = [{'image': np.zeros(1, np.uint8)}, {'image': np.zeros(2, np.uint8)},
{'image': np.zeros(3, np.uint8)}, {'image': np.zeros(4, np.uint8)},
{'image': np.zeros(5, np.uint8)}]
padded_ds = ds.PaddedDataset(padded_samples)
concat_ds = data + padded_ds
testsampler = ds.DistributedSampler(num_shards=shard_num, shard_id=i, shuffle=False, num_samples=None)
concat_ds.use_sampler(testsampler)
shard_list = []
2020-09-05 10:56:38 +08:00
for item in concat_ds.create_dict_iterator(num_epochs=1, output_numpy=True):
2020-07-30 10:20:33 +08:00
shard_list.append(len(item['image']))
verify_list.append(shard_list)
assert verify_list == result_list
2020-09-10 01:23:02 +08:00
2020-07-30 10:20:33 +08:00
def test_GeneratorDataSet_Padded():
2022-06-03 09:24:09 +08:00
"""
Feature: PaddedDataset
Description: Test padding GeneratorDataset with another GeneratorDataset
Expectation: Output is equal to the expected output
"""
2020-07-30 10:20:33 +08:00
result_list = []
for i in range(10):
tem_list = []
tem_list.append(i)
2020-09-10 01:23:02 +08:00
tem_list.append(10 + i)
2020-07-30 10:20:33 +08:00
result_list.append(tem_list)
verify_list = []
data1 = ds.GeneratorDataset(generator_20, ["col1"])
data2 = ds.GeneratorDataset(generator_10, ["col1"])
data3 = data2 + data1
shard_num = 10
for i in range(shard_num):
distributed_sampler = ds.DistributedSampler(num_shards=shard_num, shard_id=i, shuffle=False, num_samples=None)
data3.use_sampler(distributed_sampler)
tem_list = []
2020-09-05 10:56:38 +08:00
for ele in data3.create_dict_iterator(num_epochs=1, output_numpy=True):
2020-07-30 10:20:33 +08:00
tem_list.append(ele['col1'][0])
verify_list.append(tem_list)
assert verify_list == result_list
2020-09-10 01:23:02 +08:00
2020-07-30 10:20:33 +08:00
def test_Reapeat_afterPadded():
2022-06-03 09:24:09 +08:00
"""
Feature: PaddedDataset
Description: Test padding PaddedDataset with another PaddedDataset
Expectation: Output is equal to the expected output
"""
2020-07-30 10:20:33 +08:00
result_list = [1, 3, 5, 7]
verify_list = []
data1 = [{'image': np.zeros(1, np.uint8)}, {'image': np.zeros(2, np.uint8)},
{'image': np.zeros(3, np.uint8)}, {'image': np.zeros(4, np.uint8)},
{'image': np.zeros(5, np.uint8)}]
data2 = [{'image': np.zeros(6, np.uint8)}, {'image': np.zeros(7, np.uint8)},
{'image': np.zeros(8, np.uint8)}]
ds1 = ds.PaddedDataset(data1)
ds2 = ds.PaddedDataset(data2)
ds3 = ds1 + ds2
testsampler = ds.DistributedSampler(num_shards=2, shard_id=0, shuffle=False, num_samples=None)
ds3.use_sampler(testsampler)
repeat_num = 2
ds3 = ds3.repeat(repeat_num)
2020-09-05 10:56:38 +08:00
for item in ds3.create_dict_iterator(num_epochs=1, output_numpy=True):
2020-07-30 10:20:33 +08:00
verify_list.append(len(item['image']))
assert verify_list == result_list * repeat_num
2020-09-10 01:23:02 +08:00
2020-07-30 10:20:33 +08:00
def test_bath_afterPadded():
2022-06-03 09:24:09 +08:00
"""
Feature: PaddedDataset
Description: Test padding PaddedDataset with another PaddedDataset followed by batch op
Expectation: Output is equal to the expected output
"""
2020-07-30 10:20:33 +08:00
data1 = [{'image': np.zeros(1, np.uint8)}, {'image': np.zeros(1, np.uint8)},
{'image': np.zeros(1, np.uint8)}, {'image': np.zeros(1, np.uint8)},
{'image': np.zeros(1, np.uint8)}]
data2 = [{'image': np.zeros(1, np.uint8)}, {'image': np.zeros(1, np.uint8)},
{'image': np.zeros(1, np.uint8)}]
ds1 = ds.PaddedDataset(data1)
ds2 = ds.PaddedDataset(data2)
ds3 = ds1 + ds2
testsampler = ds.DistributedSampler(num_shards=2, shard_id=0, shuffle=False, num_samples=None)
ds3.use_sampler(testsampler)
ds4 = ds3.batch(2)
assert sum([1 for _ in ds4]) == 2
2020-09-10 01:23:02 +08:00
2020-07-30 10:20:33 +08:00
def test_Unevenly_distributed():
2022-06-03 09:24:09 +08:00
"""
Feature: PaddedDataset
Description: Test padding PaddedDataset with another PaddedDataset that is unevenly distributed
Expectation: Output is equal to the expected output
"""
2020-07-30 10:20:33 +08:00
result_list = [[1, 4, 7], [2, 5, 8], [3, 6]]
verify_list = []
data1 = [{'image': np.zeros(1, np.uint8)}, {'image': np.zeros(2, np.uint8)},
{'image': np.zeros(3, np.uint8)}, {'image': np.zeros(4, np.uint8)},
{'image': np.zeros(5, np.uint8)}]
data2 = [{'image': np.zeros(6, np.uint8)}, {'image': np.zeros(7, np.uint8)},
{'image': np.zeros(8, np.uint8)}]
testsampler = ds.DistributedSampler(num_shards=4, shard_id=0, shuffle=False, num_samples=None, offset=1)
ds1 = ds.PaddedDataset(data1)
ds2 = ds.PaddedDataset(data2)
ds3 = ds1 + ds2
numShard = 3
for i in range(numShard):
tem_list = []
testsampler = ds.DistributedSampler(num_shards=numShard, shard_id=i, shuffle=False, num_samples=None)
ds3.use_sampler(testsampler)
2020-09-05 10:56:38 +08:00
for item in ds3.create_dict_iterator(num_epochs=1, output_numpy=True):
2020-07-30 10:20:33 +08:00
tem_list.append(len(item['image']))
verify_list.append(tem_list)
assert verify_list == result_list
2020-09-10 01:23:02 +08:00
2020-07-30 10:20:33 +08:00
def test_three_datasets_connected():
2022-06-03 09:24:09 +08:00
"""
Feature: PaddedDataset
Description: Test padding 3 connected GeneratorDatasets
Expectation: Output is equal to the expected output
"""
2020-07-30 10:20:33 +08:00
result_list = []
for i in range(10):
tem_list = []
tem_list.append(i)
tem_list.append(10 + i)
tem_list.append(20 + i)
result_list.append(tem_list)
verify_list = []
data1 = ds.GeneratorDataset(generator_10, ["col1"])
data2 = ds.GeneratorDataset(generator_20, ["col1"])
data3 = ds.GeneratorDataset(generator_30, ["col1"])
data4 = data1 + data2 + data3
shard_num = 10
for i in range(shard_num):
distributed_sampler = ds.DistributedSampler(num_shards=shard_num, shard_id=i, shuffle=False, num_samples=None)
data4.use_sampler(distributed_sampler)
tem_list = []
2020-09-05 10:56:38 +08:00
for ele in data4.create_dict_iterator(num_epochs=1, output_numpy=True):
2020-07-30 10:20:33 +08:00
tem_list.append(ele['col1'][0])
verify_list.append(tem_list)
assert verify_list == result_list
2020-09-10 01:23:02 +08:00
2020-07-30 10:20:33 +08:00
def test_raise_error():
2022-06-03 09:24:09 +08:00
"""
Feature: PaddedDataset
Description: Test padding a PaddedDataset after a batch op with a PaddedDataset, then apply sampler op
Expectation: Correct error is raised as expected
"""
added python api based on cpp api 1st draft of python iterator Added Cifar10 and Cifar100 pybind port Change pybind to use IR for Skip and Manifest Signed-off-by: alex-yuyue <yue.yu1@huawei.com> DatasetNode as a base for all IR nodes namespace change Fix the namespace issue and make ut tests work Signed-off-by: alex-yuyue <yue.yu1@huawei.com> Add VOCDataset !63 Added RandomDataset * Added RandomDataset add imagefolder ir Pybind switch: CelebA and UT !61 CLUE example with class definition * Merge branch 'python-api' of gitee.com:ezphlow/mindspore into clue_class_pybind * Passing testcases * Added CLUE, not working add ManifestDataset IR Signed-off-by: alex-yuyue <yue.yu1@huawei.com> Update Coco & VOC & TFReader, Update clang-format, Reorder datasets_binding !69 Add Generator and move c_dataset.Iterator to dataset.Iterator * Add GeneratorDataset to c_dataset * Add GeneratorDataset to c_dataset !67 Moving c_datasets and adding sampler wrapper * Need to add create() method in datasets.py * migration from c_dataset to dataset part 1 !71 Fix indent error * Fix indentation error !72 Fix c_api tests cases * Fix c_api tests cases !73 Added CSV Dataset * Added CSVDataset pybind switch: Take and CelebA fixes !75 move c_dataset functionality to datasets * Fixed existing testcases * Added working clue and imagefolder * Added sampler conversion from pybind * Added sampler creation !77 Add Python API tree * Python API tree add minddataset TextFileDataset pybind Rename to skip test_concat.py and test_minddataset_exception.py !80 Add batch IR to python-api branch, most test cases work * staging III * staging, add pybind Enable more c_api take and CelebA tests; delete util_c_api !84 Schema changes in datasets.py * Schema changes !85 Remove input_indexes from sub-classes * remove input_index from each subclass !83 Remove C datasets * Removed c_dataset package * Remove c_datasets !82 pybind switch: shuffle * pybind switch: shuffle !86 Add build_vocab * Add build_vocab Rebase with upstream/master _shuffle conflict BatchNode error !88 Fix rebase problem * fix rebase problem Enable more unit tests; code typo/nit fixes !91 Fix python vocag hang * Fix python vocab hang !89 Added BucketBatchByLength Pybind switch * Added BucketBatchByLength Update and enable more tet_c_api_*.py tests !95 Add BuildSentencePeiceVocab * - Add BuildSentencePeiceVocab !96 Fix more tests * - Fix some tests - Enable more test_c_api_* - Add syncwait !99 pybind switch for device op * pybind switch for device op !93 Add getters to python API * Add getters to python API !101 Validate tree, error if graph * - Add sync wait !103 TFrecord/Random Datasets schema problem * - TfRecord/Random schem aproblem !102 Added filter pybind switch * Added Filter pybind switch !104 Fix num_samples * - TfRecord/Random schem aproblem !105 Fix to_device hang * Fix to_device hang !94 Adds Cache support for CLUE dataset * Added cache for all dataset ops * format change * Added CLUE cache support * Added Cache conversion Add save pybind fix compile err init modify concat_node !107 Fix some tests cases * Fix tests cases Enable and fix more tests !109 pybind switch for get dataset size * pybind_get_dataset_size some check-code fixes for pylint, cpplint and clang-format !113 Add callback * revert * dataset_sz 1 line * fix typo * get callback to work !114 Make Android compile clean * Make Android Compile Clean Fix build issues due to rebase !115 Fix more tests * Fix tests cases * !93 Add getters to python API fix test_profiling.py !116 fix get dataset size * fix get dataset size !117 GetColumnNames pybind switch * Added GetColumnNames pybind switch code-check fixes: clangformat, cppcheck, cpplint, pylint Delete duplicate test_c_api_*.py files; more lint fixes !121 Fix cpp tests * Remove extra call to getNext in cpp tests !122 Fix Schema with Generator * Fix Schema with Generator fix some cases of csv & mindrecord !124 fix tfrecord get_dataset_size and add some UTs * fix tfrecord get dataset size and add some ut for get_dataset_size !125 getter separation * Getter separation !126 Fix sampler.GetNumSamples * Fix sampler.GetNumSampler !127 Assign runtime getter to each get function * Assign runtime getter to each get function Fix compile issues !128 Match master code * Match master code !129 Cleanup DeviceOp/save code * Cleanup ToDevice/Save code !130 Add cache fix * Added cache fix for map and image folder !132 Fix testing team issues * Pass queue_name from python to C++ * Add Schema.from_json !131 Fix Cache op issues and delete de_pipeline * Roll back C++ change * Removed de_pipeline and passing all cache tests. * fixed cache tests !134 Cleanup datasets.py part1 * Cleanup dataset.py part1 !133 Updated validation for SentencePieceVocab.from_dataset * Added type_check for column names in SentencePieceVocab.from_dataset Rebase on master 181120 10:20 fix profiling temporary solution of catching stauts from Node.Build() !141 ToDevice Termination * ToDevice termination pylint fixes !137 Fix test team issues and add some corresponding tests * Fix test team issues and add some corresponding tests !138 TreeGetter changes to use OptPass * Getter changes to use OptPass (Zirui) Rebase fix !143 Fix cpplint issue * Fix cpplint issue pylint fixes in updated testcases !145 Reset exceptions testcase * reset exception test to master !146 Fix Check_Pylint Error * Fix Check_Pylint Error !147 fix android * fix android !148 ToDevice changes * Add ToDevice to the iterator List for cleanup at exit !149 Pylint issue * Add ToDevice to the iterator List for cleanup at exit !150 Pylint 2 * Add ToDevice to the iterator List for cleanup at exit !152 ExecutionTree error * ET destructor error !153 in getter_pass, only remove callback, without deleting map op * getter pass no longer removes map !156 early __del__ of iterator/to_device * early __del__ of iterator !155 Address review comments Eric 1 * Added one liner fix to validators.py * roll back signature fix * lint fix * Eric Address comments 2 * C++ lint fix * Address comments Eric 1 !158 Review rework for dataset bindings - part 1 * Reorder nodes repeat and rename * Review rework for dataset bindings - part 1 !154 Fixing minor problems in the comments (datasets.py, python_tree_consumer.cc, iterators_bindings.cc, and iterators.py) * Fixing minor problems in the comments (datasets.py, python_tree_consum… !157 add replace none * Add replace_none to datasets.py, address comments in tests Trying to resolve copy Override the deepcopy method of deviceop Create_ir_tree method Create_ir_tree method 2 Create_ir_tree method 2 del to_device if already exists del to_device if already exists cache getters shapes and types Added yolov3 relaxation, to be rolled back Get shapes and types together bypass yolo NumWorkers for MapOp revert Yolo revert Thor Print more info Debug code: Update LOG INFO to LOG ERROR do not remove epochctrl for getter pass Remove repeat(1) pritn batch size add log to tree_consumer and device_queue op Revert PR 8744 Signed-off-by: alex-yuyue <yue.yu1@huawei.com> __del__ toDEvice __del__ toDevice2 !165 add ifndef ENABLE_ANDROID to device queue print * Add ifndef ENABLE_ANDROID to device queue print revert some changes !166 getter: get_data_info * getter: get_data_info !168 add back tree print * revert info to warnning in one log * add back the missed print tree log Release GIL in GetDataInfo
2020-07-17 05:34:09 +08:00
data1 = [{'image': np.zeros(0, np.uint8)}, {'image': np.zeros(0, np.uint8)},
{'image': np.zeros(0, np.uint8)}, {'image': np.zeros(0, np.uint8)},
{'image': np.zeros(0, np.uint8)}]
data2 = [{'image': np.zeros(0, np.uint8)}, {'image': np.zeros(0, np.uint8)},
{'image': np.zeros(0, np.uint8)}]
2020-07-30 10:20:33 +08:00
ds1 = ds.PaddedDataset(data1)
ds4 = ds1.batch(2)
ds2 = ds.PaddedDataset(data2)
ds3 = ds4 + ds2
with pytest.raises(TypeError) as excinfo:
testsampler = ds.DistributedSampler(num_shards=2, shard_id=0, shuffle=False, num_samples=None)
ds3.use_sampler(testsampler)
assert excinfo.type == 'TypeError'
with pytest.raises(TypeError) as excinfo:
otherSampler = ds.SequentialSampler()
ds3.use_sampler(otherSampler)
assert excinfo.type == 'TypeError'
with pytest.raises(ValueError) as excinfo:
testsampler = ds.DistributedSampler(num_shards=2, shard_id=0, shuffle=True, num_samples=None)
ds3.use_sampler(testsampler)
assert excinfo.type == 'ValueError'
with pytest.raises(ValueError) as excinfo:
testsampler = ds.DistributedSampler(num_shards=2, shard_id=0, shuffle=False, num_samples=5)
ds3.use_sampler(testsampler)
assert excinfo.type == 'ValueError'
2020-09-12 15:02:54 +08:00
def test_imagefolder_error():
2022-06-03 09:24:09 +08:00
"""
Feature: PaddedDataset
Description: Test padding an ImageFolderDataset with num_samples with PaddedDataset
Expectation: Error is raised as expected
"""
data_dir = "../data/dataset/testPK/data"
data = ds.ImageFolderDataset(data_dir, num_samples=14)
2020-09-12 15:02:54 +08:00
data1 = [{'image': np.zeros(1, np.uint8), 'label': np.array(0, np.int32)},
{'image': np.zeros(2, np.uint8), 'label': np.array(1, np.int32)},
{'image': np.zeros(3, np.uint8), 'label': np.array(0, np.int32)},
{'image': np.zeros(4, np.uint8), 'label': np.array(1, np.int32)},
{'image': np.zeros(5, np.uint8), 'label': np.array(0, np.int32)},
{'image': np.zeros(6, np.uint8), 'label': np.array(1, np.int32)}]
data2 = ds.PaddedDataset(data1)
data3 = data + data2
with pytest.raises(ValueError) as excinfo:
testsampler = ds.DistributedSampler(num_shards=5, shard_id=4, shuffle=False, num_samples=None)
data3.use_sampler(testsampler)
assert excinfo.type == 'ValueError'
2020-09-10 01:23:02 +08:00
def test_imagefolder_padded():
2022-06-03 09:24:09 +08:00
"""
Feature: PaddedDataset
Description: Test padding an ImageFolderDataset without num_samples with PaddedDataset
Expectation: Output is equal to the expected output
"""
data_dir = "../data/dataset/testPK/data"
data = ds.ImageFolderDataset(data_dir)
2020-07-30 10:20:33 +08:00
data1 = [{'image': np.zeros(1, np.uint8), 'label': np.array(0, np.int32)},
{'image': np.zeros(2, np.uint8), 'label': np.array(1, np.int32)},
{'image': np.zeros(3, np.uint8), 'label': np.array(0, np.int32)},
{'image': np.zeros(4, np.uint8), 'label': np.array(1, np.int32)},
{'image': np.zeros(5, np.uint8), 'label': np.array(0, np.int32)},
{'image': np.zeros(6, np.uint8), 'label': np.array(1, np.int32)}]
data2 = ds.PaddedDataset(data1)
data3 = data + data2
testsampler = ds.DistributedSampler(num_shards=5, shard_id=4, shuffle=False, num_samples=None)
data3.use_sampler(testsampler)
assert sum([1 for _ in data3]) == 10
verify_list = []
2020-09-05 10:56:38 +08:00
for ele in data3.create_dict_iterator(num_epochs=1, output_numpy=True):
2020-07-30 10:20:33 +08:00
verify_list.append(len(ele['image']))
assert verify_list[8] == 1
assert verify_list[9] == 6
2020-09-10 01:23:02 +08:00
def test_imagefolder_padded_with_decode():
2022-06-03 09:24:09 +08:00
"""
Feature: PaddedDataset
Description: Test padding an ImageFolderDataset with PaddedDataset followed by a Decode op
Expectation: Output is equal to the expected output
"""
2020-08-18 23:31:11 +08:00
num_shards = 5
count = 0
for shard_id in range(num_shards):
2022-06-03 09:24:09 +08:00
data_dir = "../data/dataset/testPK/data"
data = ds.ImageFolderDataset(data_dir)
2020-08-18 23:31:11 +08:00
white_io = BytesIO()
Image.new('RGB', (224, 224), (255, 255, 255)).save(white_io, 'JPEG')
padded_sample = {}
padded_sample['image'] = np.array(bytearray(white_io.getvalue()), dtype='uint8')
padded_sample['label'] = np.array(-1, np.int32)
2020-08-18 23:31:11 +08:00
white_samples = [padded_sample, padded_sample, padded_sample, padded_sample]
data2 = ds.PaddedDataset(white_samples)
data3 = data + data2
2020-08-18 23:31:11 +08:00
testsampler = ds.DistributedSampler(num_shards=num_shards, shard_id=shard_id, shuffle=False, num_samples=None)
data3.use_sampler(testsampler)
2020-09-10 01:23:02 +08:00
data3 = data3.map(operations=V_C.Decode(), input_columns="image")
2020-08-18 23:31:11 +08:00
shard_sample_count = 0
2020-09-05 10:56:38 +08:00
for ele in data3.create_dict_iterator(num_epochs=1, output_numpy=True):
2020-08-18 23:31:11 +08:00
print("label: {}".format(ele['label']))
count += 1
shard_sample_count += 1
assert shard_sample_count in (9, 10)
assert count == 48
2020-09-10 01:23:02 +08:00
2020-08-18 23:31:11 +08:00
def test_imagefolder_padded_with_decode_and_get_dataset_size():
2022-06-03 09:24:09 +08:00
"""
Feature: PaddedDataset
Description: Test padding an ImageFolderDataset with PaddedDataset followed by get_dataset_size and a Decode op
Expectation: Output is equal to the expected output
"""
num_shards = 5
count = 0
for shard_id in range(num_shards):
2022-06-03 09:24:09 +08:00
data_dir = "../data/dataset/testPK/data"
data = ds.ImageFolderDataset(data_dir)
2020-08-18 23:31:11 +08:00
white_io = BytesIO()
Image.new('RGB', (224, 224), (255, 255, 255)).save(white_io, 'JPEG')
padded_sample = {}
padded_sample['image'] = np.array(bytearray(white_io.getvalue()), dtype='uint8')
padded_sample['label'] = np.array(-1, np.int32)
white_samples = [padded_sample, padded_sample, padded_sample, padded_sample]
data2 = ds.PaddedDataset(white_samples)
data3 = data + data2
testsampler = ds.DistributedSampler(num_shards=num_shards, shard_id=shard_id, shuffle=False, num_samples=None)
data3.use_sampler(testsampler)
2020-08-18 23:31:11 +08:00
shard_dataset_size = data3.get_dataset_size()
2020-09-10 01:23:02 +08:00
data3 = data3.map(operations=V_C.Decode(), input_columns="image")
2020-08-18 23:31:11 +08:00
shard_sample_count = 0
2020-09-05 10:56:38 +08:00
for ele in data3.create_dict_iterator(num_epochs=1, output_numpy=True):
print("label: {}".format(ele['label']))
count += 1
2020-08-18 23:31:11 +08:00
shard_sample_count += 1
assert shard_sample_count in (9, 10)
assert shard_dataset_size == shard_sample_count
assert count == 48
2020-09-10 01:23:02 +08:00
2020-07-30 10:20:33 +08:00
def test_more_shard_padded():
2022-06-03 09:24:09 +08:00
"""
Feature: PaddedDataset
Description: Test padding GeneratorDataset with another GeneratorDataset and
PaddedDataset with another PaddedDataset with larger num_shards used
Expectation: Output is equal to the expected output
"""
2020-07-30 10:20:33 +08:00
result_list = []
for i in range(8):
result_list.append(1)
result_list.append(0)
data1 = ds.GeneratorDataset(generator_5, ["col1"])
data2 = ds.GeneratorDataset(generator_8, ["col1"])
data3 = data1 + data2
vertifyList = []
numShard = 9
for i in range(numShard):
tem_list = []
testsampler = ds.DistributedSampler(num_shards=numShard, shard_id=i, shuffle=False, num_samples=None)
data3.use_sampler(testsampler)
2020-09-05 10:56:38 +08:00
for item in data3.create_dict_iterator(num_epochs=1, output_numpy=True):
2020-07-30 10:20:33 +08:00
tem_list.append(item['col1'])
vertifyList.append(tem_list)
assert [len(ele) for ele in vertifyList] == result_list
vertifyList1 = []
result_list1 = []
for i in range(8):
2020-09-10 01:23:02 +08:00
result_list1.append([i + 1])
2020-07-30 10:20:33 +08:00
result_list1.append([])
data1 = [{'image': np.zeros(1, np.uint8)}, {'image': np.zeros(2, np.uint8)},
{'image': np.zeros(3, np.uint8)}, {'image': np.zeros(4, np.uint8)},
{'image': np.zeros(5, np.uint8)}]
data2 = [{'image': np.zeros(6, np.uint8)}, {'image': np.zeros(7, np.uint8)},
{'image': np.zeros(8, np.uint8)}]
ds1 = ds.PaddedDataset(data1)
ds2 = ds.PaddedDataset(data2)
ds3 = ds1 + ds2
for i in range(numShard):
tem_list = []
testsampler = ds.DistributedSampler(num_shards=numShard, shard_id=i, shuffle=False, num_samples=None)
ds3.use_sampler(testsampler)
2020-09-05 10:56:38 +08:00
for item in ds3.create_dict_iterator(num_epochs=1, output_numpy=True):
2020-07-30 10:20:33 +08:00
tem_list.append(len(item['image']))
vertifyList1.append(tem_list)
assert vertifyList1 == result_list1
2020-09-10 01:23:02 +08:00
2020-07-30 10:20:33 +08:00
def get_data(dir_name):
"""
usage: get data from imagenet dataset
params:
dir_name: directory containing folder images and annotation information
"""
if not os.path.isdir(dir_name):
raise IOError("Directory {} not exists".format(dir_name))
img_dir = os.path.join(dir_name, "images")
ann_file = os.path.join(dir_name, "annotation.txt")
with open(ann_file, "r") as file_reader:
lines = file_reader.readlines()
data_list = []
for i, line in enumerate(lines):
try:
filename, label = line.split(",")
label = label.strip("\n")
with open(os.path.join(img_dir, filename), "rb") as file_reader:
img = file_reader.read()
data_json = {"id": i,
"file_name": filename,
"data": img,
"label": int(label)}
data_list.append(data_json)
except FileNotFoundError:
continue
return data_list
2020-09-10 01:23:02 +08:00
2020-07-30 10:20:33 +08:00
@pytest.fixture(name="remove_mindrecord_file")
def add_and_remove_cv_file():
"""add/remove cv file"""
2021-10-19 16:52:57 +08:00
file_name = os.environ.get('PYTEST_CURRENT_TEST').split(':')[-1].split(' ')[0]
paths = ["{}{}".format(file_name, str(x).rjust(1, '0'))
2020-07-30 10:20:33 +08:00
for x in range(FILES_NUM)]
try:
for x in paths:
if os.path.exists("{}".format(x)):
os.remove("{}".format(x))
if os.path.exists("{}.db".format(x)):
os.remove("{}.db".format(x))
2021-10-19 16:52:57 +08:00
writer = FileWriter(file_name, FILES_NUM)
2020-07-30 10:20:33 +08:00
data = get_data(CV_DIR_NAME)
cv_schema_json = {"id": {"type": "int32"},
"file_name": {"type": "string"},
"label": {"type": "int32"},
"data": {"type": "bytes"}}
writer.add_schema(cv_schema_json, "img_schema")
writer.add_index(["file_name", "label"])
writer.write_raw_data(data)
writer.commit()
yield "yield_cv_data"
except Exception as error:
for x in paths:
os.remove("{}".format(x))
os.remove("{}.db".format(x))
raise error
else:
for x in paths:
os.remove("{}".format(x))
os.remove("{}.db".format(x))
2020-09-10 01:23:02 +08:00
2020-07-30 10:20:33 +08:00
def test_Mindrecord_Padded(remove_mindrecord_file):
2022-06-03 09:24:09 +08:00
"""
Feature: PaddedDataset
Description: Test padding an MindDataset with PaddedDataset
Expectation: Output is equal to the expected output
"""
2020-07-30 10:20:33 +08:00
result_list = []
verify_list = [[1, 2], [3, 4], [5, 11], [6, 12], [7, 13], [8, 14], [9], [10]]
num_readers = 4
2021-10-19 16:52:57 +08:00
file_name = os.environ.get('PYTEST_CURRENT_TEST').split(':')[-1].split(' ')[0]
data_set = ds.MindDataset(file_name + "0", ['file_name'], num_readers, shuffle=False)
2020-07-30 10:20:33 +08:00
data1 = [{'file_name': np.array(b'image_00011.jpg', dtype='|S15')},
{'file_name': np.array(b'image_00012.jpg', dtype='|S15')},
{'file_name': np.array(b'image_00013.jpg', dtype='|S15')},
{'file_name': np.array(b'image_00014.jpg', dtype='|S15')}]
ds1 = ds.PaddedDataset(data1)
ds2 = data_set + ds1
shard_num = 8
for i in range(shard_num):
testsampler = ds.DistributedSampler(num_shards=shard_num, shard_id=i, shuffle=False, num_samples=None)
ds2.use_sampler(testsampler)
tem_list = []
2020-09-05 10:56:38 +08:00
for ele in ds2.create_dict_iterator(num_epochs=1, output_numpy=True):
2020-07-30 10:20:33 +08:00
tem_list.append(int(ele['file_name'].tostring().decode().lstrip('image_').rstrip('.jpg')))
result_list.append(tem_list)
assert result_list == verify_list
2020-09-10 01:23:02 +08:00
2020-08-20 22:32:12 +08:00
def test_clue_padded_and_skip_with_0_samples():
"""
2022-06-03 09:24:09 +08:00
Feature: PaddedDataset
Description: Test padding a CLUEDataset with PaddedDataset with and without samples
Expectation: Output is equal to the expected output except when dataset has no samples, in which error is raised
2020-08-20 22:32:12 +08:00
"""
TRAIN_FILE = '../data/dataset/testCLUE/afqmc/train.json'
data = ds.CLUEDataset(TRAIN_FILE, task='AFQMC', usage='train')
count = 0
2020-09-05 10:56:38 +08:00
for _ in data.create_dict_iterator(num_epochs=1, output_numpy=True):
2020-08-20 22:32:12 +08:00
count += 1
assert count == 3
data_copy1 = copy.deepcopy(data)
sample = {"label": np.array(1, np.string_),
"sentence1": np.array(1, np.string_),
"sentence2": np.array(1, np.string_)}
samples = [sample]
padded_ds = ds.PaddedDataset(samples)
dataset = data + padded_ds
testsampler = ds.DistributedSampler(num_shards=2, shard_id=1, shuffle=False, num_samples=None)
dataset.use_sampler(testsampler)
assert dataset.get_dataset_size() == 2
count = 0
2020-09-05 10:56:38 +08:00
for data in dataset.create_dict_iterator(num_epochs=1, output_numpy=True):
2020-08-20 22:32:12 +08:00
count += 1
assert count == 2
2020-09-10 01:23:02 +08:00
dataset = dataset.skip(count=2) # dataset2 has none samples
2020-08-20 22:32:12 +08:00
count = 0
2020-09-05 10:56:38 +08:00
for data in dataset.create_dict_iterator(num_epochs=1, output_numpy=True):
2020-08-20 22:32:12 +08:00
count += 1
assert count == 0
2020-11-12 23:44:17 +08:00
with pytest.raises(ValueError, match="There are no samples in the "):
2020-08-20 22:32:12 +08:00
dataset = dataset.concat(data_copy1)
count = 0
2020-09-05 10:56:38 +08:00
for data in dataset.create_dict_iterator(num_epochs=1, output_numpy=True):
2020-08-20 22:32:12 +08:00
count += 1
assert count == 2
2020-07-30 10:20:33 +08:00
2020-09-10 01:23:02 +08:00
def test_celeba_padded():
2022-06-03 09:24:09 +08:00
"""
Feature: PaddedDataset
Description: Test padding an CelebADataset with PaddedDataset
Expectation: Output is equal to the expected output
"""
data = ds.CelebADataset("../data/dataset/testCelebAData/")
padded_samples = [{'image': np.zeros(1, np.uint8), 'attr': np.zeros(1, np.uint32)}]
padded_ds = ds.PaddedDataset(padded_samples)
data = data + padded_ds
dis_sampler = ds.DistributedSampler(num_shards=2, shard_id=1, shuffle=False, num_samples=None)
data.use_sampler(dis_sampler)
data = data.repeat(2)
count = 0
2020-08-04 22:10:18 +08:00
for _ in data.create_dict_iterator(num_epochs=1, output_numpy=True):
count = count + 1
assert count == 4
2020-09-10 01:23:02 +08:00
2020-07-30 10:20:33 +08:00
if __name__ == '__main__':
test_TFRecord_Padded()
test_GeneratorDataSet_Padded()
test_Reapeat_afterPadded()
test_bath_afterPadded()
test_Unevenly_distributed()
test_three_datasets_connected()
test_raise_error()
2022-06-03 09:24:09 +08:00
test_imagefolder_padded()
2020-07-30 10:20:33 +08:00
test_more_shard_padded()
test_Mindrecord_Padded(add_and_remove_cv_file)