singhjagpreet
commited on
Commit
•
bd6dcef
1
Parent(s):
03a588f
add widget
Browse files
README.md
CHANGED
@@ -9,6 +9,20 @@ base_model: google/gemma-2b
|
|
9 |
model-index:
|
10 |
- name: text_to_sql
|
11 |
results: []
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
---
|
13 |
|
14 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
|
|
9 |
model-index:
|
10 |
- name: text_to_sql
|
11 |
results: []
|
12 |
+
metrics:
|
13 |
+
- bleu
|
14 |
+
pipeline_tag: text2text-generation
|
15 |
+
inference:
|
16 |
+
parameters:
|
17 |
+
do_sample: false
|
18 |
+
max_length: 200
|
19 |
+
widget:
|
20 |
+
- text: "CREATE TABLE stadium (\n stadium_id number,\n location text,\n name text,\n capacity number,\n)\n\n-- Using valid SQLite, answer the following questions for the tables provided above.\n\n-- how many stadiums in total?\n\nSELECT"
|
21 |
+
example_title: "Number stadiums"
|
22 |
+
- text: "CREATE TABLE work_orders ( ID NUMBER, CREATED_AT TEXT, COST FLOAT, INVOICE_AMOUNT FLOAT, IS_DUE BOOLEAN, IS_OPEN BOOLEAN, IS_OVERDUE BOOLEAN, COUNTRY_NAME TEXT, )\n\n-- Using valid SQLite, answer the following questions for the tables provided above.\n\n-- how many work orders are open?\n\nSELECT"
|
23 |
+
example_title: "Open work orders"
|
24 |
+
- text: "CREATE TABLE stadium ( stadium_id number, location text, name text, capacity number, highest number, lowest number, average number )\n\nCREATE TABLE singer ( singer_id number, name text, country text, song_name text, song_release_year text, age number, is_male others )\n\nCREATE TABLE concert ( concert_id number, concert_name text, theme text, stadium_id text, year text )\n\nCREATE TABLE singer_in_concert ( concert_id number, singer_id text )\n\n-- Using valid SQLite, answer the following questions for the tables provided above.\n\n-- What is the maximum, the average, and the minimum capacity of stadiums ?\n\nSELECT"
|
25 |
+
example_title: "Stadium capacity"
|
26 |
---
|
27 |
|
28 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|