Dataset Viewer
Auto-converted to Parquet Duplicate
q_id
int64
0
9.43k
input_ids
sequencelengths
450
49.1k
attention_mask
sequencelengths
450
49.1k
labels
sequencelengths
450
49.1k
input_text
stringlengths
1.82k
193k
output_text
stringlengths
51
837
input_prompt
stringclasses
215 values
1
[ 128000, 128006, 882, 128007, 271, 33, 5412, 374, 264, 8668, 315, 11470, 23524, 264, 3488, 36864, 3465, 430, 1253, 1397, 1495, 311, 5822, 23115, 11, 1701, 279, 7372, 635, 20047, 13, 20400, 459, 8475, 4320, 311, 279, 2728, 3488, 13, 362, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
Bellow is a sequence of instructions describing a question answering task that may require text to sql parsing, using the Sqlite syntax. Generate an appropriate answer to the given question. A question is considered 'Foo' if it can be answered by querying from the database. Strictly follow the required format. In your ...
[query_database(**{'query': 'SELECT movie_title, movie_release_year, director_name FROM movies ORDER BY movie_popularity DESC LIMIT 1 '})]
### Instruction 1. Given an SQL script to initialize a database of multiple tables under '### Database Schema' section. Each table is followed by one example row extracted from the database and a ditionary of definitions for further clarifying its column names meaning. 2. A user give you a question under '### Question'...
4
[ 128000, 128006, 882, 128007, 271, 33, 5412, 374, 264, 8668, 315, 11470, 23524, 264, 3488, 36864, 3465, 430, 1253, 1397, 1495, 311, 5822, 23115, 11, 1701, 279, 7372, 635, 20047, 13, 20400, 459, 8475, 4320, 311, 279, 2728, 3488, 13, 362, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
Bellow is a sequence of instructions describing a question answering task that may require text to sql parsing, using the Sqlite syntax. Generate an appropriate answer to the given question. A question is considered 'Foo' if it can be answered by querying from the database. Strictly follow the required format. In your ...
[query_database(**{'query': 'SELECT AVG(movie_popularity) FROM movies WHERE director_name = 'Stanley Kubrick''})]
### Instruction 1. Given an SQL script to initialize a database of multiple tables under '### Database Schema' section. Each table is followed by one example row extracted from the database and a ditionary of definitions for further clarifying its column names meaning. 2. A user give you a question under '### Question'...
8
[ 128000, 128006, 882, 128007, 271, 33, 5412, 374, 264, 8668, 315, 11470, 23524, 264, 3488, 36864, 3465, 430, 1253, 1397, 1495, 311, 5822, 23115, 11, 1701, 279, 7372, 635, 20047, 13, 20400, 459, 8475, 4320, 311, 279, 2728, 3488, 13, 362, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
Bellow is a sequence of instructions describing a question answering task that may require text to sql parsing, using the Sqlite syntax. Generate an appropriate answer to the given question. A question is considered 'Foo' if it can be answered by querying from the database. Strictly follow the required format. In your ...
[query_database(**{'query': 'SELECT T1.movie_title FROM movies AS T1 INNER JOIN ratings AS T2 ON T1.movie_id = T2.movie_id WHERE T2.user_trialist = 1 AND T2.rating_timestamp_utc LIKE '2020-04%''})]
### Instruction 1. Given an SQL script to initialize a database of multiple tables under '### Database Schema' section. Each table is followed by one example row extracted from the database and a ditionary of definitions for further clarifying its column names meaning. 2. A user give you a question under '### Question'...
14
[128000,128006,882,128007,271,33,5412,374,264,8668,315,11470,23524,264,3488,36864,3465,430,1253,1397(...TRUNCATED)
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1(...TRUNCATED)
[-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100(...TRUNCATED)
"Bellow is a sequence of instructions describing a question answering task that may require text to (...TRUNCATED)
"[query_database(**{'query': 'SELECT CAST(SUM(CASE WHEN T1.movie_release_year = 2021 THEN 1 ELSE 0 E(...TRUNCATED)
"### Instruction\n1. Given an SQL script to initialize a database of multiple tables under '### Data(...TRUNCATED)
19
[128000,128006,882,128007,271,33,5412,374,264,8668,315,11470,23524,264,3488,36864,3465,430,1253,1397(...TRUNCATED)
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1(...TRUNCATED)
[-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100(...TRUNCATED)
"Bellow is a sequence of instructions describing a question answering task that may require text to (...TRUNCATED)
"[query_database(**{'query': 'SELECT COUNT(*) FROM ratings WHERE movie_id = 1269 AND rating_score <=(...TRUNCATED)
"### Instruction\n1. Given an SQL script to initialize a database of multiple tables under '### Data(...TRUNCATED)
23
[128000,128006,882,128007,271,33,5412,374,264,8668,315,11470,23524,264,3488,36864,3465,430,1253,1397(...TRUNCATED)
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1(...TRUNCATED)
[-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100(...TRUNCATED)
"Bellow is a sequence of instructions describing a question answering task that may require text to (...TRUNCATED)
"[query_database(**{'query': 'SELECT COUNT(T2.user_id) FROM movies AS T1 INNER JOIN ratings AS T2 ON(...TRUNCATED)
"### Instruction\n1. Given an SQL script to initialize a database of multiple tables under '### Data(...TRUNCATED)
26
[128000,128006,882,128007,271,33,5412,374,264,8668,315,11470,23524,264,3488,36864,3465,430,1253,1397(...TRUNCATED)
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1(...TRUNCATED)
[-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100(...TRUNCATED)
"Bellow is a sequence of instructions describing a question answering task that may require text to (...TRUNCATED)
"[query_database(**{'query': 'SELECT T2.director_url FROM ratings AS T1 INNER JOIN movies AS T2 ON T(...TRUNCATED)
"### Instruction\n1. Given an SQL script to initialize a database of multiple tables under '### Data(...TRUNCATED)
30
[128000,128006,882,128007,271,33,5412,374,264,8668,315,11470,23524,264,3488,36864,3465,430,1253,1397(...TRUNCATED)
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1(...TRUNCATED)
[-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100(...TRUNCATED)
"Bellow is a sequence of instructions describing a question answering task that may require text to (...TRUNCATED)
"[query_database(**{'query': 'SELECT MAX(T2.movie_popularity), MIN(T1.rating_timestamp_utc) FROM rat(...TRUNCATED)
"### Instruction\n1. Given an SQL script to initialize a database of multiple tables under '### Data(...TRUNCATED)
34
[128000,128006,882,128007,271,33,5412,374,264,8668,315,11470,23524,264,3488,36864,3465,430,1253,1397(...TRUNCATED)
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1(...TRUNCATED)
[-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100(...TRUNCATED)
"Bellow is a sequence of instructions describing a question answering task that may require text to (...TRUNCATED)
"[query_database(**{'query': 'SELECT DISTINCT T1.movie_release_year, T1.movie_title FROM movies AS T(...TRUNCATED)
"### Instruction\n1. Given an SQL script to initialize a database of multiple tables under '### Data(...TRUNCATED)
39
[128000,128006,882,128007,271,33,5412,374,264,8668,315,11470,23524,264,3488,36864,3465,430,1253,1397(...TRUNCATED)
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1(...TRUNCATED)
[-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100(...TRUNCATED)
"Bellow is a sequence of instructions describing a question answering task that may require text to (...TRUNCATED)
"[query_database(**{'query': 'SELECT T2.rating_url FROM movies AS T1 INNER JOIN ratings AS T2 ON T1.(...TRUNCATED)
"### Instruction\n1. Given an SQL script to initialize a database of multiple tables under '### Data(...TRUNCATED)
End of preview. Expand in Data Studio

Dataset Card for "BIRD_for_augment_sql2question"

More Information needed

Downloads last month
13