Hi, I'm trying to search various ways to monitor tensorflow weight tensor.
I know we can watch these variable tensors through
Session.run()
,
tf.Print()
,
tf.py_func()
and tools like tensorboard, tdb, tfdbg
(
https://wookayin.github.io/tensorflow-talk-debugging/#1)
But is it impossible to use IDE(like Pycharm) for this?
I tried by myself, and couldn't find some places to set a breakpoint.
Please tell me if you succeed tensor debugging using IDE. Thank you!