Skip to content

Instantly share code, notes, and snippets.

@0xfe
Created February 23, 2020 03:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 0xfe/6a7234fe6e368bbd346f5fdddd88fa12 to your computer and use it in GitHub Desktop.
Save 0xfe/6a7234fe6e368bbd346f5fdddd88fa12 to your computer and use it in GitHub Desktop.
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