-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconllu-sentences.blf.yaml
More file actions
74 lines (63 loc) · 1.79 KB
/
Copy pathconllu-sentences.blf.yaml
File metadata and controls
74 lines (63 loc) · 1.79 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# BlackLab INPUT FORMAT: CoNLL-U with <s> sentence markers
#
# Input files must be preprocessed with:
# python scripts/conllu_to_wpl.py input.conllu input_s.conllu
#
# The first annotation listed is the main annotation (word).
# Sensitivity values: sensitive_insensitive | sensitive | insensitive
#
# CoNLL-U columns (1-indexed):
# 1: ID 2: FORM 3: LEMMA 4: UPOS 5: XPOS
# 6: FEATS 7: HEAD 8: DEPREL 9: DEPS 10: MISC
fileType: tabular
fileTypeOptions:
type: tsv
inlineTags: true
annotatedFields:
contents:
annotations:
- name: word
displayName: Word form
valuePath: 2
sensitivity: sensitive_insensitive
- name: lemma
displayName: Lemma
valuePath: 3
sensitivity: sensitive_insensitive
- name: pos
displayName: UPOS
valuePath: 4
sensitivity: insensitive
- name: xpos
displayName: XPOS
valuePath: 5
sensitivity: insensitive
- name: deprel
displayName: Dependency relation
valuePath: 8
sensitivity: insensitive
- name: wordnum
displayName: Token ID
valuePath: 1
sensitivity: insensitive
forwardIndex: false
- name: feats
displayName: Features
valuePath: 6
sensitivity: insensitive
forwardIndex: false
- name: head
displayName: Head
valuePath: 7
sensitivity: insensitive
forwardIndex: false
- name: deps
displayName: Enhanced deps
valuePath: 9
sensitivity: insensitive
forwardIndex: false
- name: other
displayName: Misc
valuePath: 10
sensitivity: insensitive
forwardIndex: false