Shoriful025 commited on
Commit
7c0ea8d
·
verified ·
1 Parent(s): b29614a

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +36 -0
config.json ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "TabNetForClassification"
4
+ ],
5
+ "cat_dims": [],
6
+ "cat_emb_dim": 1,
7
+ "cat_idxs": [],
8
+ "d_as": 64,
9
+ "d_m": 64,
10
+ "d_na": 64,
11
+ "epsilon": 1e-15,
12
+ "gamma": 1.3,
13
+ "id2label": {
14
+ "0": "Benign",
15
+ "1": "DDoS",
16
+ "2": "PortScan",
17
+ "3": "Botnet",
18
+ "4": "Infiltration"
19
+ },
20
+ "label2id": {
21
+ "Benign": 0,
22
+ "Botnet": 3,
23
+ "DDoS": 1,
24
+ "Infiltration": 4,
25
+ "PortScan": 2
26
+ },
27
+ "lambda_sparse": 0.001,
28
+ "model_type": "tabnet",
29
+ "n_d": 64,
30
+ "n_independent": 2,
31
+ "n_shared": 2,
32
+ "n_steps": 5,
33
+ "num_features": 78,
34
+ "torch_dtype": "float32",
35
+ "transformers_version": "4.36.0"
36
+ }