Skip to content

Instantly share code, notes, and snippets.

@0xfe
Created February 23, 2020 03:21
Start Training the Deep Pitches Model
self.model.fit(training_xs, training_ys, epochs=150, batch_size=32,
callbacks=[tf.keras.callbacks.EarlyStopping(monitor='val_mse', patience=25)],
validation_data=(testing_xs, testing_ys))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment