Resolved! X-CUBE-AI doesn't detect the Layers of my keras model correct on STM32H7
Hi everyone,I have created a NN with tensorflow:# ----- Model Definition ----- def build_model(input_dim): model = Sequential([ InputLayer(shape=(input_dim,)), Dropout(0.2), Dense(128, activation='relu'), # increased laye...