File size: 651 Bytes
a5d5f4c 7960109 a5d5f4c |
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 |
{
"model_type": "Sequential",
"layers": [
{
"name": "LSTM",
"config": {
"units": 128,
"dropout": 0.2,
"recurrent_dropout": 0.2,
"input_shape": [
34,
1
]
}
},
{
"name": "Dense",
"config": {
"units": 1,
"activation": "sigmoid"
}
}
],
"compile_args": {
"loss": "binary_crossentropy",
"optimizer": "adam",
"metrics": [
"accuracy"
]
}
} |