Closed banyh closed 7 years ago
Could you clarify the language and the dataset that you evaluated POS tagging on? Or do you mean tagging is worse on that specific sentence?
Here is the information:
parsey_mcparseface
English
ud-treebanks-conll2017/UD_English/en-ud-dev.conllu
0.9303
0.9217
Oh, that is because parsey_mcparseface
was trained on a significantly larger dataset. Further, it was optimized to maximize both POS tagging accuracy and parsing accuracy.
On the other hand, our baseline models for CoNLL 2017 (including the English
model you looked at) could only be trained on UD
data and were optimized only for parsing accuracy.
To learn more: http://universaldependencies.org/conll17/evaluation.html
System information
/home/banyhong/syntaxnet_wrapper/syntaxnet_wrapper/models/syntaxnet
('v1.1.0-rc1-168-g0054c39', '1.1.0-rc1')
Describe the problem
The tagging performance of DRAGNN is worse than SyntaxNet.
I've modified
dragnn/tools/parse-to-conll.py
to make it printint outtoken.tag
.The sentence
"Alice drove down the street in her car"
has been parsed by SyntaxNet tagger+parser, DRAGNN parser. The pos-tag ofAlice
isNOUN++NNP
in SyntaxNet, but isADV++RB
in DRAGNN.Source code / logs
Modified
parse-to-conll.py
line 227 to 231:To get DRAGNN parser result:
The content in
output.conll
is:The parsing result of SyntaxNet is: