blaiszik commited on
Commit
90ef9ef
·
verified ·
1 Parent(s): 9e2ec6d

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: formula
5
- dtype: string
6
- - name: target
7
- dtype: float64
8
- splits:
9
- - name: train
10
- num_bytes: 206544
11
- num_examples: 9646
12
- download_size: 100184
13
- dataset_size: 206544
14
- configs:
15
- - config_name: default
16
- data_files:
17
- - split: train
18
- path: data/train-*
19
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: other
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
+ # Computational screening of perovskite metal oxides for optimal solar light capture
16
+
17
+ Dataset containing 9646 perovskite formation energy data points
18
+
19
+ ## Dataset Information
20
+
21
+ - **Source**: [Foundry-ML](https://github.com/MLMI2-CSSI/foundry)
22
+ - **DOI**: [10.18126/xmh8-d711](https://doi.org/10.18126/xmh8-d711)
23
+ - **Year**: 2011
24
+ - **Authors**: Castelli, Ivano E., Olsen, Thomas, Datta, Soumendu, Landis, David D., Dahl, Søren, Thygesena, Kristian S., Jacobsen, Karsten W.
25
+ - **Data Type**: tabular
26
+
27
+ ### Fields
28
+
29
+ | Field | Role | Description | Units |
30
+ |-------|------|-------------|-------|
31
+ | formula | input | Material composition | |
32
+ | target | target | Formation energy | eV/atom |
33
+
34
+
35
+ ### Splits
36
+
37
+ - **train**: 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/xmh8-d711")
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("Dataset_perovskite_formationE")
58
+ ```
59
+
60
+ ## Citation
61
+
62
+ ```bibtex
63
+ @misc{https://doi.org/10.18126/xmh8-d711
64
+ doi = {10.18126/xmh8-d711}
65
+ url = {https://doi.org/10.18126/xmh8-d711}
66
+ author = {Castelli, Ivano E. and Olsen, Thomas and Datta, Soumendu and Landis, David D. and Dahl, Søren and Thygesena, Kristian S. and Jacobsen, Karsten W.}
67
+ title = {Computational screening of perovskite metal oxides for optimal solar light capture}
68
+ keywords = {machine learning, foundry}
69
+ publisher = {Materials Data Facility}
70
+ year = {root=2011}}
71
+ ```
72
+
73
+ ## License
74
+
75
+ other
76
+
77
+ ---
78
+
79
+ *This dataset was exported from [Foundry-ML](https://github.com/MLMI2-CSSI/foundry), a platform for materials science datasets.*