Created
February 1, 2020 16:05
-
-
Save CVxTz/f9da1ecde12e04c6b71c590ed347fbf1 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
X_used = X[used_samples, ...] | |
Y_used = Y[used_samples, ...] | |
X_unused = X[unused_samples, ...] | |
Y_unused = Y[unused_samples, ...] | |
model = get_model() | |
model.fit(X_used, Y_used, epochs=45, verbose=1, batch_size=32) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment