doberst113080 commited on
Commit
c8c10c8
1 Parent(s): b67e8e7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -60,10 +60,10 @@ The prompt consists of two sub-parts:
60
  1. Table creation prompt providing table name, variables, and variable type.
61
  2. Specific question or instruction based on the text passage
62
 
63
- Training sample example: "text": "<human>: CREATE TABLE table_name_8 ( partner VARCHAR, date VARCHAR )\nName the partner for may 2, 1993\n<bot>:SELECT partner FROM table_name_8 WHERE date = \"may 2, 1993\"</s>"}
64
- {"text": "<human>: CREATE TABLE table_name_97 ( Id VARCHAR )\nName the 2012 when 2011 is qf\n<bot>:SELECT 2012 FROM table_name_97 WHERE 2011 = \"qf\"</s>"
65
 
66
- Test samples are provided in this repo ("sql-slim-1b_test_questions")
67
 
68
  If you are using a HuggingFace generation script:
69
 
 
60
  1. Table creation prompt providing table name, variables, and variable type.
61
  2. Specific question or instruction based on the text passage
62
 
63
+ Test sample example: {"context": "CREATE TABLE table_name_34 (season VARCHAR, lost VARCHAR, points VARCHAR)", "question": "Which season did the Minnesota Kicks lose 13 games and score 156 points?", "answer": "SELECT COUNT(season) FROM table_name_34 WHERE lost = 13 AND points = 156"}
64
+ A subset of test samples are provided in this repo ("sql-slim-1b_test_questions").
65
 
66
+ For use in training, the "\<human>" tag would be associated with "context" and "question" statements, while the "\<bot>" tag will be associated with the model's output.
67
 
68
  If you are using a HuggingFace generation script:
69