Replies: 1 comment
-
Hi @Waterkin, By default, the sweep results are not logged. ...
import logging
log = logging.getLogger(__name__)
@hydra.main(...)
def my_app(cfg):
...
result = 123
log.info(result)
return result This way, you can check the result of the job in the generated log file.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I run hydra sweep but cannot check the results, is there any log for sweep results?
Should I output the results in the code for convenience like
print(acc)
, or justreturn acc
is enough for later check?Thanks!
Beta Was this translation helpful? Give feedback.
All reactions