ttengwang / PDVC

End-to-End Dense Video Captioning with Parallel Decoding (ICCV 2021)
MIT License
200 stars 23 forks source link

Difference between para_METEOR and METEOR #20

Closed cyy-1102 closed 2 years ago

cyy-1102 commented 2 years ago

hello, professor~ I want to ask you what's the difference between para_METEOR and METEOR

ttengwang commented 2 years ago

Hi, METEOR calculates the sentence-level similarity between generated captions and GT.

Para_METEOR calculates the similarity between the generated paragraph and GT paragraph, where the paragraphs are formed by sorting captions based on their starting time

cyy-1102 commented 2 years ago

Hi, METEOR calculates the sentence-level similarity between generated captions and GT.

Para_METEOR calculates the similarity between the generated paragraph and GT paragraph, where the paragraphs are formed by sorting captions based on their starting time

Thank you very much for your reply! I recently used your baseline running experiment, I only focus on the performance of Dense Video Caption, can I ignore all the indicators with the prefix para_?Just focus on METEOR,Recall,Precision,soda_c?

ttengwang commented 2 years ago

Yes you can. The DVC task does not care about para_*.

cyy-1102 commented 2 years ago

Yes you can. The DVC task does not care about para_*.

thank you very much, professor!