ecolibria commited on
Commit
6f3f331
·
verified ·
1 Parent(s): 1d45d3f

Upload config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.json +36 -0
config.json ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "nanomind-tme",
3
+ "architectures": [
4
+ "TernaryMambaEncoder"
5
+ ],
6
+ "num_labels": 10,
7
+ "id2label": {
8
+ "0": "exfiltration",
9
+ "1": "injection",
10
+ "2": "privilege_escalation",
11
+ "3": "persistence",
12
+ "4": "credential_abuse",
13
+ "5": "lateral_movement",
14
+ "6": "social_engineering",
15
+ "7": "policy_violation",
16
+ "8": "benign",
17
+ "9": "steganography"
18
+ },
19
+ "label2id": {
20
+ "exfiltration": 0,
21
+ "injection": 1,
22
+ "privilege_escalation": 2,
23
+ "persistence": 3,
24
+ "credential_abuse": 4,
25
+ "lateral_movement": 5,
26
+ "social_engineering": 6,
27
+ "policy_violation": 7,
28
+ "benign": 8,
29
+ "steganography": 9
30
+ },
31
+ "max_position_embeddings": 128,
32
+ "vocab_size": 6000,
33
+ "hidden_size": 128,
34
+ "num_hidden_layers": 8,
35
+ "onnx_model": "nanomind-tme.onnx"
36
+ }