Datasets:

Modalities:
Text
Formats:
csv
Libraries:
Datasets
pandas
GoloMarcos commited on
Commit
f8663d2
·
verified ·
1 Parent(s): 656d73d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +80 -3
README.md CHANGED
@@ -1,3 +1,80 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## Dataset Card for `Text2sparql-Raw`
2
+
3
+ ### Dataset Summary
4
+
5
+ `Text2Sparql-Raw` is a multilingual dataset designed for the task of translating natural language questions into SPARQL queries over the DBpedia knowledge graph. This dataset aggregates and harmonizes four widely used benchmarks in the text-to-SPARQL domain: **QALD (versions 1 to 9)**, **LC-QuAD 1.0**, **Orange/paraqa-sparqltotext**, and **julioc-p/Question-Sparql**.
6
+
7
+ It contains questions in both **English** and **Spanish**, making it suitable for multilingual and cross-lingual question answering tasks over knowledge graphs.
8
+
9
+ This is the **first version** of the dataset.
10
+
11
+ ---
12
+
13
+ ### Supported Tasks and Leaderboards
14
+
15
+ * **Text-to-SPARQL generation**: Given a natural language question, the task is to generate a syntactically correct and semantically accurate SPARQL query that retrieves the answer from the DBpedia knowledge graph.
16
+
17
+ ---
18
+
19
+ ### Languages
20
+
21
+ * English (`en`)
22
+ * Spanish (`es`)
23
+
24
+ ---
25
+
26
+ ### Dataset Structure
27
+
28
+ Each instance in the dataset includes:
29
+
30
+ * `question`: The question in natural language (English or Spanish)
31
+ * `query`: The corresponding SPARQL query
32
+ * `dataset-id`: Original dataset source (e.g., `QALD-X`, `LCQUAD`, `Orange`, `JULIOC`)
33
+
34
+ ---
35
+
36
+ ### Dataset Creation
37
+
38
+ The dataset is a **curated compilation** of four public datasets:
39
+
40
+ * **QALD 1-9**: https://github.com/ag-sc/QALD
41
+ * **LC-QuAD 1.0**: https://github.com/AskNowQA/LC-QuAD
42
+ * **Paraqa-SparqlToText**: https://huggingface.co/datasets/Orange/paraqa-sparqltotext
43
+ * **Question-Sparql**: https://huggingface.co/datasets/julioc-p/Question-Sparql
44
+
45
+ The merged dataset aims to provide a unified resource for training multilingual text-to-SPARQL models.
46
+
47
+ ---
48
+
49
+ ### Use Cases
50
+
51
+ This dataset is intended for training and evaluating models that:
52
+
53
+ * Generate SPARQL from natural language
54
+ * Support multilingual question answering over knowledge graphs
55
+ * Learn cross-lingual representations for semantic parsing
56
+
57
+ ---
58
+
59
+ ### Citation
60
+
61
+ If you use this dataset in your research, please cite:
62
+
63
+ ```
64
+ @misc{text2sparql-raw,
65
+ author = {Marcos Gôlo, Paulo do Carmo, Edgard Marx, Ricardo Marcacini},
66
+ title = {text2sparql-raw: Natural Language Text to SPARQL for DBpedia Dataset},
67
+ year = {2025},
68
+ howpublished = {\url{https://huggingface.co/datasets/aksw/Text2Sparql-Raw}},
69
+ }
70
+ ```
71
+
72
+ ---
73
+
74
+ ### Licensing
75
+
76
+ license: apache-2.0
77
+
78
+ Check each dataset’s original repository for full licensing terms.
79
+
80
+ ---