User Activity

I create a capsule layer for my capsule network, as follows.#A Capsule Implement with Pure Kerasclass Capsule(Layer):   def __init__...   def build(....):   def call(...): ...model = Model(...)model.compile(...)model.fit(...)model.save('***.h5')But ...
In the project, the input data of keras model is a 2-d vector consisted of float x1 and float x2. But in the cubemx.ai generated application template code, the data type is ai_u8 as follows: ai_u8 *in_data = NULL; ai_u8 *out_data = NULL;Then ,I modif...