来自 WPF 的 IronPython 中的 NLTK
我想使用 IronPython 将 NLTK(自然语言工具包)用于 Python,并从现有的 WPF/c# 项目进行调用。
是否可以通过这种方式从 WPF 中引用 NLTK?例如使用 NTLK 的命名实体识别?
任何建议或指导表示赞赏。
I would like to use NLTK (Natural Language Toolkit) for Python using IronPython and call from an exisiting WPF/c# project.
Is it possible to reference NLTK from within WPF in this way. For example to use Named Entity Recognition from NTLK?
Any advice or guidance appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只要 NLTK 不使用任何 C 扩展,这绝对是可能的。不过如果你使用VS2010的话会容易得多,因为有dynamic关键字。查看 IronPython 中的 Microsoft.Scripting.Hosting 库,它将帮助您开始加载 NLTK 代码并在其上执行方法。
It definitely is possible, as long as NLTK doesn't use any C extensions. It will be much easier if you use VS2010 though, because of the dynamic keyword. Look at the Microsoft.Scripting.Hosting library from IronPython, it will get you started towards loading the NLTK code and executing methods on it.