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.