Shoriful025 commited on
Commit
9a83fd2
·
verified ·
1 Parent(s): e2b94f1

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +23 -0
config.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "TabularTransformerForClassification"
4
+ ],
5
+ "d_model": 128,
6
+ "num_layers": 4,
7
+ "num_heads": 8,
8
+ "dim_feedforward": 512,
9
+ "dropout": 0.1,
10
+ "input_dim": 45,
11
+ "num_classes": 2,
12
+ "id2label": {
13
+ "0": "LEGITIMATE",
14
+ "1": "ANOMALOUS"
15
+ },
16
+ "label2id": {
17
+ "ANOMALOUS": 1,
18
+ "LEGITIMATE": 0
19
+ },
20
+ "model_type": "tabular_transformer",
21
+ "torch_dtype": "float32",
22
+ "transformers_version": "4.37.2"
23
+ }