hi,when I run : python tools/evals.py --model model.pth --infos_path infos.pkl --image_folder blah --num_images 10.it tell me no such file or directory:"infos.pkl".so I find csdn tell me that 如果文件夹路径不存在,则创建文件夹路径.
def init(self,path='./'):
save the path
self.path=path
if not os.path.exists(path):
os.mkdir(path)
and then I do the same,but still have this error. would you tell me how to solve it?
hi,when I run : python tools/evals.py --model model.pth --infos_path infos.pkl --image_folder blah --num_images 10.it tell me no such file or directory:"infos.pkl".so I find csdn tell me that 如果文件夹路径不存在,则创建文件夹路径. def init(self,path='./'):
save the path
and then I do the same,but still have this error. would you tell me how to solve it?