-
Notifications
You must be signed in to change notification settings - Fork 69
Description
when I try execult
video ='IIR1DIS75T1.mp4'
DLCscorer= 'IIR1DIS75T1DLC_resnet50_APNov2shuffle1_190000_filtered'
dataname = str(Path(video).stem) + DLCscorer + '.h5'
#loading output of DLC
Dataframe = pd.read_hdf(os.path.join(dataname))
this erro is show
FileNotFoundError Traceback (most recent call last)
in
4
5 #loading output of DLC
----> 6 Dataframe = pd.read_hdf(os.path.join(dataname))
/usr/local/lib/python3.7/dist-packages/pandas/io/pytables.py in read_hdf(path_or_buf, key, mode, errors, where, start, stop, columns, iterator, chunksize, **kwargs)
425
426 if not exists:
--> 427 raise FileNotFoundError(f"File {path_or_buf} does not exist")
428
429 store = HDFStore(path_or_buf, mode=mode, errors=errors, **kwargs)
FileNotFoundError: File IIR1DIS75T1IIR1DIS75T1DLC_resnet50_APNov2shuffle1_190000_filtered.h5 does not exist