Abinesh Sivakumar
commited on
Commit
·
1bc4188
1
Parent(s):
8018296
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
| 1 |
---
|
| 2 |
library_name: peft
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
| 4 |
## Training procedure
|
| 5 |
|
|
@@ -18,4 +29,4 @@ The following `bitsandbytes` quantization config was used during training:
|
|
| 18 |
### Framework versions
|
| 19 |
|
| 20 |
|
| 21 |
-
- PEFT 0.4.0.dev0
|
|
|
|
| 1 |
---
|
| 2 |
library_name: peft
|
| 3 |
+
pipeline_tag: question-answering
|
| 4 |
+
|
| 5 |
+
widget:
|
| 6 |
+
|
| 7 |
+
- question (string): "How many heads of the departments are older than 56 ?"
|
| 8 |
+
context (string): "CREATE TABLE head (age INTEGER)"
|
| 9 |
+
answer (string): "SELECT COUNT(*) FROM head WHERE age > 56"
|
| 10 |
+
|
| 11 |
+
- question (string): "What are the maximum and minimum budget of the departments?"
|
| 12 |
+
context (string): "CREATE TABLE department (budget_in_billions INTEGER)"
|
| 13 |
+
answer (string): "SELECT MAX(budget_in_billions), MIN(budget_in_billions) FROM department"
|
| 14 |
---
|
| 15 |
## Training procedure
|
| 16 |
|
|
|
|
| 29 |
### Framework versions
|
| 30 |
|
| 31 |
|
| 32 |
+
- PEFT 0.4.0.dev0
|