Advertisement
Guest User

Untitled

a guest
Jul 21st, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. from keras.utils import plot_model
  2. plot_model(model, to_file='{}/model{}.png'.format(outDir, ttl1), show_shapes=True)
  3. plot_model(model, to_file='{}/model{}.svg'.format(outDir, ttl1), show_shapes=True)
  4. from IPython.display import Image
  5. Image('{}/model{}.png'.format(outDir, ttl1))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement