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
/usr/local/lib/python3.6/dist-packages/fastcore/utils.py in parallel(f, items, n_workers, total, progress, pause, timeout, chunksize, *args, **kwargs)
704 "Applies func in parallel to items, using n_workers"
705 if progress is None: progress = progress_bar is not None
--> 706 with ProcessPoolExecutor(n_workers, pause=pause) as ex:
707 r = ex.map(f,items, *args, timeout=timeout, chunksize=chunksize, **kwargs)
708 if progress:
…commit id #e6620759fada127a1ef4cb2336d4ad9f8c000910
This will allow the fastai package to run with Python 3.6 which doesn't have the
mp_context parameter in the list of arguments to ProcessPoolExecutor,
which was introduced only in Python 3.7.
See https://docs.python.org/3/library/concurrent.futures.html#processpoolexecutor
When running the following test in google colaboratry
I get the following error:
Here is the python version:
!python --version
The text was updated successfully, but these errors were encountered: