-
Notifications
You must be signed in to change notification settings - Fork 196
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support tensorflow debugger #214
Comments
There isn't any support for the tensorflow debugger right now. I'm not sure what work is required to support it. A short-term workaround might be to use For the cryptic error messages: We should prioritize #24 so that these look like nice compiler errors that point to the line of code causing an issue. |
Actually, instead of |
logGraph allows to start tensorboard. Unfortunately, the graph loading process hangs at about 30% with the message: I made a little progress but I don't understand the following message: Does it mean that the dimensions in the node Mul_43 are incorrect ? |
Hmm. You may need to make sure the TF.withEventWriter "/path/to/logs" $ \eventWriter -> TF.logGraph eventWriter graph
-- Other code that actually runs the graph.
That does seem to be what it is saying, but the dimension look compatible to me... If you have any code you can share I can take a look. |
code.tar.gz |
I had to make a few edits to get the code to compile, e.g. I got this error
After renaming |
I switched to the python version of the code as it runs flawlessly. |
To debug my model, I thought I could connect my program to tensorboard to decipher the cryptic msg:
TensorFlowException TF_INVALID_ARGUMENT "In[0] is not a matrix\n\t [[Node: MatMul_70 = MatMul[T=DT_FLOAT, transpose_a=false, transpose_b=false, _device=\"/job:localhost/replica:0/task:0/device:CPU:0\"](Const_41, Mean_69)]]"
I could not find the equivalent to the python function:
tf_debug.TensorBoardDebugWrapperSession("machine:7000")
is it implemented ? If not, is it in the pipeline ?
Fabien
The text was updated successfully, but these errors were encountered: