如何在张量流中设置测试迭代变量
how to set test iteration variable in tensorflow
BVLC和Nvidia的caffe中的test_iter变量是否与cifar示例代码中tensorflow的NUM_EXAMPLES_PER_EPOCH_FOR_TRAIN相同?如果没有,我可以在哪里设置 test_iter 和 test_interval(在 Caffe 中使用)?
NUM_EXAMPLES_PER_EPOCH_FOR_TRAIN
constant represents the number of images in the training set for CIFAR-10 training.
在 Caffe 中,test_iter
是要执行的评估迭代次数。
TensorFlow's CIFAR-10 eval 对完整的 10000 张图像集进行评估,没有类似于 test_iter
的数量。
BVLC和Nvidia的caffe中的test_iter变量是否与cifar示例代码中tensorflow的NUM_EXAMPLES_PER_EPOCH_FOR_TRAIN相同?如果没有,我可以在哪里设置 test_iter 和 test_interval(在 Caffe 中使用)?
NUM_EXAMPLES_PER_EPOCH_FOR_TRAIN
constant represents the number of images in the training set for CIFAR-10 training.
在 Caffe 中,test_iter
是要执行的评估迭代次数。
TensorFlow's CIFAR-10 eval 对完整的 10000 张图像集进行评估,没有类似于 test_iter
的数量。