大家好!
我是Tensorflow的新手。在Getting Started with TensorFlow,我获得了tf.contrib.learn.io.numpy_input_fn({"x": x_train}, y_train, 4, num_epochs=1000)
来源。我想知道batch_size
和num_epochs
是什么意思?我试图更改教程值并对我没有任何影响。
我在Tensorflow和Github上搜索但是失败了。
请让我知道这是什么或在哪里可以搜索它。
答案 0 :(得分:0)
我们的想法是将整个训练数据集分成小块(批量)。所以 batch_size 设置此块的大小。 num_epochs 描述了数量。
您可以在Getting Started with TensorFlow的评论中找到说明:
# We have to tell the function how many batches
# of data (num_epochs) we want and how big each batch should be.