Datasets:
ryokanazawa commited on
Commit ·
8bb00bb
1
Parent(s): 675d894
Add Ishigaki-IDS-Bench dataset release
Browse files- README.md +64 -0
- data/test.jsonl +0 -0
README.md
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- text-generation
|
| 5 |
+
language:
|
| 6 |
+
- ja
|
| 7 |
+
- en
|
| 8 |
+
tags:
|
| 9 |
+
- ids
|
| 10 |
+
- ifc
|
| 11 |
+
- bim
|
| 12 |
+
- construction
|
| 13 |
+
- buildingSMART
|
| 14 |
+
pretty_name: Ishigaki-IDS-Bench
|
| 15 |
+
configs:
|
| 16 |
+
- config_name: default
|
| 17 |
+
data_files:
|
| 18 |
+
- split: test
|
| 19 |
+
path: data/test.jsonl
|
| 20 |
+
---
|
| 21 |
+
|
| 22 |
+
# Ishigaki-IDS-Bench
|
| 23 |
+
|
| 24 |
+
Ishigaki-IDS-Bench is a bilingual benchmark for generating buildingSMART IDS 1.0 XML from user-facing building requirements.
|
| 25 |
+
|
| 26 |
+
## Data Format
|
| 27 |
+
|
| 28 |
+
Each row uses the common conversational `messages` format:
|
| 29 |
+
|
| 30 |
+
```json
|
| 31 |
+
{
|
| 32 |
+
"id": "row-0001",
|
| 33 |
+
"messages": [
|
| 34 |
+
{"role": "user", "content": "..."},
|
| 35 |
+
{"role": "assistant", "content": "..."}
|
| 36 |
+
],
|
| 37 |
+
"language": "ja",
|
| 38 |
+
"input_format": "natural_language",
|
| 39 |
+
"turn_type": "single_turn",
|
| 40 |
+
"domain": "architectural",
|
| 41 |
+
"ifc_versions": ["IFC4"]
|
| 42 |
+
}
|
| 43 |
+
```
|
| 44 |
+
|
| 45 |
+
The final assistant message is the gold IDS XML. The evaluation input is `messages[:-1]`.
|
| 46 |
+
|
| 47 |
+
## Fields
|
| 48 |
+
|
| 49 |
+
- `id`: example identifier.
|
| 50 |
+
- `messages`: multi-turn conversation in `role`/`content` format.
|
| 51 |
+
- `language`: `ja` or `en`.
|
| 52 |
+
- `input_format`: `natural_language` or `csv`.
|
| 53 |
+
- `turn_type`: `single_turn` or `multi_turn`.
|
| 54 |
+
- `domain`: `architectural`, `structural`, `mep`, or `general`.
|
| 55 |
+
- `ifc_versions`: target IFC version labels.
|
| 56 |
+
|
| 57 |
+
## Citation
|
| 58 |
+
|
| 59 |
+
```bibtex
|
| 60 |
+
@misc{ishigaki_ids_bench,
|
| 61 |
+
title = {Ishigaki-IDS-Bench},
|
| 62 |
+
year = {2026}
|
| 63 |
+
}
|
| 64 |
+
```
|
data/test.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|