You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: