blaiszik commited on
Commit
4aae5cd
·
verified ·
1 Parent(s): 1e5cc9b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +89 -41
README.md CHANGED
@@ -1,43 +1,91 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: material_id
5
- dtype: string
6
- - name: formula
7
- dtype: string
8
- - name: nsites
9
- dtype: int64
10
- - name: point_group
11
- dtype: string
12
- - name: space_group
13
- dtype: int64
14
- - name: volume
15
- dtype: float64
16
- - name: structure
17
- dtype: string
18
- - name: cif
19
- dtype: string
20
- - name: meta
21
- dtype: string
22
- - name: poscar
23
- dtype: string
24
- - name: eij_max
25
- dtype: float64
26
- - name: log(eij_max)
27
- dtype: float64
28
- - name: v_max
29
- dtype: string
30
- - name: piezoelectric_tensor
31
- dtype: string
32
- splits:
33
- - name: train
34
- num_bytes: 3587001
35
- num_examples: 941
36
- download_size: 1224873
37
- dataset_size: 3587001
38
- configs:
39
- - config_name: default
40
- data_files:
41
- - split: train
42
- path: data/train-*
43
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ # A database to enable discovery and design of piezoelectric materials
16
+
17
+ Dataset containing DFT-calculated piezoelectric properties for 941 materials
18
+
19
+ ## Dataset Information
20
+
21
+ - **Source**: [Foundry-ML](https://github.com/MLMI2-CSSI/foundry)
22
+ - **DOI**: [10.18126/p280-xrvg](https://doi.org/10.18126/p280-xrvg)
23
+ - **Year**: 2022
24
+ - **Authors**: de Jong, Maarten, Chen, Wei, Geerlings, Henry, Asta, Mark, Persson, Kristin A.
25
+ - **Data Type**: tabular
26
+
27
+ ### Fields
28
+
29
+ | Field | Role | Description | Units |
30
+ |-------|------|-------------|-------|
31
+ | material_id | input | Materials Project ID | |
32
+ | formula | input | Material composition | |
33
+ | nsites | input | Number of sites in the unit cell | |
34
+ | point_group | input | String denoting the point group of the structure | |
35
+ | space_group | input | Space group number | |
36
+ | volume | input | Volume of relaxed structure | Cubic Angstroms |
37
+ | structure | input | Pymatgen structure representation of material | |
38
+ | eij_max | target | Maximum longitudinal piezoelectric modulus | C/m2 |
39
+ | log(eij_max) | target | Log10 of eij_max | C/m2 |
40
+ | v_max | target | Crystallographic direction, corresponding to maxim | |
41
+ | piezoelectric_tensor | target | Tensor, describing piezoelectric behavior (IEEE-fo | C/m2 |
42
+ | cif | input | Material structure in CIF format | |
43
+ | meta | input | Summary of material metadata | |
44
+ | poscar | input | Material structure in POSCAR format | |
45
+
46
+
47
+ ### Splits
48
+
49
+ - **train**: train
50
+
51
+
52
+ ## Usage
53
+
54
+ ### With Foundry-ML (recommended for materials science workflows)
55
+
56
+ ```python
57
+ from foundry import Foundry
58
+
59
+ f = Foundry()
60
+ dataset = f.get_dataset("10.18126/p280-xrvg")
61
+ X, y = dataset.get_as_dict()['train']
62
+ ```
63
+
64
+ ### With HuggingFace Datasets
65
+
66
+ ```python
67
+ from datasets import load_dataset
68
+
69
+ dataset = load_dataset("piezoelectric_tensor_v1.1")
70
+ ```
71
+
72
+ ## Citation
73
+
74
+ ```bibtex
75
+ @misc{https://doi.org/10.18126/p280-xrvg
76
+ doi = {10.18126/p280-xrvg}
77
+ url = {https://doi.org/10.18126/p280-xrvg}
78
+ author = {de Jong, Maarten and Chen, Wei and Geerlings, Henry and Asta, Mark and Persson, Kristin A.}
79
+ title = {A database to enable discovery and design of piezoelectric materials}
80
+ keywords = {machine learning, foundry}
81
+ publisher = {Materials Data Facility}
82
+ year = {root=2022}}
83
+ ```
84
+
85
+ ## License
86
+
87
+ CC-BY 4.0
88
+
89
+ ---
90
+
91
+ *This dataset was exported from [Foundry-ML](https://github.com/MLMI2-CSSI/foundry), a platform for materials science datasets.*