blaiszik commited on
Commit
8bf37e3
·
verified ·
1 Parent(s): a15bd50

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +95 -51
README.md CHANGED
@@ -1,53 +1,97 @@
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: space_group
11
- dtype: int64
12
- - name: volume
13
- dtype: float64
14
- - name: structure
15
- dtype: string
16
- - name: cif
17
- dtype: string
18
- - name: poscar
19
- dtype: string
20
- - name: elastic_anisotropy
21
- dtype: float64
22
- - name: G_Reuss
23
- dtype: float64
24
- - name: G_VRH
25
- dtype: float64
26
- - name: G_Voigt
27
- dtype: float64
28
- - name: K_Reuss
29
- dtype: float64
30
- - name: K_VRH
31
- dtype: float64
32
- - name: K_Voigt
33
- dtype: float64
34
- - name: poisson_ratio
35
- dtype: float64
36
- - name: compliance_tensor
37
- dtype: string
38
- - name: elastic_tensor
39
- dtype: string
40
- - name: elastic_tensor_original
41
- dtype: string
42
- splits:
43
- - name: train
44
- num_bytes: 5741290
45
- num_examples: 1181
46
- download_size: 1691321
47
- dataset_size: 5741290
48
- configs:
49
- - config_name: default
50
- data_files:
51
- - split: train
52
- path: data/train-*
53
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ # Charting the complete elastic properties of inorganic crystalline compounds
16
+
17
+ Dataset containing DFT-calculated elastic properties for 1181 materials
18
+
19
+ ## Dataset Information
20
+
21
+ - **Source**: [Foundry-ML](https://github.com/MLMI2-CSSI/foundry)
22
+ - **DOI**: [10.18126/9fg1-528u](https://doi.org/10.18126/9fg1-528u)
23
+ - **Year**: 2022
24
+ - **Authors**: de Jong, Maarten, Chen, Wei, Angsten, Thomas, Jain, Anubhav, Notestine, Randy, Gamst, Anthong, Sluiter, Marcel, Ande, Chaitanya Krishna, van der Zwaag, Sybrand, Plata, Jose J., Toher, Cormac, Curtarolo, Stefano, Ceder, Gerbrand, Persson, Kristin A., Asta, Mark
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
+ | space_group | input | Space group number | |
35
+ | volume | input | Volume of relaxed structure | Cubic Angstroms |
36
+ | structure | input | Pymatgen structure representation of material | |
37
+ | elastic_anisotropy | target | Description of elastic anisotropy | |
38
+ | G_Reuss | target | Shear modulus, lower bound for polycrystal | GPa |
39
+ | G_VRH | target | Average shear modulus | GPa |
40
+ | G_Voigt | target | Shear modulus, upper bound for polycrystal | GPa |
41
+ | K_Reuss | target | Bulk modulus, lower bound for polycrystal | GPa |
42
+ | K_VRH | target | Average bulk modulus | GPa |
43
+ | K_Voigt | target | Bulk modulus, upper bound for polycrystal | GPa |
44
+ | poisson_ratio | target | Describes lateral response to loading | |
45
+ | compliance_tensor | target | Tensor, describing elastic behavior | GPa |
46
+ | elastic_tensor | target | Tensor, describing elastic behavior in IEEE-format | GPa |
47
+ | elastic_tensor_original | target | Tensor, describing elastic behavior, corresponding | GPa |
48
+ | cif | input | Material structure in CIF format | |
49
+ | kpoint_density | N/A | K-point density used in DFT calculation | |
50
+ | poscar | input | Material structure in POSCAR format | |
51
+
52
+
53
+ ### Splits
54
+
55
+ - **train**: train
56
+
57
+
58
+ ## Usage
59
+
60
+ ### With Foundry-ML (recommended for materials science workflows)
61
+
62
+ ```python
63
+ from foundry import Foundry
64
+
65
+ f = Foundry()
66
+ dataset = f.get_dataset("10.18126/9fg1-528u")
67
+ X, y = dataset.get_as_dict()['train']
68
+ ```
69
+
70
+ ### With HuggingFace Datasets
71
+
72
+ ```python
73
+ from datasets import load_dataset
74
+
75
+ dataset = load_dataset("elastic_tensor_v1.1")
76
+ ```
77
+
78
+ ## Citation
79
+
80
+ ```bibtex
81
+ @misc{https://doi.org/10.18126/9fg1-528u
82
+ doi = {10.18126/9fg1-528u}
83
+ url = {https://doi.org/10.18126/9fg1-528u}
84
+ author = {de Jong, Maarten and Chen, Wei and Angsten, Thomas and Jain, Anubhav and Notestine, Randy and Gamst, Anthong and Sluiter, Marcel and Ande, Chaitanya Krishna and van der Zwaag, Sybrand and Plata, Jose J. and Toher, Cormac and Curtarolo, Stefano and Ceder, Gerbrand and Persson, Kristin A. and Asta, Mark}
85
+ title = {Charting the complete elastic properties of inorganic crystalline compounds}
86
+ keywords = {machine learning, foundry}
87
+ publisher = {Materials Data Facility}
88
+ year = {root=2022}}
89
+ ```
90
+
91
+ ## License
92
+
93
+ CC-BY 4.0
94
+
95
+ ---
96
+
97
+ *This dataset was exported from [Foundry-ML](https://github.com/MLMI2-CSSI/foundry), a platform for materials science datasets.*