您的位置:首页 > 其它

CoNLL Multi-lingual Dependency Parsing 格式

2014-07-07 00:56 357 查看

CoNLL 任务地址:http://ilk.uvt.nl/conll/

---------------------------------------------------------

Data format

Data adheres to the following rules:

Data files contain sentences separated by a blank line.
A sentence consists of one or tokens, each one starting on a new line.
A token consists of ten fields described in the table below. Fields are separated by a single tab character. Space/blank characters are not allowed in within fields
All data files will contains these ten fields, although only the ID, FORM, CPOSTAG, POSTAG, HEAD and DEPREL columns are guaranteed to contain non-dummy (i.e. non-underscore) values for all languages.
Data files are UTF-8 encoded (Unicode). If you think this will be a problem, have a look
here.
Field number:Field name:Description:
1IDToken counter, starting at 1 for each new sentence.
2FORMWord form or punctuation symbol.
3LEMMALemma or stem (depending on particular data set) of word form, or an underscore if not available.
4CPOSTAGCoarse-grained part-of-speech tag, where tagset depends on the language.
5POSTAGFine-grained part-of-speech tag, where the tagset depends on the language, or identical to the coarse-grained part-of-speech tag if not available.
6FEATSUnordered set of syntactic and/or morphological features (depending on the particular language), separated by a vertical bar (|), or an underscore if not available.
7HEADHead of the current token, which is either a value of ID or zero ('0'). Note that depending on the original treebank annotation, there may be multiple tokens with an ID of zero.
8DEPRELDependency relation to the HEAD. The set of dependency relations depends on the particular language. Note that depending on the original treebank annotation, the dependency relation may be meaningfull or simply 'ROOT'.
9PHEADProjective head of current token, which is either a value of ID or zero ('0'), or an underscore if not available. Note that depending on the original treebank annotation, there may be multiple tokens an with ID of zero. The dependency structure resulting
from the PHEAD column is guaranteed to be projective (but is not available for all languages), whereas the structures resulting from the HEAD column will be non-projective for some sentences of some languages (but is always available).
10PDEPRELDependency relation to the PHEAD, or an underscore if not available. The set of dependency relations depends on the particular language. Note that depending on the original treebank annotation, the dependency relation may be meaningfull or simply 'ROOT'.

Some questions:1.什么是FEATS?

                           2.PHEAD是不是只有在projective的语言里才能用到?
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  nlp parse conll