Paolo Galeone

Results 64 comments of Paolo Galeone
trafficstars

You should first check in Python - after importing the SavedModel with `tf.saved_model.load` and **not** with the Keras equivalent - if the output is the expected one. We need to...

I guess, thus, the problem is solved. I mean, you just need to correctly map the `p.Model.Op("StatefulPartitionedCall", index),` with the index you expect. Closing since this is not a tfgo...

Hi @jriegner , thank you for this report! You're right, there's a leak. And I guess I found where the leak is :smile: `LoadModel` returns a `*tfgo.Model` that contains a...

Update: I guess I made it https://github.com/galeone/tfgo/commit/b53620202dc55ebc2f12a299e65837f51737f83b Give it a try and let me know if it works

If it's not the leak related to the missing session close, I have no other clue :thinking: For sure there was a leak caused by the missing session.close(), which now...

FYI I updated https://github.com/galeone/tensorflow to TensorFlow 2.10 (https://github.com/galeone/tensorflow/tree/r2.10-go) You can update via `go get -u github.com/galeone/tensorflow/tensorflow/[email protected]` Moreover, if you use (or plan to use) [galeone/tfgo](https://github.com/galeone/tfgo) the dependency of tfgo on...

Update: I have a passphrase to unlock my ssh key. I'm investigating and I'm pretty sure this is the problem. Update: can confirm. If I remove the passphrase it gets...

Hi, it looks like you're running on an M2 mac (thus ARM architecture), but the library is built for x86_64 (there's no pre-built library for arm64 https://www.tensorflow.org/install/lang_c). I have no...

can you try to build a simple C program that uses the TensorFlow C library? In this way we can understand if it's related to Go or if it's related...

Hi! Thanks for using tfgo. This is a problem that every now and then appears in the TensorFlow C backend. I found this issue from 2017 with the very same...