How to print the performance of the training? #3124
Unanswered
timothy2327
asked this question in
Questions
Replies: 1 comment
-
Hi, It could be possible that the performance print outs aren't showing up due to the log-level setup you have. You need to set it to be INFO as: import logging
logging.basicConfig(format="%(levelname)s - %(name)s - %(message)s", level=logging.WARNING)
logging.getLogger("haystack").setLevel(logging.INFO) Related: #3081 E.g output: |
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
Uh oh!
There was an error while loading. Please reload this page.
-
I used the haystack to train DPR with my own data, but there is no metric of the evaluation. how can I print the performance metric?
Beta Was this translation helpful? Give feedback.
All reactions