Missing images in the dataset
Opened this issue · 1 comments
Izumi-djq commented
Thank you very much for your sharing!
I get the dataset,but I found that some of the labels rated by workers without the corresponding images.
I really hope to get your help,thank you very much.
adam-narozniak commented
I experience the same issue. Here's a script to reproduce the issue:
import os
import pandas as pd
df = pd.read_csv('data/FLICKR-AES_image_labeled_by_each_worker.csv')
image_paths = df["image"].to_list()
non_existent_imgs = []
for image_path in image_paths:
if not os.path.exists(image_path):
non_existent_imgs.append(image_path)
len(set(non_existent_imgs))
Providing missing images would be super helpful. Thanks.