blaiszik commited on
Commit
dfdbdbf
·
verified ·
1 Parent(s): c9f3138

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +82 -27
README.md CHANGED
@@ -1,29 +1,84 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: Composition
5
- dtype: string
6
- - name: Reference
7
- dtype: string
8
- - name: Tg_[K]
9
- dtype: float64
10
- - name: Tx_[K]
11
- dtype: float64
12
- - name: Tl_[K]
13
- dtype: float64
14
- - name: Zmax_[mm]
15
- dtype: float64
16
- - name: Dmax_[mm]
17
- dtype: float64
18
- splits:
19
- - name: train
20
- num_bytes: 92453
21
- num_examples: 998
22
- download_size: 29464
23
- dataset_size: 92453
24
- configs:
25
- - config_name: default
26
- data_files:
27
- - split: train
28
- path: data/train-*
29
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ # Metallic Glasses and their Properties
16
+
17
+ Dataset containing experimental max casting diameters of 998 metallic glasses
18
+
19
+ ## Dataset Information
20
+
21
+ - **Source**: [Foundry-ML](https://github.com/MLMI2-CSSI/foundry)
22
+ - **DOI**: [10.18126/fs5e-kr15](https://doi.org/10.18126/fs5e-kr15)
23
+ - **Year**: 2021
24
+ - **Authors**: Voyles, Paul M, Schultz, Lane E., Morgan, Dane, Francis, Carter, Afflerbach, Benjamin, Hakeem, Abdulrhman
25
+ - **Data Type**: tabular
26
+
27
+ ### Fields
28
+
29
+ | Field | Role | Description | Units |
30
+ |-------|------|-------------|-------|
31
+ | Composition | input | Material composition | |
32
+ | Reference | input | Original data reference | |
33
+ | Tg_[K] | input | Glass transition temperature | K |
34
+ | Tx_[K] | input | Crystallization temperature | K |
35
+ | Tl_[K] | input | Liquidus temperature | K |
36
+ | Zmax_[mm] | input | Maximum casting size | mm |
37
+ | Dmax_[mm] | target | Maximum casting diameter | mm |
38
+
39
+
40
+ ### Splits
41
+
42
+ - **train**: train
43
+
44
+
45
+ ## Usage
46
+
47
+ ### With Foundry-ML (recommended for materials science workflows)
48
+
49
+ ```python
50
+ from foundry import Foundry
51
+
52
+ f = Foundry()
53
+ dataset = f.get_dataset("10.18126/fs5e-kr15")
54
+ X, y = dataset.get_as_dict()['train']
55
+ ```
56
+
57
+ ### With HuggingFace Datasets
58
+
59
+ ```python
60
+ from datasets import load_dataset
61
+
62
+ dataset = load_dataset("Dataset_metallicglass_Dmax")
63
+ ```
64
+
65
+ ## Citation
66
+
67
+ ```bibtex
68
+ @misc{https://doi.org/10.18126/fs5e-kr15
69
+ doi = {10.18126/fs5e-kr15}
70
+ url = {https://doi.org/10.18126/fs5e-kr15}
71
+ author = {Voyles, Paul M and Schultz, Lane E. and Morgan, Dane and Francis, Carter and Afflerbach, Benjamin and Hakeem, Abdulrhman}
72
+ title = {Metallic Glasses and their Properties}
73
+ keywords = {machine learning, foundry}
74
+ publisher = {Materials Data Facility}
75
+ year = {root=2021}}
76
+ ```
77
+
78
+ ## License
79
+
80
+ other
81
+
82
+ ---
83
+
84
+ *This dataset was exported from [Foundry-ML](https://github.com/MLMI2-CSSI/foundry), a platform for materials science datasets.*