Guest User

Untitled

a guest
May 25th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. history = model.fit(X_train_indices, Y_train, batch_size=batch_size, epochs=10,
  2. validation_data=(X_test_indices, Y_test))
  3.  
  4. model.save("./model.h5")
  5. score, acc = model.evaluate(X_test_indices, Y_test,
  6. batch_size=batch_size)
Add Comment
Please, Sign In to add comment