Using NSQL-Llama-2–7B, to generate SQL queries from free-flowing text instruction. Goal: Given a table schema as follows: CREATE TABLE stadium (
stadium_id number,
location text,
...
)
CREATE TABLE singer (
singer_id number,
name text,
country text,
...
)
CREATE TABLE concert (
concert_id number,
concert_name text,
... …