-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
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
Adding 'wiki'
dataset to LINKXDataset
#4600
Conversation
Codecov Report
@@ Coverage Diff @@
## master #4600 +/- ##
==========================================
- Coverage 82.91% 82.80% -0.12%
==========================================
Files 315 315
Lines 16596 16599 +3
==========================================
- Hits 13760 13744 -16
- Misses 2836 2855 +19
Continue to review full report at Codecov.
|
@@ -34,6 +38,11 @@ def download_url(url: str, folder: str, log: bool = True): | |||
data = urllib.request.urlopen(url, context=context) | |||
|
|||
with open(path, 'wb') as f: | |||
f.write(data.read()) | |||
# workaround for https://bugs.python.org/issue42853 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A better solution here might be to upload the file in smaller chunks
Co-authored-by: Matthias Fey <[email protected]>
Co-authored-by: Matthias Fey <[email protected]>
Co-authored-by: Matthias Fey <[email protected]>
Co-authored-by: Matthias Fey <[email protected]>
LINKXDataset
'wiki'
dataset to LINKXDataset
Adding the 'wiki' dataset from “Large Scale Learning on Non-Homophilous Graphs: New Benchmarks and Strong Simple Methods”.
This PR continues work on #4569