我正在使用 Vowpal Wabbit 的 python API 来训练命名实体识别分类器,以从短句中检测人名、组织和位置的名称。我整理了一个IPython Notebook,其中包含有关数据的详细信息、模型的训练方式以及评估语句中识别的实体。训练数据来自ATIS和CONLL 2003数据集。
我的 Vowpal Wabbit SearchTask 类的设置(基于本教程):
class SequenceLabeler(pyvw.SearchTask):
def __init__(self, vw, sch, num_actions):
pyvw.SearchTask.__init__(self, vw, sch, num_actions)
sch.set_options( sch.AUTO_HAMMING_LOSS | sch.AUTO_CONDITION_FEATURES )
def _run(self, sentence):
output = []
for n in range(len(sentence)):
pos,word = sentence[n]
with self.vw.example({'w': [word]}) as ex:
pred = self.sch.predict(examples=ex, my_tag=n+1, oracle=pos, condition=[(n,'p'), (n-1, 'q')])
output.append(pred)
return output
模型训练:
vw = pyvw.vw(search=num_labels, search_task='hook', ring_size=1024)
#num_labels = 3 ('B'eginning entity, 'I'nside entity, 'O'ther)
sequenceLabeler = vw.init_search_task(SequenceLabeler)
sequenceLabeler.learn(training_set)
该模型在训练数据中存在的命名实体(精确字符串匹配)上表现良好,但对使用相同结构的新示例的泛化能力很差。也就是说,分类器将从训练数据中识别句子中存在的实体,但是当我只更改名称时,它们的效果很差。
sample_sentences = ['new york to las vegas on sunday afternoon',
'chennai to mumbai on sunday afternoon',
'lima to ascuncion on sunday afternoon']
运行分类器时的输出:
new york to las vegas on sunday afternoon
locations - ['new york', 'las vegas']
chennai to mumbai on sunday afternoon
locations - []
lima to ascuncion on sunday afternoon
locations - []
这表明即使句子保持不变:' a
to b
on sunday下午',模型也无法识别新位置,可能是因为它已经记住了训练示例?
organisation
和person
分类器也有类似的结果。这些可以在我的Github中找到。
我的问题是——
- 我在这里做错了什么?
- 我可以改变模型的其他参数吗?还是我可以更好地使用现有的,例如
ring_size
andsearch_task
? - 您有什么建议可以提高模型的通用性吗?