forked from donglixp/coarse2fine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel.txt
50 lines (43 loc) · 1.34 KB
/
model.txt
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
ParserModel (
(q_encoder): RNNEncoder (
(embeddings): Embedding(3062, 250, padding_idx=1)
(word_dropout): LockedDropout ()
(rnn): LSTM(250, 150, dropout=0.3, bidirectional=True)
)
(lay_decoder): SeqDecoder (
(embeddings): Embedding(151, 200, padding_idx=1)
(word_dropout): LockedDropout ()
(rnn): LSTM(200, 300, dropout=0.3)
(attn): GlobalAttention (
(linear_out): Linear (600 -> 300)
(sm): Softmax ()
(tanh): Tanh ()
)
)
=> SKETCH
(lay_classifier): Sequential (
(0): Dropout (p = 0.3)
(1): Linear (300 -> 151)
(2): LogSoftmax ()
)
(lay_encoder): RNNEncoder (
(embeddings): Embedding(151, 200, padding_idx=1)
(word_dropout): LockedDropout ()
(rnn): LSTM(200, 100, dropout=0.3, bidirectional=True)
)
(tgt_embeddings): Embedding(1689, 200, padding_idx=1)
(tgt_decoder): SeqDecoder (
(word_dropout): LockedDropout ()
(rnn): LSTM(200, 300, dropout=0.3)
(attn): GlobalAttention (
(linear_out): Linear (600 -> 300)
(sm): Softmax ()
(tanh): Tanh ()
)
)
(tgt_classifier): CopyGenerator (
(dropout): Dropout (p = 0.3)
(linear): Linear (300 -> 1689)
(linear_copy): Linear (300 -> 1)
)
)