Created
January 4, 2019 08:28
-
-
Save jonathanoheix/6892ee9c8d2767e1e8e28273642b157c to your computer and use it in GitHub Desktop.
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
# serialize model structure to JSON | |
model_json = model.to_json() | |
with open("model.json", "w") as json_file: | |
json_file.write(model_json) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment