Laurynas Keturakis commited on
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,31 +1,45 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
- name: train
|
| 12 |
-
num_bytes: 2040183
|
| 13 |
-
num_examples: 6352
|
| 14 |
-
- name: dev
|
| 15 |
-
num_bytes: 363412
|
| 16 |
-
num_examples: 1000
|
| 17 |
-
- name: test
|
| 18 |
-
num_bytes: 365938
|
| 19 |
-
num_examples: 1000
|
| 20 |
-
download_size: 851505
|
| 21 |
-
dataset_size: 2769533
|
| 22 |
-
configs:
|
| 23 |
-
- config_name: default
|
| 24 |
-
data_files:
|
| 25 |
-
- split: train
|
| 26 |
-
path: data/train-*
|
| 27 |
-
- split: dev
|
| 28 |
-
path: data/dev-*
|
| 29 |
-
- split: test
|
| 30 |
-
path: data/test-*
|
| 31 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
license: other
|
| 3 |
+
license_name: academic-use
|
| 4 |
+
license_link: https://arxiv.org/abs/2308.16060
|
| 5 |
+
language: en
|
| 6 |
+
tags:
|
| 7 |
+
- overpass-ql
|
| 8 |
+
- openstreetmap
|
| 9 |
+
- text-to-query
|
| 10 |
+
- geodata
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
---
|
| 12 |
+
|
| 13 |
+
# OverpassNL (HF reformatted)
|
| 14 |
+
|
| 15 |
+
Reformatted version of the [OverpassNL dataset](https://github.com/raphael-sch/OverpassNL)
|
| 16 |
+
for use with the [verifiers](https://github.com/PrimeIntellect-ai/verifiers) framework.
|
| 17 |
+
|
| 18 |
+
## Source
|
| 19 |
+
|
| 20 |
+
> Staniek, M., Fink, N., Mahdavi, S. A., & Riezler, S. (2024).
|
| 21 |
+
> **Text-to-OverpassQL: A Natural Language Interface for Complex Geodata Querying of OpenStreetMap.**
|
| 22 |
+
> *Transactions of the Association for Computational Linguistics (TACL), 12*, 1375-1390.
|
| 23 |
+
> [arXiv:2308.16060](https://arxiv.org/abs/2308.16060)
|
| 24 |
+
|
| 25 |
+
Original repository: https://github.com/raphael-sch/OverpassNL
|
| 26 |
+
|
| 27 |
+
## Schema
|
| 28 |
+
|
| 29 |
+
- `prompt`: Natural language query (raw text, no system prompt)
|
| 30 |
+
- `answer`: Gold Overpass QL query
|
| 31 |
+
- `info`: JSON string with `bbox` (south,west,north,east), `split`, and `hard` flag
|
| 32 |
+
|
| 33 |
+
## Splits
|
| 34 |
+
|
| 35 |
+
| Split | Examples | Hard subset |
|
| 36 |
+
|-------|----------|-------------|
|
| 37 |
+
| train | 6,352 | — |
|
| 38 |
+
| dev | 1,000 | 333 |
|
| 39 |
+
| test | 1,000 | 333 |
|
| 40 |
+
|
| 41 |
+
## Changes from original
|
| 42 |
+
|
| 43 |
+
- Parallel .nl/.query/.bbox files merged into a single HF Dataset
|
| 44 |
+
- Hard subset flag derived from .hard.nl file membership
|
| 45 |
+
- No content modifications to the original data
|