I’ve been using load_dataset("imagefolder", data_dir="...") to load a local dataset of images and assign a series of labels from an included metadata.csv file for multi-label image classification.
However, I uploaded that dataset to the Hub and now load it in using load_dataset("hf_name",data_dir="...") but since I have to specify the Hub directory name instead of “imagefolder” for the path parameter, the labels in metadata.csv aren’t being assigned anymore.
Is there a way to fix this?