2024 NICE : New frontiers for zero-shot Image Captioning Evaluation Forum

Go back to competition Back to thread list Post in this thread

> What is the encoding method of the file candidate_captions.csv in track 2, and the file cannot be parsed every time the file is read

What is the encoding method of the file candidate_captions.csv in track 2, and the file cannot be parsed every time the file is read

Posted by: LIDADA @ Feb. 22, 2024, 1:38 a.m.

Hi,

You can simply use pandas library to open the csv file as below:

import pandas as pd
df = ps.read_csv(filename)

Then, you'll see columns with their names as 'id', 'filename', and then 'captionX'.

Posted by: p.ahn @ Feb. 27, 2024, 6:49 a.m.
Post in this thread