unify model test acc (#696)

This commit is contained in:
Jirka Borovec
2020-01-17 05:50:26 -05:00
committed by William Falcon
parent deb1581e26
commit bde549cb36
3 changed files with 11 additions and 17 deletions
+2 -2
View File
@@ -114,7 +114,7 @@ def test_running_test_after_fitting(tmpdir):
trainer.test()
# test we have good test accuracy
tutils.assert_ok_test_acc(trainer)
tutils.assert_ok_model_acc(trainer)
def test_running_test_without_val(tmpdir):
@@ -152,7 +152,7 @@ def test_running_test_without_val(tmpdir):
trainer.test()
# test we have good test accuracy
tutils.assert_ok_test_acc(trainer)
tutils.assert_ok_model_acc(trainer)
def test_single_gpu_batch_parse():