Update README.md
Browse files
README.md
CHANGED
@@ -1,26 +1,18 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
configs:
|
20 |
-
- config_name: default
|
21 |
-
data_files:
|
22 |
-
- split: train
|
23 |
-
path: data/train-*
|
24 |
-
- split: test
|
25 |
-
path: data/test-*
|
26 |
-
---
|
|
|
1 |
+
# Dataset Card for Masked Floorplans (Alpaca-style)
|
2 |
+
|
3 |
+
## Summary
|
4 |
+
|
5 |
+
This dataset contains structured JSON representations of residential floorplans where **one room has been removed (masked)**. Each example follows the **Alpaca-style instruction format** to fine-tune a language model to **predict the missing room's geometric attributes** based on a partial plan and a semantic conditioning signal.
|
6 |
+
|
7 |
+
## Format
|
8 |
+
|
9 |
+
Each sample is a JSON object with the following fields:
|
10 |
+
|
11 |
+
- **instruction**: A prompt like `"Predict the geometry of the missing room."`
|
12 |
+
- **input**: A JSON-encoded partial floorplan with visible rooms and the type of the masked room.
|
13 |
+
- **output**: The ground-truth geometry of the missing room, including polygon coordinates, area, orientation, and adjacency.
|
14 |
+
|
15 |
+
## Use Cases
|
16 |
+
- Instruction-tuning of LLMs for geometric reasoning
|
17 |
+
- Floorplan infill or layout prediction
|
18 |
+
- Generative design based on semantic layout context
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|