Paolo Galeone
Paolo Galeone
So we are on the right track :+1: Could you please show me how to copy the files from the base image to the CI image? I guess I simply...
I created the docker image using multi-stage build (using you Dockerfile, but inheriting from my docker image of the engine of course) and there is something weird going on: as...
I'm using version 4.23.1 with some small changes in the engine code (mostly related to computer graphics stuff). I just copy-pasted your Dockerfile (https://github.com/adamrehn/ue4-docker/issues/57#issuecomment-553692649), but since it works correctly in...
Isn't possible to use ` tf.NewTensor` and feed it as input to the saved model? I do this in the example you can see in the README. Is this the...
Now that I'm thinking about the proto/example thing clearly, I remember that I explicitly removed (a long time ago!) that part, because it's tensorflow itself that only supports SavedModels and...
You're using tensorflow, the official package - it's broken. You must use the fork I maintain instead: ``` github.com/galeone/tensorflow/tensorflow/go ``` As you can see the `tf` package in the example,...
Hello! What's the request/issue here?
Because tfgo uses the official TensorFlow''s Go bindings under the hood (a fork I created because these bindings are not go-gettable) and these bindings do not support `tf.Variable`. The Go...
Hi @Arnold1 at the moment there isn't a way to do these things automatically, but it should be easy to add some helper function. However, you will have to manually...
Yes I guess we can look for the string "placeholder_" in the op.Name (if this is an existing attribute, I don't remember correctly right now). But this is not general,...