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, after I trained, I wanted to test it with the test set, but the test was reported incorrectly, please answer this question, thank you!
I changed this in dataset_builder.py to this, but the test reported an error:
dataset_list = os.path.join(dataset, '_trainval_list.txt') -----> dataset_list = os.path.join(dataset, '_test_list.txt')
Hello, after I trained, I wanted to test it with the test set, but the test was reported incorrectly, please answer this question, thank you!
I changed this in dataset_builder.py to this, but the test reported an error:
dataset_list = os.path.join(dataset, '_trainval_list.txt') -----> dataset_list = os.path.join(dataset, '_test_list.txt')
test_data_list = os.path.join(data_dir, dataset + '_val' + '_list.txt')----->test_data_list = os.path.join(data_dir, dataset + '_test' + '_list.txt')
error information:
IndexError:list index out of range
The text was updated successfully, but these errors were encountered: