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

Support for recurrent layers #1

Closed sveinnpalsson closed 6 years ago

sveinnpalsson commented 8 years ago

Great work, thanks a lot! I have trained a recurrent net using keras and am looking for ways to make predictions in a c++ application. Will support for recurrent layers be added? Thanks

pplonski commented 8 years ago

Yes, I am planning to add them soon.

danieleghisi commented 7 years ago

Hi! Any news on this? LSTM layer support would really come in handy for me... Thanks for the excellent work!

ddovod commented 7 years ago

+1 for recurrent (lstm/gru) layers, it would be awesome! Thank you a lot!

pplonski commented 7 years ago

I have this in my TODO - but it is soo long. I'll update you when I'll start to work on it.

ales222 commented 6 years ago

Are there news on LSTM support??

pplonski commented 6 years ago

Sorry, no support for LSTM, you can try to learn LSTM with tensorflow backend, and use tensorflow c++ api for production deploy.

gnosky10 commented 5 years ago

hi, thanks your work. I need convert keras layer (LSTM and TimeDistributed) in c++, can you help me?