oscarknagg / few-shot

Repository for few-shot learning machine learning projects

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Error in importing config.py

decoder746 opened this issue · comments

I cloned your repository and then ran pip install -r requirements.txt. Downloaded the minImageNet and put in the directory ./data/miniImageNet/images. Changed the DATA_PATH in config.py to "./data/".
But when I run the command python3 scripts/prepare_mini_imagenet.py while staying in the root directory I get the error :-

Traceback (most recent call last):
  File "scripts/prepare_mini_imagenet.py", line 16, in <module>
    from config import DATA_PATH
ModuleNotFoundError: No module named 'config'

@oscarknagg could you tell where the error is.

You can add the following code to where the error occurred:

import sys
sys.path.append("..")
sys.path.extend([os.path.join(root, name) for root, dirs, _ in os.walk("../") for name in dirs])