How to generate the capsule network codes using cubemx.ai
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 ...