We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This error found by @bluenex and related to this Stack overflow post.
The text was updated successfully, but these errors were encountered:
Good catch! I think I had the same error once. When does this happen?
Sorry, something went wrong.
When using python 2.7. People in Stack Overflow suggested to use pathos.
I would go with pathos. Where are you getting the error? Can you share code to reproduce the error?
Here is code that gives error. Note that I do a quick fix in 50f7019
from science_concierge import preprocess from multiprocessing import Pool df = pd.read_csv('pubmed_oa_2016.csv') docs = list(df.abstract) pool = Pool() docs_preprocess = pool.map(preprocess, docs)
This error is gone after I installed pathos i.e.
pathos
pip install git+https://github.com/uqfoundation/pathos.git@master
No branches or pull requests
This error found by @bluenex and related to this Stack overflow post.
The text was updated successfully, but these errors were encountered: