PHP中的英语语法解析(链接语法)
有没有办法在 PHP(或 C# 但我更喜欢 php)中使用链接语法或 AbiSource 语法检查器?我需要一个英语句子的树结构。有什么想法吗?我发现的唯一东西是 C 语言,我不能在共享主机上使用它们。
Is there any way to use the Link Grammar or AbiSource grammar checker in PHP (or C# but I'd prefer php)? I need to have a tree structure for English sentences. Any ideas? The only things I found were in C and I can't use them on a shared host.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 SharpNLP,它可以进行短语结构解析。
链接语法没有 PHP 绑定(或 C# 绑定)。您必须编写自己的绑定。而且Link Grammar是用C编写的,所以如果你不能把自己的C代码放在共享主机上,那么你就不能使用Link Grammar。
You could use SharpNLP, which does phrase-structure parsing.
Link Grammar doesn't have PHP bindings (or C# bindings). You'd have to write your own bindings. And Link Grammar is written in C, so if you can't put your own C code on a shared host, then you can't use Link Grammar.