-
I found a possible solution in Can we do hyperparameter optimization while doing NAS?. However, when we use HPO in NNI, we should use function for epoch in range(args.epochs):
metric = run_model()
nni.report_final_result(metric) One-shot algorithms like Darts package almost all details. I don't know how to add |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You should report the result for the final accuracy of retrained searched model. This means you should combine the search script with retrain script, report the final test accuracy from retrain script. |
Beta Was this translation helpful? Give feedback.
You should report the result for the final accuracy of retrained searched model. This means you should combine the search script with retrain script, report the final test accuracy from retrain script.