How to model a shared layer in AutoKeras?

22 Views Asked by At

I want to share a layer between for two inputs:

x --> F(x)
            ==> G(F(x),F(y))
y --> F(y) 

In Keras, it can be done by defining a layer then passing two inputs separately to the layer, is it possible to do it in AutoKeras?

0

There are 0 best solutions below