Dataset Viewer
Auto-converted to Parquet Duplicate
id
stringclasses
4 values
status
stringclasses
2 values
inserted_at
timestamp[us]date
2026-05-18 04:08:08
2026-05-18 04:09:49
updated_at
timestamp[us]date
2026-05-18 04:09:06
2026-05-18 04:09:49
_server_id
stringclasses
4 values
english_question
stringclasses
4 values
vietnamese_question
stringclasses
4 values
sql_query
stringclasses
4 values
translation_rating.responses
listlengths
1
1
translation_rating.responses.users
listlengths
1
1
translation_rating.responses.status
listlengths
1
1
sql_correctness.responses
listlengths
1
1
sql_correctness.responses.users
listlengths
1
1
sql_correctness.responses.status
listlengths
1
1
suggested_fix.responses
listlengths
1
1
suggested_fix.responses.users
listlengths
1
1
suggested_fix.responses.status
listlengths
1
1
c8ac8b0c-d81d-4ad6-8a8d-b11e6c849a92
completed
2026-05-18T04:08:08.166000
2026-05-18T04:09:19.535000
d03c3b40-d8d8-4daf-b47f-6236b03930e1
How many singers do we have?
Chúng ta có bao nhiêu ca sĩ?
```sql SELECT count(*) FROM singer ```
[ 3 ]
[ "da3c4a43-e8b6-40df-9a79-7f1b9741dfcd" ]
[ "submitted" ]
[ "No" ]
[ "da3c4a43-e8b6-40df-9a79-7f1b9741dfcd" ]
[ "submitted" ]
[ "SELECT count(*) FROM singer\n\n" ]
[ "da3c4a43-e8b6-40df-9a79-7f1b9741dfcd" ]
[ "submitted" ]
ddf39cd8-ffcb-41dd-81e0-dc1c12558219
completed
2026-05-18T04:08:08.166000
2026-05-18T04:09:06.276000
d137c800-3dcb-4f85-9f3e-1f57f3f7da37
What is the average age of the singers?
Tuổi trung bình của các ca sĩ là bao nhiêu?
```sql SELECT avg(age) FROM singer ```
[ 5 ]
[ "da3c4a43-e8b6-40df-9a79-7f1b9741dfcd" ]
[ "submitted" ]
[ "Needs Fix" ]
[ "da3c4a43-e8b6-40df-9a79-7f1b9741dfcd" ]
[ "submitted" ]
[ "SELECT avg(age) FROM singer\n" ]
[ "da3c4a43-e8b6-40df-9a79-7f1b9741dfcd" ]
[ "submitted" ]
f9727808-cc93-476d-a93b-d54a5c4962d4
pending
2026-05-18T04:09:49.338000
2026-05-18T04:09:49.338000
44df54b2-6ffa-4bc1-90c8-22b644e96b21
What is the name of the oldest singer?
Tên của ca sĩ lớn tuổi nhất là gì?
```sql SELECT name FROM singer ORDER BY age DESC LIMIT 1 ```
null
null
null
null
null
null
null
null
null
1e352c4b-7e12-4839-bcad-848adeea0537
pending
2026-05-18T04:09:49.338000
2026-05-18T04:09:49.338000
7eeb5441-2f4f-44f5-a371-9f233090088a
Show all concert locations.
Hiển thị tất cả các địa điểm hòa nhạc.
```sql SELECT location FROM concert ```
null
null
null
null
null
null
null
null
null

Dataset Card for ds1a_text2sql_eval

This dataset has been created with Argilla. As shown in the sections below, this dataset can be loaded into your Argilla server as explained in Load with Argilla, or used directly with the datasets library in Load with datasets.

Using this dataset with Argilla

To load with Argilla, you'll just need to install Argilla as pip install argilla --upgrade and then use the following code:

import argilla as rg

ds = rg.Dataset.from_hub("thanhnm777/ds1a_text2sql_eval", settings="auto")

This will load the settings and records from the dataset repository and push them to you Argilla server for exploration and annotation.

Using this dataset with datasets

To load the records of this dataset with datasets, you'll just need to install datasets as pip install datasets --upgrade and then use the following code:

from datasets import load_dataset

ds = load_dataset("thanhnm777/ds1a_text2sql_eval")

This will only load the records of the dataset, but not the Argilla settings.

Dataset Structure

This dataset repo contains:

  • Dataset records in a format compatible with HuggingFace datasets. These records will be loaded automatically when using rg.Dataset.from_hub and can be loaded independently using the datasets library via load_dataset.
  • The annotation guidelines that have been used for building and curating the dataset, if they've been defined in Argilla.
  • A dataset configuration folder conforming to the Argilla dataset format in .argilla.

The dataset is created in Argilla with: fields, questions, suggestions, metadata, vectors, and guidelines.

Fields

The fields are the features or text of a dataset's records. For example, the 'text' column of a text classification dataset of the 'prompt' column of an instruction following dataset.

Field Name Title Type Required
english_question English Question text True
vietnamese_question Vietnamese Translation text True
sql_query SQL Query text True

Questions

The questions are the questions that will be asked to the annotators. They can be of different types, such as rating, text, label_selection, multi_label_selection, or ranking.

Question Name Title Type Required Description Values/Labels
translation_rating Rate the English -> Vietnamese translation rating True N/A [1, 2, 3, 4, 5]
sql_correctness Is the SQL correct for the question? label_selection True N/A ['Yes', 'No', 'Needs Fix']
suggested_fix Provide a corrected SQL query (if applicable) text False N/A N/A

Data Splits

The dataset contains a single split, which is train.

Dataset Creation

Curation Rationale

[More Information Needed]

Source Data

Initial Data Collection and Normalization

[More Information Needed]

Who are the source language producers?

[More Information Needed]

Annotations

Annotation guidelines

Evaluate the translation and the SQL query correctness.

Annotation process

[More Information Needed]

Who are the annotators?

[More Information Needed]

Personal and Sensitive Information

[More Information Needed]

Considerations for Using the Data

Social Impact of Dataset

[More Information Needed]

Discussion of Biases

[More Information Needed]

Other Known Limitations

[More Information Needed]

Additional Information

Dataset Curators

[More Information Needed]

Licensing Information

[More Information Needed]

Citation Information

[More Information Needed]

Contributions

[More Information Needed]

Downloads last month
63