File size: 1,057 Bytes
dcc2df5 cc95781 dcc2df5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
{
"architectures": [
"FaceMaskDetectionModel"
],
"model_type": "AlbertConfig",
"num_classes": 2,
"dropout_prob": 0.5,
"activation_function": "relu",
"conv_layers": [
{
"in_channels": 3,
"out_channels": 32,
"kernel_size": [
3,
3
],
"stride": 1,
"padding": 1
},
{
"in_channels": 32,
"out_channels": 64,
"kernel_size": [
3,
3
],
"stride": 1,
"padding": 1
},
{
"in_channels": 64,
"out_channels": 128,
"kernel_size": [
3,
3
],
"stride": 1,
"padding": 1
}
],
"classifier_layers": [
{
"in_features": 100352,
"out_features": 128
},
{
"in_features": 128,
"out_features": 2
}
]
} |