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
Hello! Thank you for your great work! I could run the notebook you provided successfully. However, a problem arose when I changed the backbone to "resnet101".
First It could not find the 'dataset/classInd_hmdb_ucf.txt':
in main(opt)
11 ##=== preparing ===#
12 class_file = '%s/classInd_%s.txt' % (opt.data_root,opt.dataset)
---> 13 class_names = [line.strip().split(' ', 1)[1] for line in open(class_file)]
14 opt.num_class = len(class_names)
FileNotFoundError: [Errno 2] No such file or directory: 'dataset/classInd_hmdb_ucf.txt'
Then I made this chage:
##=== preparing ===#
class_file = '%s/classInd_%s.txt' % (opt.data_root,opt.dataset)
# '/home/gpulab2/muhiddin/TranSVAE/dataset/classInd_hmdb_ucf.txt'
class_names = [line.strip().split(' ', 1)[1] for line in open(class_file)]
opt.num_class = len(class_names)
Then it could not find the related train and val files:
The text was updated successfully, but these errors were encountered:
Hello! Thank you for your great work! I could run the notebook you provided successfully. However, a problem arose when I changed the backbone to "resnet101".
First It could not find the 'dataset/classInd_hmdb_ucf.txt':
in main(opt)
11 ##=== preparing ===#
12 class_file = '%s/classInd_%s.txt' % (opt.data_root,opt.dataset)
---> 13 class_names = [line.strip().split(' ', 1)[1] for line in open(class_file)]
14 opt.num_class = len(class_names)
FileNotFoundError: [Errno 2] No such file or directory: 'dataset/classInd_hmdb_ucf.txt'
Then I made this chage:
Then it could not find the related train and val files:
The text was updated successfully, but these errors were encountered: