如何在 C# 代码中使用 python NLP POS 标记器?
我遇到并成功使用了 python NLP POS 标记器。问题是我的代码是用 c# 编写的,我使用了 python pos 标记器,因为我找不到好的 c# pos 标记器。现在,我不知道如何使用它我的 C# 代码中的 python NLP POS 标记器。有人可以指导我吗?还请建议任何 C# POS 标记器。谢谢
编辑:
我想过使用 IronPython 来使用 python NLP POS 标记器。但是当我使用 import nltk
时,我得到一个 ImportError:No module named nltk
在 python2.6 中使用相同的命令时效果非常好。
I came across and successfully used a python NLP POS tagger.The problem is that my code was in c# and I used a python pos tagger because I could not find a good c# pos tagger.Now,I don't know how to use this python NLP POS tagger in my c# code.Could anyone guide me?Also please do suggest any C# POS tagger.Thankx
EDIT:
I thought of using IronPython for using the python NLP POS tagger.But when I use import nltk
,I get an ImportError:No module named nltk
The same command when used in python2.6 had worked perfectly fine.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 SharpNLP 项目。
You can use the SharpNLP project.
如果您确实想继续使用 Python 的 NLP 标记器,您可以随时尝试使用 DLR 托管它:http://blogs.msdn.com/b/srivatsn/archive/2008/09/16/hosting-ironpython-made-easier.aspx
If you really want to keep using the NLP tagger for python, you can always try and host it with the DLR: http://blogs.msdn.com/b/srivatsn/archive/2008/09/16/hosting-ironpython-made-easier.aspx