Update config.json
Browse files- config.json +12 -6
config.json
CHANGED
@@ -29,16 +29,22 @@
|
|
29 |
"use_cache": true,
|
30 |
"vocab_size": 32000,
|
31 |
"prompt_wrapper": "human_bot",
|
32 |
-
"
|
33 |
-
"
|
|
|
34 |
"tokenizer_local": "tokenizer_tl.json",
|
35 |
"tokenizer_config": {"bos_id":[1], "bos_token":["<s>"], "eos_id":[2],"eos_token":["</s>"]},
|
36 |
-
"model_parent": "llmware/slim-sql-v0",
|
37 |
-
"description": "
|
38 |
"quantization": "int4",
|
39 |
-
"model_family": "
|
40 |
"parameters": 1.1,
|
41 |
-
|
|
|
|
|
|
|
|
|
|
|
42 |
"test_set": [
|
43 |
{
|
44 |
"context": "CREATE TABLE customers (customer_name text, account_number integer,customer_level text, vip_customer text, annual_spend text, user_name text)",
|
|
|
29 |
"use_cache": true,
|
30 |
"vocab_size": 32000,
|
31 |
"prompt_wrapper": "human_bot",
|
32 |
+
"description": "slim-sql is a text-to-sql model.",
|
33 |
+
"prompt_format": "<human> {table_schema} \n {question} \n<bot>:",
|
34 |
+
"output_format": "{sql}",
|
35 |
"tokenizer_local": "tokenizer_tl.json",
|
36 |
"tokenizer_config": {"bos_id":[1], "bos_token":["<s>"], "eos_id":[2],"eos_token":["</s>"]},
|
37 |
+
"model_parent": "llmware/slim-sql-1b-v0",
|
38 |
+
"description": "Text-to-SQL model from llmware - finetuned on tiny-llama - 1.1 parameter base",
|
39 |
"quantization": "int4",
|
40 |
+
"model_family": "OVGenModel",
|
41 |
"parameters": 1.1,
|
42 |
+
"primary_keys": ["sql"],
|
43 |
+
"output_values": ["{{sql statement}}"],
|
44 |
+
"publisher": "llmware",
|
45 |
+
"release_date": "september 2024",
|
46 |
+
"function_call": "sql",
|
47 |
+
"test_params": ["sql"],
|
48 |
"test_set": [
|
49 |
{
|
50 |
"context": "CREATE TABLE customers (customer_name text, account_number integer,customer_level text, vip_customer text, annual_spend text, user_name text)",
|