I am trying to train a inception_resnet_v2 on another dataset, when I test the accuracy of the model.
with slim.arg_scope(inception_resnet_v2.inception_resnet_v2_arg_scope()):
logits, _ = inception_resnet_v2.inception_resnet_v2(images,
num_classes=dataset.num_classes,
is_training=True)
setting is_training with True give better result on validation set, but from the code, i should have set this to False
I am trying to train a inception_resnet_v2 on another dataset, when I test the accuracy of the model.
setting is_training with True give better result on validation set, but from the code, i should have set this to False