-
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.
Replies: 3 comments 6 replies
-
If you redirect stderr you should only see the output (e.g. |
Beta Was this translation helpful? Give feedback.
-
c++:
then call |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
If you redirect stderr you should only see the output (e.g.
./main 2>/dev/null
)