Hey there folks,
First time posting in this community, and I am new to the space of FlatBuffers, so please bear with me!
I am building a neural network inference engine in C++, and am looking at using [Tensorflow Lite models](
https://www.tensorflow.org/mobile/tflite/). Not using Tensorflow Lite itself, just the model files.
Thus, I want to be able to parse a FlatBuffer into C++, using the structure and weights in my own way (essentially just a load of `std::vector`s for weights thus far). However, I am having some trouble getting this working.
I managed to generate a schema using `flatc` from a pretrained `.tflite` file, but I'm not sure how to start reading the file without a build error. I am following the [standard tutorial](
https://google.github.io/flatbuffers/flatbuffers_guide_use_cpp.html).
The build error I am getting is:
/tmp/flatbuffer-mobilenet/include/schema_generated.h:589:21: error: no matching member function for call to 'Verify'
verifier.Verify(min()) &&
I have a minimum (not) working example hosted on a [Github repo](
https://github.com/Wheest/flatbuffer-mobilenet). I have provided (hopefully) clear instructions on how to get the same problem.
I'm using CMake, which takes as an argument the include directory of `flatbuffers`. It includes said directory with the project.
Kind regards
ftr