alagesse commited on
Commit
f66b80e
·
verified ·
1 Parent(s): f3be8fa

Upload README.zinc-250k.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.zinc-250k.md +56 -0
README.zinc-250k.md ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: []
3
+ pretty_name: ZINC-250K
4
+ config_name: zinc-250k
5
+ dataset_size: 20766522
6
+ size_categories: 100K<n<1M
7
+ license: other
8
+ license_link: https://zinc15.docking.org/usage/
9
+ tags:
10
+ - graphs
11
+ - molecules
12
+ - chemistry
13
+ - parquet
14
+ - torch-geometric
15
+ task_categories:
16
+ - graph-regression
17
+ homepage: https://zinc15.docking.org/
18
+ ---
19
+
20
+ # zinc-250k
21
+
22
+ Large-scale ZINC molecular graphs with categorical atom/bond encodings for regression of constrained solubility targets.
23
+
24
+ **License:** ZINC 15 terms of use (public domain molecules, cite ZINC)
25
+
26
+ ## Splits
27
+
28
+ | Split | Rows | File | Size (MB) |
29
+ | --- | ---: | --- | ---: |
30
+ | train | 220,011 | `train.parquet` | 18.30 |
31
+ | validation | 24,445 | `val.parquet` | 2.04 |
32
+ | test | 5,000 | `test.parquet` | 0.42 |
33
+
34
+ ## Features
35
+
36
+ - **mol_id**: int64 unique identifier per molecule
37
+ - **x**: list[int64], shape (num_nodes,), atomic type categorical index
38
+ - **edge_index**: int64[2, num_edges], COO adjacency
39
+ - **edge_attr**: list[int64], shape (num_edges,), bond type categorical index
40
+ - **num_nodes**: int64 number of atoms
41
+ - **y**: float32 graph-level target (constrained solubility)
42
+
43
+ ## Citation
44
+
45
+ ```
46
+ @article{irwin2012zinc,
47
+ title={ZINC: A Free Tool to Discover Chemistry for Biology},
48
+ author={Irwin, John J and Sterling, Teague and Mysinger, Michael M and Bolstad, Erik S and Coleman, Ryan G},
49
+ journal={Journal of Chemical Information and Modeling},
50
+ volume={52},
51
+ number={7},
52
+ pages={1757--1768},
53
+ year={2012},
54
+ publisher={American Chemical Society}
55
+ }
56
+ ```