例如,给出以下句子:
A cat is on a bed.
The color of the cat is brown.
The bed is small.有没有一种方法可以把句子组合/总结成一个句子,比如:
A brown cat is on a small bed.我对摘要提取/生成一无所知,但是否有希望将其用于此目的?
发布于 2021-10-12 12:30:57
10/12/2021更新:
此NLP问题仍未解决。虽然有一些深度学习摘要模型可用,但没有一个在摘要方面比人类更好。
发布于 2021-12-10 09:16:51
我一直在做一个名为DLTR (做正确的小事)的项目,它的演示可以在这里找到:https://nlp.1theta.com/
有一个叫BridgeBlend的版块,我想知道这是不是你要找的?
BridgeBlend Demo
Input Statement-1
John loves eating pizza.
Input Statement-2
pizza is a food made using cheese.
Output:
John loves eating pizza, a food made using cheese.至于你的例子:
Input Statement-1
The color of the cat is brown.
Input Statement-2
The cat is on a bed.
Input Statement-3
The bed is small.
Output:
The cat is on a small bed and its color is brown.发布于 2021-04-30 14:11:51
这就是所谓的抽象摘要,你给出句子,然后从新句子中自动建模。在这方面有大量的论文。
https://stackoverflow.com/questions/40092477
复制相似问题