go-tflite icon indicating copy to clipboard operation
go-tflite copied to clipboard

Go binding for TensorFlow Lite

Results 13 go-tflite issues
Sort by recently updated
recently updated
newest added

I have followed the instructions from [issue](https://github.com/mattn/go-tflite/issues/4) and still have: /tmp/go-build1465283250/b001/exe/main: error while loading shared libraries: libtensorflowlite_c.so: cannot open shared object file: No such file or directory exit status 127...

Hello, there I was looking at https://github.com/tensorflow/tflite-micro and wondering if it would be possible to use go-tflite with that and TinyGo. Any thoughts on this would be appreciated. Thank you.

tensorflow provides scripts to build static tf lite libraries: [tflite make scripts](https://github.com/tensorflow/tensorflow/tree/master/tensorflow/lite/tools/make) Are there plans to support .a files additionally to the .so files build with bazel?

You may or may not have seen the git issue where I was trying to get the edgetpu to work for DOODS. With the tensorflow commit that supports the edgetpu...

Hi, Hope you are all well ! It would be awesome to have a dockerfile for cpu and gpu building go-tflite for quick test purpose. Do you think it is...

Hello! Hope you doing great! I found GPU delegates in project and it need library tensorflowlite_c_delegate_gpu. Can you please explain how to compile it or where i can find it?...

I am trying to get XNNPACK support working but I seem to be missing required libraries ``` ubuntu:~/src/go-tflite/_example/label_image_xnnpack$ go run main.go # command-line-arguments /opt/go/pkg/tool/linux_amd64/link: running gcc failed: exit status 1...

Hi, regular examples work fine for me, but when I try to use the edgeTPU examples I am having this kind of segmentation fault. The tensforflow version which was compiled...

I only see SetFloat32s function. We have a converted model that accepts floats, strings and stringlists as input. ``` interpreter.AllocateTensors() input := interpreter.GetInputTensor(0) input.SetFloat32s([]float32{0.5}) ```