The model takes four inputs and gives one output. Among those four inputs two is numerical data, one is categorical and another one is image. The output is binary (0 or 1). I need to create a custom data generator which can take those inputs from the dataframe and feed those into the model.
I feed the images into CNN model. The image dataset is too large to feed into the model without using a data generator.
How can I feed those images into the model by batches ? It will be very helpful if I can learn how to create custom data generators according to any specific model.
Thank You.
you might not need to use tf.keras.utils.Sequence. I think you can go about it using ImageDataGenerator.flow_from_dataframe. Lets assume you have a dataframe called df with the following columns:
ok now create a list of the form
now create the generators
Note make sure class_mode is set to 'raw'. To test the generator try this code
I have used this approach where all the input columns in the input_list were numeric and was able to train a model. I am not sure if this will work for a mmixture of numeric and categorical inputs but I think it will. Note of course you may first want to partition df into a train_df, a test_df and a valid_df using sklearn's train_test_split. In that case you will want to make a train, test and valid generator. In the test generator set shuffle=False. Let me know if this works.