sarcasticmodel / config.json
Rianknow's picture
Upload config.json
7960109
raw
history blame contribute delete
651 Bytes
{
"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"
]
}
}