put the shuffer into iter
This commit is contained in:
parent
dd32d0f636
commit
b5f1f89abf
|
@ -40,9 +40,9 @@ class TrainReader(object):
|
||||||
with open(self.label_file_path, "rb") as fin:
|
with open(self.label_file_path, "rb") as fin:
|
||||||
label_infor_list = fin.readlines()
|
label_infor_list = fin.readlines()
|
||||||
img_num = len(label_infor_list)
|
img_num = len(label_infor_list)
|
||||||
img_id_list = list(range(img_num))
|
img_id_list = list(range(img_num))
|
||||||
random.shuffle(img_id_list)
|
|
||||||
if sys.platform == "win32":
|
if sys.platform == "win32":
|
||||||
|
random.shuffle(img_id_list)
|
||||||
print("multiprocess is not fully compatible with Windows."
|
print("multiprocess is not fully compatible with Windows."
|
||||||
"num_workers will be 1.")
|
"num_workers will be 1.")
|
||||||
self.num_workers = 1
|
self.num_workers = 1
|
||||||
|
|
Loading…
Reference in New Issue