Skip to content

Commit 40bfab1

Browse files
committed
Update dataset class URLs
1 parent 46fae56 commit 40bfab1

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

project/datasets/CASP_CAPRI/casp_capri_dgl_dataset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,4 +279,4 @@ def raw_path(self) -> str:
279279
@property
280280
def url(self) -> str:
281281
"""URL with which to download TAR archive of preprocessed pairs."""
282-
return 'https://zenodo.org/record/4815267/files/final_raw_casp_capri.tar.gz?download=1'
282+
return 'https://zenodo.org/record/5546775/files/final_processed_casp_capri.tar.gz'

project/datasets/DIPS/dips_dgl_dataset.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,10 @@ class DIPSDGLDataset(DGLDataset):
2323
2424
- Train examples: 15,618
2525
- Val examples: 3,548
26+
- Test examples: 32
2627
- Number of structures per complex: 2
2728
----------------------
28-
- Total examples: 19,166
29+
- Total examples: 19,198
2930
----------------------
3031
3132
Parameters
@@ -66,9 +67,10 @@ class DIPSDGLDataset(DGLDataset):
6667
>>> # Get dataset
6768
>>> train_data = DIPSDGLDataset()
6869
>>> val_data = DIPSDGLDataset(mode='val')
70+
>>> test_data = DIPSDGLDataset(mode='test')
6971
>>>
7072
>>> len(train_data)
71-
33689
73+
15618
7274
>>> train_data.num_chains
7375
2
7476
"""
@@ -296,5 +298,5 @@ def raw_path(self) -> str:
296298

297299
@property
298300
def url(self) -> str:
299-
"""URL with which to download TAR archive of preprocessed pairs."""
300-
return 'https://zenodo.org/record/4815267/files/final_raw_dips.tar.gz?download=1'
301+
"""URL with which to download TAR archive of preprocessed pairs (Need to manually download Part B)."""
302+
return 'https://zenodo.org/record/5546775/files/final_processed_dips.tar.gz.partaa'

0 commit comments

Comments
 (0)