blaiszik commited on
Commit
a1936d2
·
verified ·
1 Parent(s): 8f4869c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +77 -17
README.md CHANGED
@@ -1,19 +1,79 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: inchi
5
- dtype: string
6
- - name: smiles
7
- dtype: string
8
- splits:
9
- - name: data
10
- num_bytes: 304628517
11
- num_examples: 1936962
12
- download_size: 140552445
13
- dataset_size: 304628517
14
- configs:
15
- - config_name: default
16
- data_files:
17
- - split: data
18
- path: data/data-*
19
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - tabular-regression
5
+ - tabular-classification
6
+ tags:
7
+ - materials-science
8
+ - chemistry
9
+ - foundry-ml
10
+ - scientific-data
11
+ size_categories:
12
+ - 1K<n<10K
 
 
 
 
 
 
13
  ---
14
+
15
+ # Molecular Sets (MOSES): A Benchmarking Platform for Molecular Generation Models
16
+
17
+
18
+
19
+ ## Dataset Information
20
+
21
+ - **Source**: [Foundry-ML](https://github.com/MLMI2-CSSI/foundry)
22
+ - **DOI**: [10.18126/rp13-3k3h](https://doi.org/10.18126/rp13-3k3h)
23
+ - **Year**: 2022
24
+ - **Authors**: Polykovskiy, Daniil, Zhebrak, Alexander, Sanchez-Lengeling, Benjamin, Golovanov, Sergey, Tatanov, Oktai, Belyaev, Stanislav, Kurbanov, Rauf, Artamonov, Aleksey, Aladinskiy, Vladimir, Veselov, Mark, Kadurin, Artur, Johansson, Simon, Chen, Hongming, Nikolenko, Sergey, Aspuru-Guzik, Alan, Zhavoronkov, Alex
25
+ - **Data Type**: tabular
26
+
27
+ ### Fields
28
+
29
+ | Field | Role | Description | Units |
30
+ |-------|------|-------------|-------|
31
+ | inchi | input | International Chemical Identifier (InChI) for the | |
32
+ | smiles | input | Simplified molecular-input line-entry system (SMIL | |
33
+
34
+
35
+ ### Splits
36
+
37
+ - **data**: train
38
+
39
+
40
+ ## Usage
41
+
42
+ ### With Foundry-ML (recommended for materials science workflows)
43
+
44
+ ```python
45
+ from foundry import Foundry
46
+
47
+ f = Foundry()
48
+ dataset = f.get_dataset("10.18126/rp13-3k3h")
49
+ X, y = dataset.get_as_dict()['train']
50
+ ```
51
+
52
+ ### With HuggingFace Datasets
53
+
54
+ ```python
55
+ from datasets import load_dataset
56
+
57
+ dataset = load_dataset("foundry_moses_v1.1")
58
+ ```
59
+
60
+ ## Citation
61
+
62
+ ```bibtex
63
+ @misc{https://doi.org/10.18126/rp13-3k3h
64
+ doi = {10.18126/rp13-3k3h}
65
+ url = {https://doi.org/10.18126/rp13-3k3h}
66
+ author = {Polykovskiy, Daniil and Zhebrak, Alexander and Sanchez-Lengeling, Benjamin and Golovanov, Sergey and Tatanov, Oktai and Belyaev, Stanislav and Kurbanov, Rauf and Artamonov, Aleksey and Aladinskiy, Vladimir and Veselov, Mark and Kadurin, Artur and Johansson, Simon and Chen, Hongming and Nikolenko, Sergey and Aspuru-Guzik, Alan and Zhavoronkov, Alex}
67
+ title = {Molecular Sets (MOSES): A Benchmarking Platform for Molecular Generation Models}
68
+ keywords = {machine learning, foundry, molecules, materials, moses}
69
+ publisher = {Materials Data Facility}
70
+ year = {root=2022}}
71
+ ```
72
+
73
+ ## License
74
+
75
+ CC-BY 4.0
76
+
77
+ ---
78
+
79
+ *This dataset was exported from [Foundry-ML](https://github.com/MLMI2-CSSI/foundry), a platform for materials science datasets.*