简体   繁体   中英

How to debug in Tensorflow2?

I am new to Tensorflow and am currently working on Tensorflow2. I'm still having a hard time writing code, because I don't have the possibility to debug.

I already tried to get further with the line:

tf.executing_eagerly()

and

tf.print()

but this is only a small help compared to the "normal" debugging in python.

Is there a better possibility to debug the code and to view the content of variables?

The only thing I currently get is this view, but that doesn't give me any insight into the actual variables either: 在此处输入图像描述

Rather than using tf.print , use the normal Python's print if you are eagerly executing. You will be able to see the contents of the variables.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM