美文网首页
Emotion-Cause Pair Extraction: A

Emotion-Cause Pair Extraction: A

作者: 一个迷人的昵称 | 来源:发表于2021-12-13 11:12 被阅读0次

ECPE任务

区别:

微信图片_20211213111138.png
  • 任务定义:给定以字句`c_i`构成的文档d,提取情感-原因对: P={..., (c^e, c^c), ...}

  • 数据示例:

    image.png
即`句子4`中的**anger**的情绪是由于`句子1`和`句子2`
  • 解决方案:
    1. step1:Individual Emotion and Cause Extraction
    2. step2:Emotion-Cause Pairing and Filtering
  • 评价方法:
image.png
  • 论文中的结果
image.png

对比IndependentInter-ECInter-CE的结果,可以看到 Inter-~ 都会有所提升

the improvements of Inter-EC on the cause extraction task are much more than the improvement of InterCE on the emotion extraction task

it is because cause extraction is more difficult than emotion extraction, hence there is more room for extra improvement.

image.png

By comparing the results of Inter-EC-Bound and Inter-EC, we found that although Inter-EC performs better than Indep, it is far poorer than Inter-EC-Bound

is caused by lots of errors in the predictions of emotion extraction. We can draw the same conclusion when comparing InterCE-Bound and Inter-CE.


具体方法:

Step1: Individual Emotion and Cause Extraction

这部分的目的是为了从文档d中提取可能的情感相关子句原因相关子句,这里分为两种方法:

1. Independent Multi-task Learning
image.png

用白话描述就是对于每个子句c_i,均由词语w_{(i, |c_i|)}组成,是故最下层的BiLSTM-Attention结构用于将子句转为句子级别的表示S_i。然后将得到的表示向量分别给两个BiLSTM进行分类,从而确定Emotion setCause set

  1. Interactive Multi-task Learning

按照作者的表述,InteractiveIndependent的增强版。在这种方法中,也分为以下两种方式:

  • Inter-EC:用Emotion的信息增强Cause
  • Inter-CE:用Cause的信息增强Emotion

那么,怎么增强呢?先做其中一个,再把hidden state拿出来做另外一个。

image.png
2. Step 2: Emotion-Cause Pairing and Filtering

这部分的目的是为了对上一步提取出的情感相关子句原因相关子句进行匹配以及筛选。按照以下的步骤来做:

  1. 每两个互相匹配:(c_i^e, c_j^c)
  2. 每对之间计算笛卡尔积:v^d
  3. 构建特征:X_(c_i^e, c_j^c)=[S_i^e, S_j^c, v^d]
  4. Logistic regression model: image.png
  • 备注:总体感觉这篇论文是以子句为单位,将情感-原因的抽取转为分类问题,所以比较重要的就是子句的划分以及分类的准确。论文里以multitask为思路提出了两种方法,论文没有对比pipeline处理的结果好坏,猜测可能分开做不能利用情感-原因之间的内在联系。极端点来说,可以将第一步中的句子选择改为全部句子的match,将任务转为一个句子对匹配的任务,不过这样会使问题变成n^2,因此感觉Step1中的选取句子更像是为了Step2提前做剪枝。

相关文章

网友评论

      本文标题:Emotion-Cause Pair Extraction: A

      本文链接:https://www.haomeiwen.com/subject/eajjfrtx.html