hugemensa commited on
Commit
97ec8f2
·
verified ·
1 Parent(s): ac20f3b

Create onnx_config.json

Browse files
Files changed (1) hide show
  1. onnx_config.json +51 -0
onnx_config.json ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "ColBERT",
3
+ "model_name": "lightonai/Reason-ModernColBERT",
4
+ "model_class": "ModernBertModel",
5
+ "uses_token_type_ids": false,
6
+ "query_prefix": "[Q] ",
7
+ "document_prefix": "[D] ",
8
+ "query_length": 128,
9
+ "document_length": 8192,
10
+ "do_query_expansion": false,
11
+ "attend_to_expansion_tokens": false,
12
+ "skiplist_words": [
13
+ "!",
14
+ "\"",
15
+ "#",
16
+ "$",
17
+ "%",
18
+ "&",
19
+ "'",
20
+ "(",
21
+ ")",
22
+ "*",
23
+ "+",
24
+ ",",
25
+ "-",
26
+ ".",
27
+ "/",
28
+ ":",
29
+ ";",
30
+ "<",
31
+ "=",
32
+ ">",
33
+ "?",
34
+ "@",
35
+ "[",
36
+ "\\",
37
+ "]",
38
+ "^",
39
+ "_",
40
+ "`",
41
+ "{",
42
+ "|",
43
+ "}",
44
+ "~"
45
+ ],
46
+ "embedding_dim": 128,
47
+ "mask_token_id": 50284,
48
+ "pad_token_id": 50284,
49
+ "query_prefix_id": 50368,
50
+ "document_prefix_id": 50369
51
+ }