Replies: 1 comment
-
Would love to find a solution for this as well, currently I am running a lot of evaluations in parallel together with some |
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.
-
Hello!
I am trying to run some of the algorithms from pygmo a few times, and then produce runtime analysis graphs from those runs. For that, I use the information from
.get_log()
.However, I do not need the stdout output from
.evolve()
for all those runs, and I'd like to know if it is possible to suppress that while still getting access to the data from.get_log()
. If Iset_verbosity()
to zero, I lose bothstd_out
andget_log
. I couldn't find anything that solved my problem in the documentation...(I'd prefer not to suppress stdout at the terminal level, because I'm planning to use tqdm to show a progress bar as I go through the algorithm/problem pairs.)
Any ideas?
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions