gosha20777 / keras2cpp

it's a small library for running trained Keras 2 models from a native C++ code.
MIT License
183 stars 54 forks source link

This project only support std = c++17. Is there any other version? #12

Open heilonli opened 5 years ago

heilonli commented 5 years ago

I want to deploy keras model to embedded linux system. I need use arm tool chain to build source code. Currently, arm tool chain can not support C++17. Is there c++14 version code?

gosha20777 commented 5 years ago

You cat try to compile it!

heilonli commented 5 years ago

thanks

i will try it .

在 2019年6月26日,20:29,Georgy Perevozchikov notifications@github.com 写道:

You cat try to compile it!

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or mute the thread.

sundar7D0 commented 3 years ago

It doesn't seem to work with C++11 but I am constrained to use it as of now because of firewall issues. Any work around?

heilonli commented 3 years ago

Thank you. Now I am working on another project. I need not it any more.

在 2020年7月14日,04:17,SundarRamanP2000 notifications@github.com 写道:

It doesn't seem to work with C++11 but I am constrained to use it as of now because of firewall issues. Any work around?

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or unsubscribe.

sundar7D0 commented 3 years ago

Thanks! I installed gcc5

bandjhughes commented 2 years ago

I had the same issue, so I added C++11 capabilities to go along with the C++17 capabilities (switchable in the CMake). Runs fine visual studio 2015 and gcc 4.8.5. I can push it if someone else needs it.