lingfli commited on
Commit
9fa1cbb
·
verified ·
1 Parent(s): 1478a69

Add dataset README

Browse files
Files changed (1) hide show
  1. README.md +61 -1
README.md CHANGED
@@ -1,3 +1,63 @@
1
  ---
2
- license: apache-2.0
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ pretty_name: ICM Hyperelastic Dataset
3
+ task_categories:
4
+ - tabular-regression
5
+ tags:
6
+ - hyperelasticity
7
+ - mechanics
8
+ - plane-strain
9
+ - plane-stress
10
+ - finite-element
11
  ---
12
+
13
+ # ICM Hyperelastic Dataset
14
+
15
+ This dataset accompanies the paper:
16
+
17
+ https://arxiv.org/abs/2604.23098
18
+
19
+ It contains compressed dataset archives used for training and evaluating models for hyperelastic material problems.
20
+
21
+ ## Dataset Splits
22
+
23
+ The archive names indicate the split and the mechanical setting:
24
+
25
+ | Name pattern | Meaning |
26
+ | --- | --- |
27
+ | `train` | Training set |
28
+ | `val105` | Test-ID |
29
+ | `val11` | Test-M |
30
+ | `val13D` | Test-MGL and Test-MGL+ |
31
+ | `pe` | Plane strain |
32
+ | `ps` | Plane stress |
33
+
34
+ For example:
35
+
36
+ - `dataset-train-pe.tar.zst`: training set under plane strain
37
+ - `dataset-train-ps.tar.zst`: training set under plane stress
38
+ - `dataset-val105-pe.tar.zst`: Test-ID under plane strain
39
+ - `dataset-val11-pe.tar.zst`: Test-M under plane strain
40
+ - `dataset-val13D-pe.tar.zst`: Test-MLB and Test-MLB+ under plane strain
41
+
42
+ ## Usage Notes
43
+
44
+ Except for the experimental validation results, which use the plane-stress dataset for training, all other results in the paper use the plane-strain dataset.
45
+
46
+ In the file names:
47
+
48
+ - `pe` denotes plane strain.
49
+ - `ps` denotes plane stress.
50
+
51
+ ## Citation
52
+
53
+ If you use this dataset, please cite the associated paper:
54
+
55
+ ```bibtex
56
+ @article{icm_hyperelastic_2026,
57
+ title = {ICM Hyperelastic Dataset},
58
+ author = {Please refer to the associated paper},
59
+ journal = {arXiv preprint arXiv:2604.23098},
60
+ year = {2026},
61
+ url = {https://arxiv.org/abs/2604.23098}
62
+ }
63
+ ```