이것은 TensorFlow 웹 사이트의 튜토리얼 코드 입니다.
아무도 무슨
global_step
뜻 인지 설명 할 수 있습니까?Tensorflow 웹 사이트에서 global step is used count training steps 라고 썼지 만 정확히 무엇을 의미하는지는 모르겠습니다.
또한 설정할 때 숫자 0은 무엇을 의미
global_step
합니까?
def training(loss,learning_rate):
tf.summary.scalar('loss',loss)
optimizer = tf.train.GradientDescentOptimizer(learning_rate)
# Why 0 as the first parameter of the global_step tf.Variable?
global_step = tf.Variable(0, name='global_step',trainable=False)
train_op = optimizer.minimize(loss, global_step=global_step)
return train_op
Tensorflow doc global_step : increment by one after the variables have been updated . 하나의 업데이트 global_step
가 1이 된 후 의미합니까 ?
tf.train.global_step()
의이global_step_tensor
평균 10 개 배치가 이미 그래프로 볼 수 있습니다 것을 10합니까로 설정?