Skip to content

Instantly share code, notes, and snippets.

@adriaciurana
Created January 22, 2019 13:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adriaciurana/79e4c61e9a7a816b8113c76e4c0f5b79 to your computer and use it in GitHub Desktop.
Save adriaciurana/79e4c61e9a7a816b8113c76e4c0f5b79 to your computer and use it in GitHub Desktop.
Articulo Medium 5b
# Cargamos el modelo
json_file = open('model.json', 'r')
loaded_model_json = json_file.read()
json_file.close()
model = model_from_json(loaded_model_json)
model.load_weights("model.h5")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment