我正在研究張量流中的mnist example。張量流中「FLAGS」的用途
我感到困惑與模塊FLAGS
# Basic model parameters as external flags.
FLAGS = None
在 「run_training」 funcition:
def run_training():
"""Train MNIST for a number of steps."""
# Tell TensorFlow that the model will be built into the default Graph.
with tf.Graph().as_default():
# Input images and labels.
images, labels = inputs(train=True, batch_size=FLAGS.batch_size,
num_epochs=FLAGS.num_epochs)
有什麼用 「FLAGS.batch_size」 和 「FLAGS.num_epochs」 這裏的目的是什麼?我可以用一個像128這樣的常數來代替它嗎?
我在this site找到了類似的答案,但我仍然無法理解。
您還沒有列入其中'FLAGS'被定義爲一些顯著的代碼。而且,你能解釋一下你不瞭解的其他問題嗎? –