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
Your work is amazing and I am truly amazed!
While reading the code, I have something that I don't understand. What does 'worker' mean? Is it to start multiple threads at the same time to perform the hill climbing algorithm to get the optimal result? If only one worker is used, will it affect the result?
The text was updated successfully, but these errors were encountered:
workers usually mean number of cpu cores used for processing. Defaukt seems to use all cores but if you needed to slow down processing, you could use a single core only per example.
result should be the same(ish)... i dont think theres a way to generate exact same output every time so it will do the deed and process images correctly, albeit slower
Your work is amazing and I am truly amazed!
While reading the code, I have something that I don't understand. What does 'worker' mean? Is it to start multiple threads at the same time to perform the hill climbing algorithm to get the optimal result? If only one worker is used, will it affect the result?
The text was updated successfully, but these errors were encountered: