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
Please check your code.
domains/s2orc/extract_papers.py
8 from joblib import Parallel, delayed Does this Parallel module work in your code?
8 from joblib import Parallel, delayed
29 if len(papers) > 512: I think it should be ‘==’ but not ‘>‘ , cause your shell script batch size is 512 , but your code create 513 files instead.
29 if len(papers) > 512:
52 return metadata Is this 'metadata' declared in the function?
52 return metadata
By the way, I don't see your "get_metadata" used in the main function.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Please check your code.
domains/s2orc/extract_papers.py
8 from joblib import Parallel, delayed
Does this Parallel module work in your code?
29 if len(papers) > 512:
I think it should be ‘==’ but not ‘>‘ , cause your shell script batch size is 512 , but your code create 513 files instead.
52 return metadata
Is this 'metadata' declared in the function?
By the way, I don't see your "get_metadata" used in the main function.
The text was updated successfully, but these errors were encountered: