Function to prepare input list for fit process, due to different approaches
prepare_input_list_model(
input_x,
input_y,
object,
epochs = 10,
batch_size = 32,
validation_split = 0,
validation_data = NULL,
callbacks = NULL,
verbose,
view_metrics,
early_stopping
)
list of arguments used in fit function
output of prepare_data()
target
a deepregression object
integer, the number of epochs to fit the model
integer, the batch size used for mini-batch training
float in [0,1] defining the amount of data used for validation
optional specified validation data
a list of callbacks for fitting
logical, whether to print losses during training.
logical, whether to trigger the Viewer in RStudio / Browser.
logical, whether early stopping should be user.