Upload config.json
Browse files- config.json +18 -0
config.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"FlairNER"
|
| 4 |
+
],
|
| 5 |
+
"embedding_dim": 300,
|
| 6 |
+
"hidden_size": 256,
|
| 7 |
+
"dropout": 0.5,
|
| 8 |
+
"num_classes": 19,
|
| 9 |
+
"rnn_layers": 1,
|
| 10 |
+
"bidirectional": true,
|
| 11 |
+
"crf": true,
|
| 12 |
+
"word_dropout": 0.05,
|
| 13 |
+
"locked_dropout": 0.5,
|
| 14 |
+
"batch_size": 64,
|
| 15 |
+
"learning_rate": 0.1,
|
| 16 |
+
"max_epochs": 100
|
| 17 |
+
}
|
| 18 |
+
|