JessicaE commited on
Commit
ed7b922
·
verified ·
1 Parent(s): fcdd86f

Add stratified-subset README

Browse files
Files changed (1) hide show
  1. README.md +6 -12
README.md CHANGED
@@ -46,16 +46,17 @@ tags:
46
 
47
  # OpenSeeSimE-Structural-Mini
48
 
49
- A **stratified 1% subset** of [`cmudrc/OpenSeeSimE-Structural`](https://huggingface.co/datasets/cmudrc/OpenSeeSimE-Structural), intended for quicker iteration, smoke tests, and baseline training on reduced data.
50
 
51
  ## Subset Provenance
52
 
53
  - **Parent dataset**: [`cmudrc/OpenSeeSimE-Structural`](https://huggingface.co/datasets/cmudrc/OpenSeeSimE-Structural) (102,678 rows total)
54
  - **Rows in this subset**: **1,120** (1.09% of parent)
 
55
  - **Parquet shards**: 1 | **Storage**: ~1.73 GB
56
  - **Sampling**: per-stratum shuffle with `numpy.random.default_rng(42)`, then take `ceil(n * fraction)` from each stratum. Any non-empty stratum contributes at least 1 row.
57
  - **Strata**: `(source_file, question_type, media_type, question_id)` — all four jointly.
58
- - **Nesting**: `Mini ⊂ Small ⊂ parent`. The same shuffled prefix is taken for every fraction, so the 1% subset is a literal subset of the 10% subset.
59
 
60
  ## Composition
61
 
@@ -86,11 +87,6 @@ A **stratified 1% subset** of [`cmudrc/OpenSeeSimE-Structural`](https://huggingf
86
  | Pressure Vessel | 66 | 110 | 44 | 220 |
87
  | Wall Bracket | 66 | 110 | 44 | 220 |
88
 
89
- ## Deviations from Parent
90
-
91
- - **`Beam` → `Beams` relabel**: 20 rows in the parent dataset were mislabeled `source_file='Beam'` (singular) when they should have been `'Beams'` (plural). In this subset, those rows have been merged into `'Beams'`. The 5 `source_file` classes in this subset are: `Beams`, `Dog Bone`, `Hip Implant`, `Pressure Vessel`, `Wall Bracket`.
92
- - **Nested**: `Mini` is a strict subset of `Structural-Small`, which is a strict subset of `cmudrc/OpenSeeSimE-Structural`. Any row appearing in `Mini` also appears in `Structural-Small`.
93
-
94
  ## Feature Schema
95
 
96
  Identical to the parent dataset. See [`cmudrc/OpenSeeSimE-Structural`](https://huggingface.co/datasets/cmudrc/OpenSeeSimE-Structural) for full documentation of simulation generation, ground-truth extraction, preprocessing, limitations, and intended use.
@@ -113,11 +109,9 @@ Identical to the parent dataset. See [`cmudrc/OpenSeeSimE-Structural`](https://h
113
 
114
  ## Intended Use
115
 
116
- - Fast smoke-testing of VLM evaluation pipelines before running the full benchmark
117
- - Baseline training (e.g. CNN baselines) on a reduced footprint
118
- - Iteration on metric/aggregation code without 100k+ row overhead
119
-
120
- For rigorous benchmarking, use the parent dataset.
121
 
122
  ## License
123
 
 
46
 
47
  # OpenSeeSimE-Structural-Mini
48
 
49
+ A **stratified 1% subset** of [`cmudrc/OpenSeeSimE-Structural`](https://huggingface.co/datasets/cmudrc/OpenSeeSimE-Structural) for evaluating vision-language models at a reduced compute footprint while preserving the joint distribution of simulation type, question type, media type, and question id.
50
 
51
  ## Subset Provenance
52
 
53
  - **Parent dataset**: [`cmudrc/OpenSeeSimE-Structural`](https://huggingface.co/datasets/cmudrc/OpenSeeSimE-Structural) (102,678 rows total)
54
  - **Rows in this subset**: **1,120** (1.09% of parent)
55
+ - **Source classes**: `Beams`, `Dog Bone`, `Hip Implant`, `Pressure Vessel`, `Wall Bracket`
56
  - **Parquet shards**: 1 | **Storage**: ~1.73 GB
57
  - **Sampling**: per-stratum shuffle with `numpy.random.default_rng(42)`, then take `ceil(n * fraction)` from each stratum. Any non-empty stratum contributes at least 1 row.
58
  - **Strata**: `(source_file, question_type, media_type, question_id)` — all four jointly.
59
+ - **Nesting**: the 1% subset is a literal subset of the 10% subset (same shuffled prefix is taken for every fraction).
60
 
61
  ## Composition
62
 
 
87
  | Pressure Vessel | 66 | 110 | 44 | 220 |
88
  | Wall Bracket | 66 | 110 | 44 | 220 |
89
 
 
 
 
 
 
90
  ## Feature Schema
91
 
92
  Identical to the parent dataset. See [`cmudrc/OpenSeeSimE-Structural`](https://huggingface.co/datasets/cmudrc/OpenSeeSimE-Structural) for full documentation of simulation generation, ground-truth extraction, preprocessing, limitations, and intended use.
 
109
 
110
  ## Intended Use
111
 
112
+ - Benchmark evaluation of vision-language models on engineering simulation question answering at reduced compute cost
113
+ - Smoke-testing of evaluation pipelines before running the full benchmark
114
+ - Comparative studies where storage or bandwidth constraints matter
 
 
115
 
116
  ## License
117