Closed nk0307 closed 5 years ago
The model files are already saved in the trained_models folder, it is easy to see the architecture of the models using model.summary(), I am attaching the output of model.summary() output for FER miniXception model file.
`
import tensorflow as tf
model_file = "fer2013_mini_XCEPTION.102-0.66.hdf5"
model = tf.keras.models.load_model(model_file) from keras import backend as K sess = K.get_session()
print(model.summary())
`
The images are uploaded in reverse order, so this is the whole architecture of the given model
I am really lost in the project. Can you show me the flow so I can carry on reading it.