I keep getting this syntax error when it runs the line:
global merged_summary_op = tf.merge_all_summaries()
^
SyntaxError: invalid syntax
Could anyone help me with this problem? Thank you!
I keep getting this syntax error when it runs the line:
global merged_summary_op = tf.merge_all_summaries()
^
SyntaxError: invalid syntax
Could anyone help me with this problem? Thank you!
you are trying to assign some value to a Variable name
variable naming will not support white spaces
global merged_summary_op
merged_summary_op = tf.merge_all_summaries()
You must need to follow some rules to do it