feyzaakyurek / subspace-reg

Code for the ICLR2022 paper on Subspace Regularization for few-shot class incremental image classification
MIT License
26 stars 2 forks source link

How to run and reproduce experimental results #15

Closed ElifCerenGokYildirim closed 2 years ago

ElifCerenGokYildirim commented 2 years ago

Hi, Thanks for this great study. I would like to reproduce you experimental results but I am not sure which file to run to get the experimental results. I followed the instructions from the README file for downloading and extracting files. I ran thetrain_supervised.py file but got the following error: FileNotFoundError: [Errno 2] No such file or directory: './data/miniImageNet\miniImageNet_category_split_train_phase_train.pickle' It would be amazing if you could share how to use your code for reproducing the experiment results or using it for another datasets. Thank you so much!

feyzaakyurek commented 2 years ago

Hi @ElifCerenGok, glad that you found it interesting!

The path

'./data/miniImageNet\miniImageNet_category_split_train_phase_train.pickle'

seems to have both / and \. I think your system may be using \ to separate directories. If that's the case, you would need to set the path variables such as --data_root to be compatible with your system.

Hope this helps.