ppsingh commited on
Commit
89f6cb2
·
1 Parent(s): 2a8efd0

add paramconfig

Browse files
appStore/__pycache__/__init__.cpython-310.pyc ADDED
Binary file (118 Bytes). View file
 
appStore/__pycache__/doc_processing.cpython-310.pyc ADDED
Binary file (3.19 kB). View file
 
paramconfig.cfg ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [preprocessing]
2
+ THRESHOLD = 0.50
3
+ MODEL = garbage
4
+ SPLIT_BY = word
5
+ REMOVE_PUNC = 0
6
+ SPLIT_LENGTH = 60
7
+ SPLIT_OVERLAP = 0
8
+ RESPECT_SENTENCE_BOUNDARY = 1
9
+ TOP_KEY = 10
10
+
11
+ [vulnerability]
12
+ THRESHOLD = 0.50
13
+ MODEL = GIZ/VULNERABILITY-multilabel-mpnet
14
+ SPLIT_BY = word
15
+ REMOVE_PUNC = 0
16
+ SPLIT_LENGTH = 60
17
+ SPLIT_OVERLAP = 0
18
+ RESPECT_SENTENCE_BOUNDARY = 1
19
+ TOP_KEY = 10
20
+
21
+ [target]
22
+ THRESHOLD = 0.50
23
+ MODEL = TARGET-VULNERABILITY-multiclass-mpnet
24
+ SPLIT_BY = word
25
+ REMOVE_PUNC = 0
26
+ SPLIT_LENGTH = 60
27
+ SPLIT_OVERLAP = 0
28
+ RESPECT_SENTENCE_BOUNDARY = 1
29
+ TOP_KEY = 10