Stanford NER tagger generates 'file not found' exception with provided models

守給你的承諾、 提交于 2019-11-29 12:58:10

It turns out that the provided models use "distributional similarity features" that require a .clusters file at a location specified in the compressed model file (tricky to change). If you're on the stanford network, presumably the required files are there. If not, I found two choices:

  1. Download stanford NER without the distributional similarity features (slightly degrades performance, but runs faster). disclaimer: I havn't actually tried this, but it should work.
  2. Download the distsim file (look here) from stanford and create a sym-link to it so it appears to be in the correct location. In my case on a Mac, I did this:
    • I created a heirarchy of folders u/nlp/data/pos_tags_are_useless/ somewhere,
    • copied the downloaded egw4-reut.512.clusters file there,
    • then cd /; sudo ln -s <somewhere>/u.

This was an error in the model files accompanying the initial release of the v3.4.1 code, and has been fixed. Re-download and all should run fine, without requiring the symlink workaround.

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