I have a 100k dataset for ML, how much should I set up the batch size for training, ?
FYI - I am using the train_test_split library to splitting the data into train and test sets.
Thank you!
## Fit network
history = model.fit(X_train, Y_train, epochs = 1500, validation_split=0.2, verbose=1, shuffle=False, batch_size=60)