update script
Browse files- binding_affinity.py +2 -1
binding_affinity.py
CHANGED
@@ -14,6 +14,7 @@
|
|
14 |
# limitations under the License.
|
15 |
"""TODO: A dataset of protein sequences, ligand SMILES and binding affinities."""
|
16 |
|
|
|
17 |
import pandas
|
18 |
import os
|
19 |
|
@@ -47,7 +48,7 @@ _LICENSE = "BSD two-clause"
|
|
47 |
# The HuggingFace dataset library don't host the datasets but only point to the original files
|
48 |
# This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
|
49 |
_URLs = {
|
50 |
-
'default': "https://huggingface.co/datasets/jglaser/binding_affinity/
|
51 |
}
|
52 |
|
53 |
|
|
|
14 |
# limitations under the License.
|
15 |
"""TODO: A dataset of protein sequences, ligand SMILES and binding affinities."""
|
16 |
|
17 |
+
import huggingface_hub
|
18 |
import pandas
|
19 |
import os
|
20 |
|
|
|
48 |
# The HuggingFace dataset library don't host the datasets but only point to the original files
|
49 |
# This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
|
50 |
_URLs = {
|
51 |
+
'default': "https://huggingface.co/datasets/jglaser/binding_affinity/resolve/main/data/all.parquet",
|
52 |
}
|
53 |
|
54 |
|