blaiszik commited on
Commit
3607f3f
·
verified ·
1 Parent(s): d11cbeb

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +81 -25
README.md CHANGED
@@ -1,27 +1,83 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: Passage
5
- dtype: string
6
- - name: DOI
7
- dtype: string
8
- - name: Material
9
- dtype: string
10
- - name: Rc
11
- dtype: float64
12
- - name: Unit
13
- dtype: string
14
- - name: log(Rc)
15
- dtype: float64
16
- splits:
17
- - name: train
18
- num_bytes: 157452
19
- num_examples: 297
20
- download_size: 63338
21
- dataset_size: 157452
22
- configs:
23
- - config_name: default
24
- data_files:
25
- - split: train
26
- path: data/train-*
27
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ # Extracting Accurate Materials Data from Research Papers with Conversational Language Models and Prompt Engineering
16
+
17
+ Dataset containing LLM-derived experimental critical cooling rates of 297 metallic glasses
18
+
19
+ ## Dataset Information
20
+
21
+ - **Source**: [Foundry-ML](https://github.com/MLMI2-CSSI/foundry)
22
+ - **DOI**: [10.18126/ndyp-yv32](https://doi.org/10.18126/ndyp-yv32)
23
+ - **Year**: 2024
24
+ - **Authors**: Polak, Maciej P., Morgan, Dane
25
+ - **Data Type**: tabular
26
+
27
+ ### Fields
28
+
29
+ | Field | Role | Description | Units |
30
+ |-------|------|-------------|-------|
31
+ | Passage | input | Text passage LLM found to get data | |
32
+ | DOI | input | Original data reference | |
33
+ | Material | input | Material composition | |
34
+ | Rc | input | Critical cooling rate | K/s |
35
+ | Unit | input | Critical cooling rate units | |
36
+ | log(Rc) | target | Critical cooling rate (log scale) | K/s |
37
+
38
+
39
+ ### Splits
40
+
41
+ - **train**: train
42
+
43
+
44
+ ## Usage
45
+
46
+ ### With Foundry-ML (recommended for materials science workflows)
47
+
48
+ ```python
49
+ from foundry import Foundry
50
+
51
+ f = Foundry()
52
+ dataset = f.get_dataset("10.18126/ndyp-yv32")
53
+ X, y = dataset.get_as_dict()['train']
54
+ ```
55
+
56
+ ### With HuggingFace Datasets
57
+
58
+ ```python
59
+ from datasets import load_dataset
60
+
61
+ dataset = load_dataset("Dataset_metallicglass_Rc_LLM")
62
+ ```
63
+
64
+ ## Citation
65
+
66
+ ```bibtex
67
+ @misc{https://doi.org/10.18126/ndyp-yv32
68
+ doi = {10.18126/ndyp-yv32}
69
+ url = {https://doi.org/10.18126/ndyp-yv32}
70
+ author = {Polak, Maciej P. and Morgan, Dane}
71
+ title = {Extracting Accurate Materials Data from Research Papers with Conversational Language Models and Prompt Engineering}
72
+ keywords = {machine learning, foundry}
73
+ publisher = {Materials Data Facility}
74
+ year = {root=2024}}
75
+ ```
76
+
77
+ ## License
78
+
79
+ other
80
+
81
+ ---
82
+
83
+ *This dataset was exported from [Foundry-ML](https://github.com/MLMI2-CSSI/foundry), a platform for materials science datasets.*