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 have working code for parallel execution using pqdm. It works if I use from pqdm.threads import pqdm and fails with 'AttributeError' object is not iterable if I switch to from pqdm.processes import pqdm instead.
What is it that I do not understand here? What can be the problem here?
What I Did
from pqdm.threads import pqdm # Works
#from pqdm.processes import pqdm # 'AttributeError' object is not iterable
The text was updated successfully, but these errors were encountered:
Description
I have working code for parallel execution using pqdm. It works if I use
from pqdm.threads import pqdm
and fails with'AttributeError' object is not iterable
if I switch tofrom pqdm.processes import pqdm
instead.What is it that I do not understand here? What can be the problem here?
What I Did
The text was updated successfully, but these errors were encountered: