Coreference Resolution without Span Representations

  • 来源:ACL 2021 short
  • 机构:tau
  • 任务:Coref
  • 动机:原先 coref 都是基于 span pair 之间的关系的,都需要 dynamically-constructed span and span-pair representations,太慢,不行
  • 方法:还是遵循的 lee 的打分机制,只不过是换了 f_m 和 f_a 的计算方法
    • lee naacl 的 coarse 2 fine:
    • 本文的 start 2 end:
      • 别人是计算 span 之间的关系,这里是计算 e1 的 start end 和 e2 的 start end 之间的关系,有点 tp-linker 的意思
      • 先得到一个实体起始结束位置的表示,就是起始结束 token 表示 + linear
      • 然后 f_m 就使用这俩以及 bilinear 得到
      • 对 f_a 也整一套 entity 的起始终止位置表示
      • f_a 就是四个 bilinear 的和
      • 这和拼接再 bilinear 也是等价的(但是不用这个,这个复杂度高)
  • 实验:
    • 实验设置里,说没用 high-order,还说 CorefQA 里说 high-order inference 没用,可是 CorefQA 里哪说了啊?high-order inference 到底是啥,还得去看 naacl 那个
    • 结果还挺好,s2e 好于 c2f,就是不知道他用 Longformer-Large 是不是公平

发表评论