You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
train_path : str The path to the training dataset.
test_path : str The path to the validation dataset.
input_shape : int, Optional The input shape of the model: (1, input_shape, input_shape, 1).
num_epochs : int, Optional The number of epochs. This is the number of times the model trains over the training dataset.
num_filters : int, Optional The base number of filters for the convolutional layers.
batch_size : int, Optional The number of samples to train on before updating the model weights. For the best accuracy, this should be 0; however, higher values will lead to much quicker training.
learning_rate : float, Optional The rate at which the model will update weights in response to estimated error.
dropout : float, Optional The percentage of network nodes that will be randomly dropped out during the training process. This helps to mitigate overfitting.
Returns:
history : any A history object containing the loss at each epoch of training.
classDataGenerator
Dataset Generator for sequencially passing files from storange into the model.