paarth-b commited on
Commit
b431993
·
verified ·
1 Parent(s): a502158

feat: added params.json

Browse files
Files changed (1) hide show
  1. params.json +15 -0
params.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "vocab_size": 26,
3
+ "embed_dim": 128,
4
+ "hidden_dim": 256,
5
+ "lstm_layers": 2,
6
+ "bidirectional": true,
7
+ "seq_embed_dim": 256,
8
+ "combined_dim": 1024,
9
+ "predictor_hidden": [512, 256, 128, 64],
10
+ "dropout": 0.1,
11
+ "max_length": 600,
12
+ "learning_rate": 0.001,
13
+ "batch_size": 64,
14
+ "attention_pooling": true
15
+ }