Skip to content

Instantly share code, notes, and snippets.

@CVxTz
Created February 1, 2020 16:05
Show Gist options
  • Save CVxTz/f9da1ecde12e04c6b71c590ed347fbf1 to your computer and use it in GitHub Desktop.
Save CVxTz/f9da1ecde12e04c6b71c590ed347fbf1 to your computer and use it in GitHub Desktop.
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