Tensorflow tf.GradientTape() 查看每一次epoch参数更新
这是一个非常简单的例子。拟合 y = x * 3 + 2(其中x是一维,y是是实数)import tensorflow as tftf.enable_eager_execution()tf.executing_eagerly()tfe = tf.contrib.eagerNUM_EAMPLES = 1000training_inputs = tf.random_norma...