I would like to train my model in Keras using model.fit method.
From what I understand, first, it takes the input X_train, makes a prediction and then compares it with y_train to calculate the loss and backpropagate. Is there a way to start training only by inputting the true labels (y_true) and predicted labels (y_pred) and not X_train?