<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. -->
flan-t5-xl-template-fill
Model description
A FLAN-T5 model that, given an input english question, template and schema, fills in the template to form the equivalent SQL query.
Input format:
template fill: <question> | <db_id> | <schema_without_content> @ template
Above, schema_without_content
is of the form table1: column11, ..., column1n | table2: ...
, and an example template looks like SELECT column, column FROM table AS t1 JOIN table as t2
.
The output format is
<db_id> | <query>