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.models import Sequential | |
from keras.models import model_from_json | |
from keras import backend as K | |
import tensorflow as tf | |
from tensorflow.python.tools import freeze_graph | |
import os | |
# Load existing model. | |
with open("model.json",'r') as f: | |
modelJSON = f.read() |