【发布时间】:2017-11-03 08:46:59
【问题描述】:
我想从非结构化文本中提取一些信息。
例如,我的文字是“控制纽约温度低于 39”
我想要的信息是(“control”、“NewYork”、“temperature”、“under”、“39”)。
结果信息中,“control”表示动作,“NewYork”表示动作目标,“temperature”表示指标,“under 39”表示范围。
但是,文本内容的结构是多种多样的。
以下是一些典型案例。
"Control NewYork temperature under 39"
==>("control","NewYork", "temperature", "under", "39")
"give some money to my brother"
==>("give", "money", "my brother")
"Adjust the height of the table"
==>("adjust", "table", "height")
对我的问题有什么建议吗? 非常感谢!
【问题讨论】: