tylin / coco-caption

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CIDEr

dr-costas opened this issue · comments

Hi,

The CIDEr metric calculated with this package is the CIDEr or the CIDEr-D?

Thnx!

Is it correct in "cider.py" ?

....
...
def compute_score(...):
....
for id in imgIds:
hypo = res[id]
ref = gts[id]

confusing..

Hi! Yes, hypo stands for hypotheses, which are the 'results' from methods that we want to evaluate, and ref stands for references which are the ground truth sentences we compare against.

Thanks! I just feel a little confused.