-
When I run the program, there is a lot of output other than the model response, such as
Is there a way to prevent this output of log messages and stats, such as a verbosity level I can set as a parameter? Or a I would like to use the output in other contexts, such as shell scripts, but parsing out the log messages seems like the wrong way to go about it. I'm grateful for any tips or hints. |
Beta Was this translation helpful? Give feedback.
Answered by
j-f1
Jun 8, 2023
Replies: 1 comment 5 replies
-
If you redirect stderr you should only see the output (e.g. |
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
oelna
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you redirect stderr you should only see the output (e.g.
./main 2>/dev/null
)