Update README.md
Browse files
README.md
CHANGED
|
@@ -47,6 +47,14 @@ Each archive follows the ABC dataset structure: files are organized as `{modalit
|
|
| 47 |
| `text_annotations.zip` | Natural language annotations describing the geometry, topology, and design intent of each model, obtained with GPT-OSS-120b. |
|
| 48 |
| `step.zip` | STEP files with B-rep geometry. Rendered from `featurescript_fp.zip` where possible, or `featurescript_rp.zip` otherwise. |
|
| 49 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 50 |
### `raw/` — Raw Source Data
|
| 51 |
|
| 52 |
Source data used to create the processed FeatureScript representation.
|
|
@@ -63,15 +71,15 @@ Source data used to create the processed FeatureScript representation.
|
|
| 63 |
|
| 64 |
Minimal data required to perform evaluation, without the need to download the full dataset. A `.json` metadata file and a `.zip` archive are provided for each benchmark:
|
| 65 |
|
| 66 |
-
| Benchmark | Contents |
|
| 67 |
-
|-----------|----------|
|
| 68 |
-
| **CADFS** | jsonl, fs, annotations, images, step, stl |
|
| 69 |
-
| **DeepCAD** | jsonl, fs, annotations, images, step, stl |
|
| 70 |
-
| **CADParser** | jsonl, images, step, stl |
|
| 71 |
|
| 72 |
### `train_data/` — Training Splits
|
| 73 |
|
| 74 |
-
Training data is split into two stages following the
|
| 75 |
|
| 76 |
| File | Stage | Modality | Description |
|
| 77 |
|------|-------|----------|-------------|
|
|
|
|
| 47 |
| `text_annotations.zip` | Natural language annotations describing the geometry, topology, and design intent of each model, obtained with GPT-OSS-120b. |
|
| 48 |
| `step.zip` | STEP files with B-rep geometry. Rendered from `featurescript_fp.zip` where possible, or `featurescript_rp.zip` otherwise. |
|
| 49 |
|
| 50 |
+
### `misc/` — Helpers
|
| 51 |
+
| File | Description |
|
| 52 |
+
|------|-------------|
|
| 53 |
+
| `DeepCAD_train_val_test_split.json` | DeepCAD train/val/test split. |
|
| 54 |
+
| `stage1_indices.json` | Models with only sketch/extrude operations used in train stage 1. |
|
| 55 |
+
| `unique_models.json` | Subset of 382609 CADFS models selected by filtering out duplicate models (same FeatureScript or geometry). |
|
| 56 |
+
|
| 57 |
+
|
| 58 |
### `raw/` — Raw Source Data
|
| 59 |
|
| 60 |
Source data used to create the processed FeatureScript representation.
|
|
|
|
| 71 |
|
| 72 |
Minimal data required to perform evaluation, without the need to download the full dataset. A `.json` metadata file and a `.zip` archive are provided for each benchmark:
|
| 73 |
|
| 74 |
+
| Benchmark | Contents | Description |
|
| 75 |
+
|-----------|----------|-------------|
|
| 76 |
+
| **CADFS** | jsonl, fs, annotations, images, step, stl | 9347 models sampled from the full CADFS dataset, excluding DeepCAD train/val/test split. |
|
| 77 |
+
| **DeepCAD** | jsonl, fs, annotations, images, step, stl | 7278 models from the original DeepCAD test set. |
|
| 78 |
+
| **CADParser** | jsonl, images, step, stl | 6764 models from the CADParser, the subset is selected by `index_1` in the model name. |
|
| 79 |
|
| 80 |
### `train_data/` — Training Splits
|
| 81 |
|
| 82 |
+
Training data is split into two stages following the two-stage fine-tuning strategy described in the paper, and two input modalities each. We filtered out duplicates and kept only samples whose input and output fit within a context size of 8192 tokens.
|
| 83 |
|
| 84 |
| File | Stage | Modality | Description |
|
| 85 |
|------|-------|----------|-------------|
|