Created
January 30, 2019 22:56
-
-
Save matpalm/0ccd3debc6e36ed405082b9313ee5221 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
#!/usr/bin/env python3 | |
from tensorflow.keras import models | |
from tensorflow.keras import layers | |
inp = layers.Input(shape=(1,)) | |
out = layers.Activation('relu')(inp) | |
model = models.Model(inp, out) | |
model.save("/tmp/foo") | |
models.load_model("/tmp/foo") | |
# WARNING:tensorflow:No training configuration found in save file: the model was *not* compiled. Compile it manually. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment