Commit
·
c8c10c8
1
Parent(s):
b67e8e7
Update README.md
Browse files
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 |
-
|
64 |
-
|
65 |
|
66 |
-
|
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 |
|