- 授权协议: Apache 2.0
- 开发语言: Python
- 操作系统: 跨平台
- 软件首页: https://github.com/snipsco/snips-nlu
- 软件文档: https://snips-nlu.readthedocs.io/en/latest/
- 官方下载: https://github.com/snipsco/snips-nlu
软件介绍
Snips NLU 是 Snips 嵌入式语音平台背后的开源库,它是一个用于自然语言理解的 Python 库,可解析用自然语言书写的句子,同时提取结构化信息。开发者可以用它创造出专有的语音助手。
示例:
比如这样一句话:
"What will be the weather inparisat 9pm?"
经过适当的训练,Snip NLU 引擎将能够提取结构化数据,例如:
{
"intent": {
"intentName": "searchWeatherForecast",
"probability": 0.95
},
"slots": [
{
"value": "paris",
"entity": "locality",
"slotName": "forecastLocality"
},
{
"value": {
"kind": "InstantTime",
"value": "2018-02-08 20:00:00 +00:00"
},
"entity": "snips/datetime",
"slotName": "forecastStartDatetime"
}
]
}处理流程
PHP实战
Dagfinn Reiersol、Marcus Baker、Chris Shiflett / 张颖 等、段大为 审校 / 人民邮电出版社 / 2010-01 / 69.00元
“对于那些想要在PHP方面更进一步的开发者而言,此书必不可少。” ——Gabriel Malkas, Developpez.com “简而言之,这是我所读过的关于面向对象编程和PHP最好的图书。……强烈推荐此书,绝不要错过!” ——Amazon评论 “此书是理论与实践的完美融合,到目前为止,其他任何图书都无法与它相媲美。如果5颗星是满分,它完全值得10颗星!” ——A......一起来看看 《PHP实战》 这本书的介绍吧!
