Customizing the Named Entity Recogntition model in Azure ML

谁都会走 提交于 2021-01-28 02:17:53

问题


Can we customize the Named Entity Recognition (NER) model in Azure ML Studio with a separate training dataset? What I want to do is to find out non-English names from a text. (Training dataset includes the set of names that going to use for training)


回答1:


Unfortunately, this module's ability to perform NER with a custom set of entities is planned for the future, but not currently available.

If you're familiar with Python and willing to put in the extra footwork, you might consider using the Natural Language Toolkit (NLTK). Sujit Pal has a nice blog post and sample code describing the creation of a custom NER with that package. You may be able to train an NLTK NER model and apply it to your data of interest from within an Execute Python Script module on Azure ML.



来源:https://stackoverflow.com/questions/39071771/customizing-the-named-entity-recogntition-model-in-azure-ml

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!