【发布时间】:2020-08-10 10:03:59
【问题描述】:
我在客户和顾问之间有聊天互动 [Utterances],想知道顾问互动是否包含以下列表中的特定句子或类似句子:
我在顾问交互中寻找的例句
["I would be more than happy to help you with this",
"I would be happy to look over the account to see how I can help get this sorted out for you",
"I’d be more than happy to look into this for you!",
"Oh, I see, let me assist you with this concern.",
"I am more than happy to do everything I can to resolve this matter for you.",
"I would be happy to look over the account to see how I can help get this sorted out for you.",
"I am happy to have a look."]
I have a dataset which contains the list of interaction_id and Utterances(Sample below)
```Example Chat interaction between Advisor and CLient :
Client : Hello I would like to place an order for replacement battery
Agent: Hi Welcome to Battery service department. I would be happy to help you with your battery replacement Order.
如何获取/提取具有相似意图或含义的句子。 我是 NLP 的新手,我相信我手头有一个句子分类/提取问题,我想知道有什么方法可以实现我所需要的
基本上我正在尝试实现以下目标:
ID Utt Help_Stmt_Present
IRJST Hi Welcome to Battery service department.
I would be happy to help you with your battery
replacement Order. Yes
【问题讨论】:
标签: python-3.x nlp gensim doc2vec sentence-similarity