Is there a way to save a Keras model to the format of CNTK so that we can load it by using CNTK's API?
I have tried this code below but it failed:
a = Input(shape=(224,224,3))
b = Conv2D(64, (2,2), name='conv1')(a)
model = Model(inputs=a, outputs=b)
cntk.combine(model.outputs).save('model2.dnn')