JessicaE commited on
Commit
4014d16
·
verified ·
1 Parent(s): 96f0a38

Add stratified-subset README

Browse files
Files changed (1) hide show
  1. README.md +6 -11
README.md CHANGED
@@ -46,16 +46,17 @@ tags:
46
 
47
  # OpenSeeSimE-Structural-Small
48
 
49
- A **stratified 10% 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**: **10,343** (10.07% of parent)
 
55
  - **Parquet shards**: 4 | **Storage**: ~15.60 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,10 +87,6 @@ A **stratified 10% subset** of [`cmudrc/OpenSeeSimE-Structural`](https://hugging
86
  | Pressure Vessel | 622 | 1040 | 412 | 2074 |
87
  | Wall Bracket | 618 | 1030 | 412 | 2060 |
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
-
93
  ## Feature Schema
94
 
95
  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.
@@ -112,11 +109,9 @@ Identical to the parent dataset. See [`cmudrc/OpenSeeSimE-Structural`](https://h
112
 
113
  ## Intended Use
114
 
115
- - Fast smoke-testing of VLM evaluation pipelines before running the full benchmark
116
- - Baseline training (e.g. CNN baselines) on a reduced footprint
117
- - Iteration on metric/aggregation code without 100k+ row overhead
118
-
119
- For rigorous benchmarking, use the parent dataset.
120
 
121
  ## License
122
 
 
46
 
47
  # OpenSeeSimE-Structural-Small
48
 
49
+ A **stratified 10% 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**: **10,343** (10.07% of parent)
55
+ - **Source classes**: `Beams`, `Dog Bone`, `Hip Implant`, `Pressure Vessel`, `Wall Bracket`
56
  - **Parquet shards**: 4 | **Storage**: ~15.60 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 | 622 | 1040 | 412 | 2074 |
88
  | Wall Bracket | 618 | 1030 | 412 | 2060 |
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