I also found some potential detrimental deprecated api usag below:
tf.scalar_summary,tf.histogram_summary,tf.merge_all_summaries,tf.histogram_summary have been deprecated in tf v0.12.0 and removed in tf v1.0.0. It's better to replace it with apis in tf.summary
tf.initialize_all_variables has been deprecated in tf v0.12.0 and should be replaced with tf.global_variables_initializer
I think this will help make this code more compatible !
@DrewNF
Hope you could take my advice and look forward to your reply! 😃
Hi developers,
I also found some potential detrimental deprecated api usag below:
tf.scalar_summary
,tf.histogram_summary
,tf.merge_all_summaries
,tf.histogram_summary
have been deprecated in tf v0.12.0 and removed in tf v1.0.0. It's better to replace it with apis intf.summary
tf.initialize_all_variables
has been deprecated in tf v0.12.0 and should be replaced withtf.global_variables_initializer
I think this will help make this code more compatible !
@DrewNF Hope you could take my advice and look forward to your reply! 😃