Closed AtharKharal closed 5 years ago
@AtharKharal I suspect the issue is that google colab doesn't allow spawning new process using python's multiprocessing. if you change n_jobs=3
to n_jobs=1
, your code should run without problem.
can you let us know if that fix helps?
@kmax12 thanks, I ran with n_jobs=1 but not successful. Same errors again. First error is like: ----> 6 n_jobs = 1
and last error message is: TypeError: group() got an unexpected keyword argument 'observed'
@AtharKharal Can you verify that you have the latest version of pandas (0.24.1) installed? observed is an argument that was added in a newer release
@gsheni thanks indeed, it is working now with pandas==0.24.1 and n_jobs=1. Earlier I was using pandas==0.22.0 regards
I just ran following code in CoLab and got "Worker failed to start error", any help please!
Thanks indeed