Jan
Jan
Demo of what I'm using it for: https://github.com/janpfeifer/VideoControls
hi @Arnold1 , for the inference in Golang, let's follow on issue [#115](https://github.com/tensorflow/decision-forests/issues/115). Hopefully we can have a native impelementation (albeit not complete) not too far in the future. About...
Btw, the official TensorFlow Go API has the [`LoadLibrary` function](https://pkg.go.dev/github.com/tensorflow/tensorflow/tensorflow/go#LoadLibrary), maybe that would work ? One has just to be careful to use the pre-built TF library and prebuilt TF-DF...
hey @Arnold1 sorry I missed the thread, I was out on vacation. The pure Go API we want to open source here will be slower than the C++ version --...
hi all, Took a while, but we just released a [YDF (and TF-DF) inference API in Go](https://github.com/google/yggdrasil-decision-forests/tree/main/yggdrasil_decision_forests/port/go). It's fresh from the oven, so we consider it beta. But internally it...
No need for Python. I mean you can train the model in Python+TensorFlow (or with Yggdrasil command line tool). But after that this is pure Go inference engine. Ugh, no,...
hi @Arnold1 , +1 for what @rstz said. But I think in this case I can add some details, thanks to @achoum : he has a change (PR) that adds...
Just to add one extra obvious approach: 9. Your problem seems to be highly parallelizable: if (1) running in multiple threads is not enough, you may want to use something...
Also: 10. Very out there but: we never braved doing inference in FPGAs, but we suspect it could be made very fast and efficient. In case you are aim at...
Btw, let us know if the Go version matches your latency requirements. The Go version doesn't implement the fastest algorithm -- it would be much more complicated to implement (we...