blaiszik commited on
Commit
15dd708
·
verified ·
1 Parent(s): 30768de

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +84 -74
README.md CHANGED
@@ -1,76 +1,86 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: reference
5
- dtype: string
6
- - name: icsd_id
7
- sequence: int64
8
- - name: structure
9
- struct:
10
- - name: '@class'
11
- dtype: string
12
- - name: '@module'
13
- dtype: string
14
- - name: charge
15
- dtype: 'null'
16
- - name: lattice
17
- struct:
18
- - name: a
19
- dtype: float64
20
- - name: alpha
21
- dtype: float64
22
- - name: b
23
- dtype: float64
24
- - name: beta
25
- dtype: float64
26
- - name: c
27
- dtype: float64
28
- - name: gamma
29
- dtype: float64
30
- - name: matrix
31
- sequence:
32
- sequence: float64
33
- - name: volume
34
- dtype: float64
35
- - name: sites
36
- list:
37
- - name: abc
38
- sequence: float64
39
- - name: label
40
- dtype: string
41
- - name: properties
42
- struct:
43
- - name: magmom
44
- dtype: float64
45
- - name: species
46
- list:
47
- - name: element
48
- dtype: string
49
- - name: occu
50
- dtype: int64
51
- - name: xyz
52
- sequence: float64
53
- - name: composition
54
- dtype: string
55
- - name: comments
56
- dtype: string
57
- - name: bandgap type
58
- dtype: string
59
- - name: comp method
60
- dtype: string
61
- - name: space group
62
- dtype: string
63
- - name: bandgap value (eV)
64
- dtype: float64
65
- splits:
66
- - name: train
67
- num_bytes: 168430067
68
- num_examples: 74992
69
- download_size: 85394436
70
- dataset_size: 168430067
71
- configs:
72
- - config_name: default
73
- data_files:
74
- - split: train
75
- path: data/train-*
76
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ # Graph Network Based Deep Learning of Band Gaps - Materials Project PBE Band Gaps
16
+
17
+
18
+
19
+ ## Dataset Information
20
+
21
+ - **Source**: [Foundry-ML](https://github.com/MLMI2-CSSI/foundry)
22
+ - **DOI**: [10.18126/vjwr-5bs9](https://doi.org/10.18126/vjwr-5bs9)
23
+ - **Year**: 2021
24
+ - **Authors**: Li, Xiang-Guo, Blaiszik, Ben, Schwarting, Marcus, Jacobs, Ryan, Scourtas, Aristana, Schmidt, KJ, Voyles, Paul, Morgan, Dane
25
+ - **Data Type**: tabular
26
+
27
+ ### Fields
28
+
29
+ | Field | Role | Description | Units |
30
+ |-------|------|-------------|-------|
31
+ | reference | input | source publication of the band gap value | |
32
+ | icsd_id | input | corresponding id in ICSD of this compound | |
33
+ | structure | input | the structure of this compound | |
34
+ | composition | input | reduced composition of this compound | |
35
+ | comments | input | Additional information about this bandgap measurem | |
36
+ | bandgap type | input | the type of the band gap, e.g., direct or indirect | |
37
+ | comp method | input | functional used to calculate the band gap | |
38
+ | space group | input | the space group of this compound | |
39
+ | bandgap value (eV) | target | value of the band gap | eV |
40
+
41
+
42
+ ### Splits
43
+
44
+ - **train**: train
45
+
46
+
47
+ ## Usage
48
+
49
+ ### With Foundry-ML (recommended for materials science workflows)
50
+
51
+ ```python
52
+ from foundry import Foundry
53
+
54
+ f = Foundry()
55
+ dataset = f.get_dataset("10.18126/vjwr-5bs9")
56
+ X, y = dataset.get_as_dict()['train']
57
+ ```
58
+
59
+ ### With HuggingFace Datasets
60
+
61
+ ```python
62
+ from datasets import load_dataset
63
+
64
+ dataset = load_dataset("foundry_mp_band_gaps_v1.1")
65
+ ```
66
+
67
+ ## Citation
68
+
69
+ ```bibtex
70
+ @misc{https://doi.org/10.18126/vjwr-5bs9
71
+ doi = {10.18126/vjwr-5bs9}
72
+ url = {https://doi.org/10.18126/vjwr-5bs9}
73
+ author = {Li, Xiang-Guo and Blaiszik, Ben and Schwarting, Marcus and Jacobs, Ryan and Scourtas, Aristana and Schmidt, KJ and Voyles, Paul and Morgan, Dane}
74
+ title = {Graph Network Based Deep Learning of Band Gaps - Materials Project PBE Band Gaps}
75
+ keywords = {machine learning, foundry, band gap, neural network}
76
+ publisher = {Materials Data Facility}
77
+ year = {root=2021}}
78
+ ```
79
+
80
+ ## License
81
+
82
+ CC-BY 4.0
83
+
84
+ ---
85
+
86
+ *This dataset was exported from [Foundry-ML](https://github.com/MLMI2-CSSI/foundry), a platform for materials science datasets.*