File size: 534 Bytes
812c2ea | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | {
"_name_or_path": "SecIDS-CNN",
"architectures": [
"CNNForBinaryClassification"
],
"model_type": "cnn",
"input_shape": [10, 1],
"num_classes": 2,
"num_conv_layers": 2,
"conv_filters": [32, 64],
"kernel_sizes": [3, 3],
"pooling_type": "none",
"batch_norm": true,
"dense_units": [128, 1],
"activation_hidden": "relu",
"activation_output": "sigmoid",
"dropout_rate": 0.3,
"loss_function": "binary_crossentropy",
"optimizer": "adam",
"metrics": ["accuracy"],
"transformers_version": "4.38.1"
}
|