vijaychander commited on
Commit
05539d6
·
verified ·
1 Parent(s): 7dccca3

Upload 3 files

Browse files
Files changed (3) hide show
  1. config.json +27 -0
  2. special_tokens_map.json +6 -0
  3. tokenizer_config.json +8 -0
config.json ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "DOMOAI",
3
+ "architectures": [
4
+ "CustomModelForDomo"
5
+ ],
6
+ "model_type": "custom",
7
+ "task": "text-generation",
8
+ "pipeline_tag": "text-generation",
9
+ "framework": "custom",
10
+ "domo_config": {
11
+ "version": "1.0",
12
+ "description": "AI chatbot for Domo with chart recommendations",
13
+ "capabilities": [
14
+ "text_generation",
15
+ "data_analysis",
16
+ "chart_recommendation"
17
+ ],
18
+ "chart_types": [
19
+ "bar",
20
+ "line",
21
+ "pie",
22
+ "scatter"
23
+ ],
24
+ "max_tokens": 200,
25
+ "temperature": 0.7
26
+ }
27
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "[BOS]",
3
+ "eos_token": "[EOS]",
4
+ "unk_token": "[UNK]",
5
+ "pad_token": "[PAD]"
6
+ }
tokenizer_config.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "tokenizer_class": "CustomTokenizer",
3
+ "padding_side": "left",
4
+ "model_max_length": 512,
5
+ "bos_token": "[BOS]",
6
+ "eos_token": "[EOS]",
7
+ "unk_token": "[UNK]"
8
+ }