fkm3

Results 32 comments of fkm3

Actually, instead of `asGraphDef`, you can use `logGraph` to write to a tensorboard log file directly: https://tensorflow.github.io/haskell/haddock/tensorflow-logging-0.2.0.0/TensorFlow-Logging.html#v:logGraph Just make sure to do that before you try to build the graph,...

Hmm. You may need to make sure the `withEventWriter` call exits before the error happens, otherwise it may not have flushed the file write yet and so the graph.pbtxt will...

I had to make a few edits to get the code to compile, e.g. I got this error ``` .../src/RBM.hs:117:45: error: Variable not in scope: h0 :: TFT.Tensor v0 t0...

There is limited support for this already, one of the oldest tests actually uses it to load a really old python created graph def and use it for inference: https://github.com/tensorflow/haskell/blob/master/tensorflow-mnist/tests/ParseTest.hs#L141...

Hi. I haven't played with 1.3 yet or dug into the variable checkpoint format, so I'm not sure what the answer is. The current `restore` function we have is using...

I haven't used tensorflow serving before, but it looks like it simply exposes a GRPC serving, so I think you are right and that is probably an easier route if...

Enough is supported to implement an "unrolled" RNN with a fixed length. If you are brave, I have a WIP RNN example here: https://github.com/fkm3/tensorflow-haskell/blob/dqn/tensorflow-mnist/app/Seq.hs It is using an LSTM, but...

Can you provide some more context: What operating system are you using? Are you following the "Build with Docker on Linux" instructions in the README, or something else?

I see you are using cabal. What version of proto-lens do you have installed? We are pegged at version proto-lens-0.2.2.0 and don't support the newest version yet, so I suspect...