Abinesh Sivakumar
commited on
Commit
•
d607a46
1
Parent(s):
1bc4188
Update README.md
Browse files
README.md
CHANGED
@@ -1,16 +1,18 @@
|
|
1 |
---
|
2 |
library_name: peft
|
3 |
pipeline_tag: question-answering
|
4 |
-
|
5 |
widget:
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
|
|
|
|
|
|
14 |
---
|
15 |
## Training procedure
|
16 |
|
|
|
1 |
---
|
2 |
library_name: peft
|
3 |
pipeline_tag: question-answering
|
|
|
4 |
widget:
|
5 |
+
- question (string): How many heads of the departments are older than 56 ?
|
6 |
+
context (string): CREATE TABLE head (age INTEGER)
|
7 |
+
answer (string): SELECT COUNT(*) FROM head WHERE age > 56
|
8 |
+
- question (string): What are the maximum and minimum budget of the departments?
|
9 |
+
context (string): CREATE TABLE department (budget_in_billions INTEGER)
|
10 |
+
answer (string): SELECT MAX(budget_in_billions), MIN(budget_in_billions) FROM department
|
11 |
+
license: llama2
|
12 |
+
datasets:
|
13 |
+
- b-mc2/sql-create-context
|
14 |
+
language:
|
15 |
+
- en
|
16 |
---
|
17 |
## Training procedure
|
18 |
|