Changed batch size
This commit is contained in:
parent
0c2d4a5ce7
commit
8c5001166d
1 changed files with 3 additions and 3 deletions
|
@ -9,9 +9,9 @@ from tensorflow.keras.callbacks import EarlyStopping
|
|||
print(tf.config.list_physical_devices('GPU'))
|
||||
|
||||
# Constants
|
||||
BATCH_SIZE = 16
|
||||
EPOCHS = 1
|
||||
TRAIN_SAMPLES = 1
|
||||
BATCH_SIZE = 8
|
||||
EPOCHS = 5
|
||||
TRAIN_SAMPLES = 5
|
||||
|
||||
def load_list(list_path):
|
||||
with open(list_path, "r") as json_file:
|
||||
|
|
Reference in a new issue