You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wanted to run TPOT for a large amount of time on my server (about 200--> population size and 100--> Generations) it works with 50 gens but if I increase any more, then it doesn't work.
To describe, what happens is that tqdm shows that it gets stuck at one point (nearly always around #4000th pipeline), it uses exactly 1 CPU core when in its 'stuck' phase, does not store any checkpoint, and does not move any further. This seems that it has stopped doing anything.
Any idea what the issue could be?
The text was updated successfully, but these errors were encountered:
This is most likely related to TPOT not being able to terminate some pipelines. The current timeout method doesn't always work on specific modules. If those modules can't be timed out and they run for a long time (such as SVC), then TPOT will get stuck slowly fitting a single pipeline which may never converge.
I wanted to run TPOT for a large amount of time on my server (about
200--> population size
and100--> Generations
) it works with 50 gens but if I increase any more, then it doesn't work.To describe, what happens is that tqdm shows that it gets stuck at one point (nearly always around #4000th pipeline), it uses exactly 1 CPU core when in its 'stuck' phase, does not store any checkpoint, and does not move any further. This seems that it has stopped doing anything.
The text was updated successfully, but these errors were encountered: