Created
May 6, 2020 02:13
-
-
Save DanielDaCosta/5f74c2a86e2625e7f94b81d38974857d to your computer and use it in GitHub Desktop.
Model Instance Medium
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
model = Model(inputs=main_input, outputs=output_array) | |
model.compile(optimizer='adadelta', | |
loss=loss_array, | |
metrics=metrics_array) | |
model.fit(X_train, y_train_output, | |
epochs=40, batch_size=512, | |
class_weight=classes_weights, verbose=0); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment