-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump tensorflow to 2.2.3? #30
Comments
Hi, thanks for the interest. |
Thanks, will look at getting a PR in the works. Currently debugging why the crate works correctly if I set cargo to install from a local directory (after running
|
I've been evaluating the library and I had to update tensorflow to a different commit for a different use case. I was able to get it to build in my forks. The steps were as follows
|
@nemosupremo How did this library work out for you? Going to try to work up opening a PR in here to bump to latest stable tensorflow |
@r-wheeler I needed to use a seperate commit for compatibility with Google's Edge TPU library. I've been using my fork for months without issue. |
@r-wheeler Hi there, I do need the |
@r-wheeler I currently have it compiling to 2.4, just extended off of nemosupremo's solution and had to install googlemock to my usr/includes, and it worked fine. |
Opened a PR for a bump to |
I found a few tflite ops (mostly rnn related) that were supported in the master of tensorflow but not in the specific commit these bindings were built against. I was able to compile updated bindings by
.clang_arg(format!("-I{}/downloads/absl/", submodules_str)
to Builder.include(submodules.join("downloads/absl/"))
to cpp_build::ConfigWould you be open to a PR bumping the tensorflow version to incorporate some of the new ops / changes to tflite?
The text was updated successfully, but these errors were encountered: