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
Hi, I see that when You create the BIWI dataset inside the following .py files:
/FSA-Net/data/TYY_create_db_biwi.py
/FSA-Net/data/TYY_create_db_biwi_70_30.py
you use this code structure
for num in range(0,24):
if num<9:
mypath_obj = mypath+'/0'+str(num+1)
else:
mypath_obj = mypath+'/'+str(num+1)
print(mypath_obj)
onlyfiles_txt_temp = [f for f in listdir(mypath_obj) if isfile(join(mypath_obj, f)) and join(mypath_obj, f).endswith('.txt')]
onlyfiles_png_temp = [f for f in listdir(mypath_obj) if isfile(join(mypath_obj, f)) and join(mypath_obj, f).endswith('.png')]
onlyfiles_txt_temp.sort()
onlyfiles_png_temp.sort()
onlyfiles_txt.append(onlyfiles_txt_temp)
onlyfiles_png.append(onlyfiles_png_temp)
print(len(onlyfiles_txt))
print(len(onlyfiles_png))
However when downloading the BIWI dataset my BIWI folder has only subfloders (\01,\02,\03,\04,\05).
I have downloaded the dataset from the same source you attached in the README file.
The text was updated successfully, but these errors were encountered:
Hi, I see that when You create the BIWI dataset inside the following .py files:
you use this code structure
However when downloading the BIWI dataset my BIWI folder has only subfloders (\01,\02,\03,\04,\05).
I have downloaded the dataset from the same source you attached in the README file.
The text was updated successfully, but these errors were encountered: