hassaanik commited on
Commit
dcc2df5
1 Parent(s): 0bec89e

Upload config.json

Browse files
Files changed (1) hide show
  1. config.json +51 -0
config.json ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "FaceMaskDetectionModel"
4
+ ],
5
+ "model_type": "image-classification",
6
+ "num_classes": 2,
7
+ "dropout_prob": 0.5,
8
+ "activation_function": "relu",
9
+ "conv_layers": [
10
+ {
11
+ "in_channels": 3,
12
+ "out_channels": 32,
13
+ "kernel_size": [
14
+ 3,
15
+ 3
16
+ ],
17
+ "stride": 1,
18
+ "padding": 1
19
+ },
20
+ {
21
+ "in_channels": 32,
22
+ "out_channels": 64,
23
+ "kernel_size": [
24
+ 3,
25
+ 3
26
+ ],
27
+ "stride": 1,
28
+ "padding": 1
29
+ },
30
+ {
31
+ "in_channels": 64,
32
+ "out_channels": 128,
33
+ "kernel_size": [
34
+ 3,
35
+ 3
36
+ ],
37
+ "stride": 1,
38
+ "padding": 1
39
+ }
40
+ ],
41
+ "classifier_layers": [
42
+ {
43
+ "in_features": 100352,
44
+ "out_features": 128
45
+ },
46
+ {
47
+ "in_features": 128,
48
+ "out_features": 2
49
+ }
50
+ ]
51
+ }