No such file or directory: './data/vangogh2photo/trainB/2014-05-23'
Created by: shaoshenchen
在 trainA
文件夹中,文件格式为 数字.jpg ,例如 00454.jpg
在 trainB
文件夹中,文件格式为 日期 时间.jpg ,例如 2016-01-20 08:00:45.jpg
可是 data_reader.py
中的代码对于 trainB
中的图片只取了 日期.jpg 这种格式,导致报错
而我将代码中的
if len(line) > 1:
self.with_label = True
batch_out_label.append(line[1])
file = line[0]
改成
if len(line) > 1:
self.with_label = True
batch_out_label.append(line[1])
file = line[0] + " " + line[1]
后,新的错误又发生了
我不明白是我改动有误还是我一开始理解的不对?
我在AI Studio公开了项目,方便的话可以直接运行复现:https://aistudio.baidu.com/aistudio/projectdetail/597606
期待你们的回复~