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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
|
from __future__ import unicode_literals
from builtins import range
from enum import Enum, unique
from snips_inference_agl.constants import END, SLOT_NAME, START, TEXT
from snips_inference_agl.preprocessing import Token, tokenize
from snips_inference_agl.result import unresolved_slot
BEGINNING_PREFIX = "B-"
INSIDE_PREFIX = "I-"
LAST_PREFIX = "L-"
UNIT_PREFIX = "U-"
OUTSIDE = "O"
RANGE = "range"
TAGS = "tags"
TOKENS = "tokens"
@unique
class TaggingScheme(Enum):
"""CRF Coding Scheme"""
IO = 0
"""Inside-Outside scheme"""
BIO = 1
"""Beginning-Inside-Outside scheme"""
BILOU = 2
"""Beginning-Inside-Last-Outside-Unit scheme, sometimes referred as
BWEMO"""
def tag_name_to_slot_name(tag):
return tag[2:]
def start_of_io_slot(tags, i):
if i == 0:
return tags[i] != OUTSIDE
if tags[i] == OUTSIDE:
return False
return tags[i - 1] == OUTSIDE
def end_of_io_slot(tags, i):
if i + 1 == len(tags):
return tags[i] != OUTSIDE
if tags[i] == OUTSIDE:
return False
return tags[i + 1] == OUTSIDE
def start_of_bio_slot(tags, i):
if i == 0:
return tags[i] != OUTSIDE
if tags[i] == OUTSIDE:
return False
if tags[i].startswith(BEGINNING_PREFIX):
return True
if tags[i - 1] != OUTSIDE:
return False
return True
def end_of_bio_slot(tags, i):
if i + 1 == len(tags):
return tags[i] != OUTSIDE
if tags[i] == OUTSIDE:
return False
if tags[i + 1].startswith(INSIDE_PREFIX):
return False
return True
def start_of_bilou_slot(tags, i):
if i == 0:
return tags[i] != OUTSIDE
if tags[i] == OUTSIDE:
return False
if tags[i].startswith(BEGINNING_PREFIX):
return True
if tags[i].startswith(UNIT_PREFIX):
return True
if tags[i - 1].startswith(UNIT_PREFIX):
return True
if tags[i - 1].startswith(LAST_PREFIX):
return True
if tags[i - 1] != OUTSIDE:
return False
return True
def end_of_bilou_slot(tags, i):
if i + 1 == len(tags):
return tags[i] != OUTSIDE
if tags[i] == OUTSIDE:
return False
if tags[i + 1] == OUTSIDE:
return True
if tags[i].startswith(LAST_PREFIX):
return True
if tags[i].startswith(UNIT_PREFIX):
return True
if tags[i + 1].startswith(BEGINNING_PREFIX):
return True
if tags[i + 1].startswith(UNIT_PREFIX):
return True
return False
def _tags_to_preslots(tags, tokens, is_start_of_slot, is_end_of_slot):
slots = []
current_slot_start = 0
for i, tag in enumerate(tags):
if is_start_of_slot(tags, i):
current_slot_start = i
if is_end_of_slot(tags, i):
slots.append({
RANGE: {
START: tokens[current_slot_start].start,
END: tokens[i].end
},
SLOT_NAME: tag_name_to_slot_name(tag)
})
current_slot_start = i
return slots
def tags_to_preslots(tokens, tags, tagging_scheme):
if tagging_scheme == TaggingScheme.IO:
slots = _tags_to_preslots(tags, tokens, start_of_io_slot,
end_of_io_slot)
elif tagging_scheme == TaggingScheme.BIO:
slots = _tags_to_preslots(tags, tokens, start_of_bio_slot,
end_of_bio_slot)
elif tagging_scheme == TaggingScheme.BILOU:
slots = _tags_to_preslots(tags, tokens, start_of_bilou_slot,
end_of_bilou_slot)
else:
raise ValueError("Unknown tagging scheme %s" % tagging_scheme)
return slots
def tags_to_slots(text, tokens, tags, tagging_scheme, intent_slots_mapping):
slots = tags_to_preslots(tokens, tags, tagging_scheme)
return [
unresolved_slot(match_range=slot[RANGE],
value=text[slot[RANGE][START]:slot[RANGE][END]],
entity=intent_slots_mapping[slot[SLOT_NAME]],
slot_name=slot[SLOT_NAME])
for slot in slots
]
def positive_tagging(tagging_scheme, slot_name, slot_size):
if slot_name == OUTSIDE:
return [OUTSIDE for _ in range(slot_size)]
if tagging_scheme == TaggingScheme.IO:
tags = [INSIDE_PREFIX + slot_name for _ in range(slot_size)]
elif tagging_scheme == TaggingScheme.BIO:
if slot_size > 0:
tags = [BEGINNING_PREFIX + slot_name]
tags += [INSIDE_PREFIX + slot_name for _ in range(1, slot_size)]
else:
tags = []
elif tagging_scheme == TaggingScheme.BILOU:
if slot_size == 0:
tags = []
elif slot_size == 1:
tags = [UNIT_PREFIX + slot_name]
else:
tags = [BEGINNING_PREFIX + slot_name]
tags += [INSIDE_PREFIX + slot_name
for _ in range(1, slot_size - 1)]
tags.append(LAST_PREFIX + slot_name)
else:
raise ValueError("Invalid tagging scheme %s" % tagging_scheme)
return tags
def negative_tagging(size):
return [OUTSIDE for _ in range(size)]
def utterance_to_sample(query_data, tagging_scheme, language):
tokens, tags = [], []
current_length = 0
for chunk in query_data:
chunk_tokens = tokenize(chunk[TEXT], language)
tokens += [Token(t.value, current_length + t.start,
current_length + t.end) for t in chunk_tokens]
current_length += len(chunk[TEXT])
if SLOT_NAME not in chunk:
tags += negative_tagging(len(chunk_tokens))
else:
tags += positive_tagging(tagging_scheme, chunk[SLOT_NAME],
len(chunk_tokens))
return {TOKENS: tokens, TAGS: tags}
def get_scheme_prefix(index, indexes, tagging_scheme):
if tagging_scheme == TaggingScheme.IO:
return INSIDE_PREFIX
elif tagging_scheme == TaggingScheme.BIO:
if index == indexes[0]:
return BEGINNING_PREFIX
return INSIDE_PREFIX
elif tagging_scheme == TaggingScheme.BILOU:
if len(indexes) == 1:
return UNIT_PREFIX
if index == indexes[0]:
return BEGINNING_PREFIX
if index == indexes[-1]:
return LAST_PREFIX
return INSIDE_PREFIX
else:
raise ValueError("Invalid tagging scheme %s" % tagging_scheme)
|