I am training a CNN model. I am using a dataframe which contains one column for the image path. The other columns(bbox, category,attributes) contains target labels stored as encoded list. The snippet of the dataframe is given here: The dataframe used for training
Now the keras.preprocessing.ImageDatagenerator.flow_from_dataframe
method in keras asks for the argumentclass_mode
. No class mode seem to work.
Can anyone guide me on what should be done to read target labels directly in form of vector?