TensorFlow.NET icon indicating copy to clipboard operation
TensorFlow.NET copied to clipboard

Loading keras functional (vs sequential) model is not implemented

Open Licho1 opened this issue 3 years ago • 0 comments

If you try to load functional keras model by using: keras.models.load_model(path); It fails because it is not implemented in: private Model _revive_graph_network(string identifier, KerasMetaData metadata, int node_id) else if (className == "Functional") throw new NotImplementedException("");

Example of such model is for example EfficientNetB7 from keras.applications

Licho1 avatar Feb 04 '22 18:02 Licho1