aaaaaaaardvark
aaaaaaaardvark

Reputation: 11

Import MXNet file in Keras/Tensorflow

I am having trouble finding the answer to this.

I have an MXNet file in the form of: model.json and model.params. What is the cleanest way to load the network into a Keras installation with TensorFlow backend?

Upvotes: 0

Views: 439

Answers (1)

Sergei
Sergei

Reputation: 1637

Unfortunately, you cannot load native MXNet models into Keras.

You can try to convert your model using MMdnn, but depending on complexity of your model it might not work.

Upvotes: 1

Related Questions