From 8caf85917b62df8a1277e1a67301a9a9c475094b Mon Sep 17 00:00:00 2001 From: D-X-Y <280835372@qq.com> Date: Fri, 20 Nov 2020 09:59:15 +0800 Subject: [PATCH] Update examples --- exps/show-dataset.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/exps/show-dataset.py b/exps/show-dataset.py index 8f3e42c..87510c3 100644 --- a/exps/show-dataset.py +++ b/exps/show-dataset.py @@ -41,7 +41,7 @@ if __name__ == '__main__': test_acc_200e = [] for index in range(10000): info = api_nats_tss.get_more_info(index, 'ImageNet16-120', hp='12') - valid_acc_12e.append(info['valid-accuracy']) - test_acc_12e.append(info['test-accuracy']) + valid_acc_12e.append(info['valid-accuracy']) # the validation accuracy after training the model by 12 epochs + test_acc_12e.append(info['test-accuracy']) # the test accuracy after training the model by 12 epochs info = api_nats_tss.get_more_info(index, 'ImageNet16-120', hp='200') - test_acc_200e.append(info['test-accuracy']) # which I reported. + test_acc_200e.append(info['test-accuracy']) # the test accuracy after training the model by 200 epochs (which I reported in the paper)