MATLAB: How to run keras models in matlab

deep learningDeep Learning Toolboxkerastensorflow

Currently, MATLAB supports very few configurations of it; therefore, I cannot run my multilayer LSTM model on MATLAB, which I have trained in Tensorflow using Keras API.

Best Answer

Import the network into MATLAB using importKerasLayers, then replace any unsupported layers with custom layers.
Related Question