I have these lines in these files:
config.py:
from main import main as m
main.py:
from pycocoevalcap.cider.cider import Cider
pycocoevalcap/cider/cider.py:
from cider_scorer import CiderScorer
and in "cider_scorer.py" file, there is a class named "CiderScorer". but when I run "config.py" with CommandLine on Windows, I get this error:
ModuleNotFoundError: No module named 'cider_scorer'
I can't find what's wrong here?
this is the code: https://github.com/yicheng-w/CommonSenseMultiHopQA