Created
March 24, 2018 10:15
-
-
Save totetmatt/dcc85d27b0fdfd79513cbe43201f507f to your computer and use it in GitHub Desktop.
Dot export with Keras
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
from keras.applications import * | |
from keras.utils import plot_model | |
# [..] | |
# model = ... | |
# Get your own model here | |
# [..] | |
model = NASNetMobile() #Example with NASNetMobile | |
plot_model(model,show_shapes=False, to_file='model.dot') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment