cppflow
cppflow copied to clipboard
Run TensorFlow models in C++ without installation and without Bazel
I have this basic docker file ```docker FROM ubuntu:18.04 RUN apt-get update -y && apt-get install tar gcc g++ git cmake wget -y COPY libtensorflow-cpu-linux-x86_64-2.3.1.tar.gz libtensorflow.tar.gz RUN tar -C /usr/local...
Hi dear developer! Just recently start to work with your lib, thank you for a great job!!! Could you please let me know is it possible to load tflite models...
First off thanks for all the work you guys have put into CppFlow - it's great and way better than messing about with Bazel! I would like to be able...
Hi, Serizba :) I'm trying to use your library in windows 10 x64 machine in VS2019 C++. I want to inference my model for **batch of images** ( **vector <...
I used cppFlow for TF2 and got following error. Does it support tensorflow 2? #include "../../include/Model.h" #include "../../include/Tensor.h" #include #include #include int main() { // Create model Model m("../model.pb"); }...
Hi, I have created this RNN model: ``` import tensorflow as tf from tensorflow import keras input = keras.layers.Input(shape=[12, 100], batch_size=1) x = keras.layers.Dense(20, activation='relu')(input) x = keras.layers.BatchNormalization()(x) fc1 =...
Is there a reason why top_k op is not implemented? I have tried to add it by myself, but there is access violation deep inside tf lib So may be...
Is there any plan to create tags when there are major releases of Tensorflow?
Hi! How can I extract weights from the saved model? I am looking for the equivalent of Python model.get_weights() but in Tensorflow C API. Especially, I would like to extract...
Hello, First of all, I appreciate your effort to maintain this nice repo. I am wondering if I can get a gradient of the network model output w.r.t input similar...