haneulpark commited on
Commit
92eff0c
·
verified ·
1 Parent(s): c8a9c47

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -0
README.md CHANGED
@@ -140,6 +140,29 @@ then, from within python load the datasets library
140
 
141
  and load one of the `Molecule3D` datasets, e.g.,
142
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
143
 
144
  ## Citation
145
  @misc{https://doi.org/10.48550/arxiv.2110.01717,
 
140
 
141
  and load one of the `Molecule3D` datasets, e.g.,
142
 
143
+ >>> Molecule3D = datasets.load_dataset('maomlab/Molecule3D', name = 'Molecule3D_random_split')
144
+ README.md: 100% 4.95k/4.95k [00:00<00:00, 559kB/s]
145
+ Generating train split: 100% 2339788/2339788 [00:34<00:00, 85817.85 examples/s]
146
+ Generating test split: 100% 779930/779930 [00:15<00:00, 96660.33 examples/s]
147
+ Generating validation split:  100% 779929/779929 [00:09<00:00, 79064.99 examples/s]
148
+
149
+ and inspecting the dataset
150
+
151
+ >>> Molecule3D
152
+ DatasetDict({
153
+ train: Dataset({
154
+ features: ['index', 'SMILES', 'sdf', 'cid', 'dipole x', 'dipole y', 'dipole z', 'homo', 'lumo', 'homolumogap', 'scf energy'],
155
+ num_rows: 2339788
156
+ })
157
+ test: Dataset({
158
+ features: ['index', 'SMILES', 'sdf', 'cid', 'dipole x', 'dipole y', 'dipole z', 'homo', 'lumo', 'homolumogap', 'scf energy'],
159
+ num_rows: 779930
160
+ })
161
+ validation: Dataset({
162
+ features: ['index', 'SMILES', 'sdf', 'cid', 'dipole x', 'dipole y', 'dipole z', 'homo', 'lumo', 'homolumogap', 'scf energy'],
163
+ num_rows: 779929
164
+ })
165
+ })
166
 
167
  ## Citation
168
  @misc{https://doi.org/10.48550/arxiv.2110.01717,