SahilSha commited on
Commit
8bc89b8
·
verified ·
1 Parent(s): 0c71abd

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +24 -0
config.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": ["ViTModel"],
3
+ "model_type": "vit",
4
+ "hidden_size": 768,
5
+ "num_attention_heads": 12,
6
+ "num_hidden_layers": 12,
7
+ "image_size": 224,
8
+ "patch_size": 16,
9
+ "hidden_act": "gelu",
10
+ "intermediate_size": 3072,
11
+ "initializer_range": 0.02,
12
+ "layer_norm_eps": 1e-12,
13
+ "hidden_dropout_prob": 0.1,
14
+ "attention_probs_dropout_prob": 0.1,
15
+ "num_labels": 2,
16
+ "id2label": {
17
+ "0": "Real",
18
+ "1": "Fake"
19
+ },
20
+ "label2id": {
21
+ "Real": 0,
22
+ "Fake": 1
23
+ }
24
+ }