To train the model with multiple inputs, we need to pass the input data as a dictionary, where the keys are the names of the input layers and the values are the corresponding input data arrays.
By specifying the input data in this way, Keras knows which input data corresponds to each input layer of the model during training and evaluation.
HI.
Thank you for reply;
In this case we should have the same y_train for a_train_ds and b_train_ds. because already a_train_ds and b_train_ds contain y_train but are differents and that is due to shuffle process.
Thank you