pplonski / keras2cpp

This is a bunch of code to port Keras neural network model into pure C++.
MIT License
679 stars 153 forks source link

does it support 'Model' model ? #31

Closed wu-ruijie closed 6 years ago

wu-ruijie commented 6 years ago

I see your example is ‘Sequential’ model. but it looks like not support 'Model' model. thanks

Dobiasd commented 6 years ago

Yes, keras2cpp only supports sequential Keras models.

If you want to deploy models build with the functional API you need to use for example TensorFlow serving or frugally-deep (sorry for the shameless plug ;D).

pplonski commented 6 years ago

Thanks for info! ;)