ry / tensorflow-resnet

ResNet model in TensorFlow
MIT License
1.66k stars 625 forks source link

Validation error #35

Open xwcao opened 7 years ago

xwcao commented 7 years ago
 if step > 1 and step % 100 == 0:
            _, top1_error_value = sess.run([val_op, top1_error], { is_training: False })
            print('Validation top1 error %.2f' % top1_error_value)

So this is the last line of resnet_train. I am wondering if this is actually giving the user the so-called "test error" where the images are from the test sets.

Can anyone answer my question?