-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotes.txt
More file actions
16 lines (15 loc) · 1.02 KB
/
Copy pathnotes.txt
File metadata and controls
16 lines (15 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
rnn-emb
- using the extra 256-fc-layer results in the same loss as not (shallow0/1-glove: 0.04466)
- Might as well keep it
- fasttext performs better (0.04250: shallow0-fasttext vs. 0.04466: shallow0-glove)
- Discripency occurs due glove's missing words?
- Data processing plays a key role in performance?
- global max pooling better than attention (0.04315: shallow2-glove vs. 0.04466: shallow1-glove)
- global max pooling better than kmax (0.04315: shallow2-glove vs. 0.04436: shallow3-glove)
- glove slightly better than glove-gensim0 (0.04315: shallow2-glove vs. 0.04358: shallow0-glovegensim0)
- global max pooling better than attention (0.04315: shallow2-glove vs. 0.04486: shallow4-glove)
- gru better than lstm (0.4032: shallow3-fasttext vs 0.4103: shallow1-fasttext)
cnn-emb
- fasttext performs better (0.04763: shallow0-fasttext vs. 0.04869: shallow0-glove)
- shallow performs better (0.04869: shallow0-glove vs. 0.04927: deep0-glove)
- kmax performs much better (0.04869: shallow0-glove vs. 0.05810: att_shallow0-glove)