cppyyy commited on
Commit
2a236a8
·
verified ·
1 Parent(s): 3f8e99e

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +141 -1
README.md CHANGED
@@ -1,3 +1,143 @@
1
  ---
2
- license: mit
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ pretty_name: TopoBox-3D
3
+ language:
4
+ - en
5
+ tags:
6
+ - neural-operators
7
+ - partial-differential-equations
8
+ - scientific-machine-learning
9
+ - topology
10
+ - hodge-laplacian
11
  ---
12
+
13
+ # TopoBox-3D
14
+
15
+ TopoBox-3D is the dataset accompanying **Beyond Arbitrary Geometry: Topology
16
+ Generalization in Neural PDE Operators**. It is a controlled three-dimensional
17
+ benchmark for separating fixed-topology geometry shift from generalization to
18
+ unseen homological support.
19
+
20
+ The benchmark contains 5,280 connected box-minus-void geometries and 63,360
21
+ fixed-time Hodge-heat instances. Through-tunnels and enclosed cavities control
22
+ the first and second Betti numbers. Every geometry is represented by a
23
+ tetrahedral mesh, geometry features, a regular-grid signed-distance field, and
24
+ an oriented simplicial complex. Hodge-heat data are provided for vertex, edge,
25
+ and face cochains (`k = 0, 1, 2`) under four initial-condition configurations.
26
+
27
+ ## Scope
28
+
29
+ | Item | Count |
30
+ |---|---:|
31
+ | Protocols | 4 |
32
+ | Geometries per protocol | 1,320 |
33
+ | Geometries in total | 5,280 |
34
+ | Degrees per geometry | 3 |
35
+ | Initial conditions per degree | 4 |
36
+ | PDE instances in total | 63,360 |
37
+ | Geometry HDF5 shards | 108 |
38
+ | Hodge-heat HDF5 shards | 212 |
39
+
40
+ Each protocol has 800 training, 120 validation, 200 Test-IID, and 200 Test-OOD
41
+ geometries. Geometry IDs are the atomic split unit.
42
+
43
+ | Protocol | In-support topology | Test-OOD topology | Shift |
44
+ |---|---|---|---|
45
+ | A | `(beta1, beta2) = (1, 1)`, family A | `(1, 1)`, family B | fixed-topology geometry |
46
+ | B | `beta1 in {0,1,2}, beta2 = 0` | `(3, 0)` | unseen tunnel support |
47
+ | C | `beta1 = 0, beta2 in {0,1,2}` | `(0, 3)` | unseen cavity support |
48
+ | D | `(beta1, beta2) in {0,1,2}^2` | `(3, 3)` | mixed topology |
49
+
50
+ ## Directory layout
51
+
52
+ ```text
53
+ TopoBox-3D/
54
+ ├── DATASET.md detailed geometry schema
55
+ ├── dataset_config.json generation and protocol configuration
56
+ ├── manifest.csv one row per geometry
57
+ ├── packed/ training-ready geometry HDF5 shards
58
+ │ ├── index.csv
59
+ │ ├── index.json
60
+ │ └── protocol_{A,B,C,D}/...
61
+ └── protocol_{A,B,C,D}/... raw per-geometry mesh data
62
+
63
+ TopoBox-3D-HodgeHeat/
64
+ ├── manifest.json equation and generation configuration
65
+ ├── index.csv
66
+ ├── index.json geometry-to-shard lookup
67
+ ├── COMPLETION.json completion and adapter checks
68
+ ├── audit_report.json deep numerical audit
69
+ └── protocol_{A,B,C,D}/... Hodge-heat HDF5 shards
70
+
71
+ examples/
72
+ └── TopoBox-3D-HodgeHeat-representatives/
73
+ lightweight topology and field previews
74
+
75
+ RELEASE.json release-level counts and provenance
76
+ SHA256SUMS.txt checksums for all published files
77
+ ```
78
+
79
+ The raw geometry layer contains `mesh.npz`, `mesh.msh`, `mesh.vtu`, and
80
+ `metadata.json` for every geometry. The packed layer stores the same numerical
81
+ content in HDF5 shards optimized for training. Both layers are included so the
82
+ release supports efficient experiments, per-sample inspection, and independent
83
+ repacking. The small `TopoBox-3D-mini` development subset is not duplicated in
84
+ this repository because it is derived from the complete release. The
85
+ `examples/` directory contains only lightweight previews referenced by the
86
+ saved completion record; it is not an additional data split.
87
+
88
+ ## Hodge-heat task
89
+
90
+ The supervised target is the fixed-time solution of
91
+
92
+ ```text
93
+ partial_t omega + kappa Delta_k omega = 0,
94
+ k in {0,1,2}, kappa = 1, T = 0.1.
95
+ ```
96
+
97
+ Targets use homogeneous absolute boundary conditions and 100
98
+ Crank--Nicolson steps. The four initial-condition configurations are
99
+ `non_harmonic`, `weak_harmonic`, `balanced`, and `strong_harmonic`. Geometry and
100
+ PDE records are joined by `geometry_id`.
101
+
102
+ ## Loading with the accompanying code
103
+
104
+ After placing this dataset under the code repository's `data/` directory, the
105
+ expected roots are:
106
+
107
+ ```text
108
+ data/TopoBox-3D/packed/
109
+ data/TopoBox-3D-HodgeHeat/
110
+ ```
111
+
112
+ ```python
113
+ from topobox3d.pde_dataset import TopoBoxPDEDataset
114
+
115
+ dataset = TopoBoxPDEDataset(
116
+ geometry_packed_root="data/TopoBox-3D/packed",
117
+ solution_root="data/TopoBox-3D-HodgeHeat",
118
+ protocol="B",
119
+ split="train",
120
+ degrees=(1,),
121
+ configs=("balanced",),
122
+ )
123
+
124
+ sample = dataset[0]
125
+ print(sample.geometry_id, sample.w0.shape, sample.wT.shape)
126
+ dataset.close()
127
+ ```
128
+
129
+ The accompanying code repository contains the generators, validators, model
130
+ adapters, training entry points, and complete schema documentation. Public
131
+ paper and code links will be added when the anonymous review period permits.
132
+
133
+ ## Integrity and validation
134
+
135
+ The geometry manifest and both HDF5 indices contain 5,280 unique geometry IDs.
136
+ The Hodge-heat release contains 212 shards and 63,360 PDE instances. The saved
137
+ deep audit reports zero errors. `SHA256SUMS.txt` can be used to verify the local
138
+ copy after download.
139
+
140
+ ## License and citation
141
+
142
+ License and final citation metadata have intentionally not been asserted during
143
+ anonymous review. They must be added before the public dataset is released.