I am working with Tensorflow version 1.4 and want to debug my train() function.
In this link https://www.tensorflow.org/programmers_guide/debugger#debugging_tf-learn_estimators_and_experiments
There is a way to do this for tf.contrib.learn Estimators , but I cannot find a way to adapt it to (new in version 1.4) tf.estimator .
Here is what I tried:
from tensorflow.python import debug as tf_debug
But I am facing this error:
> --------------------------------------------------------------------------- error Traceback (most recent call > last) <ipython-input-14-71325f3c8f14> in <module>() > 7 > 8
Can someone point me in the right direction?
python debugging tensorflow tensorflow-estimator
Benjamin larrousse
source share