A Simple but Tough-to-Beat Baseline for Sentence Embeddings阅读笔记

文章目录

  • 概述
  • 算法
  • 实验
    • 1. Textual Similarity Tasks
    • 2. Supervised Tasks

概述

一篇17年的论文, 采用无监督的方法.
主要思想可以概括为两步:

  • 利用词嵌入方法,通过词向量的线性的加权组合对一个句子进行编码
  • 利用奇异向量求出最终的句向量。

算法

A Simple but Tough-to-Beat Baseline for Sentence Embeddings阅读笔记_第1张图片

实验

1. Textual Similarity Tasks

数据集

  • all the datasets from SemEval semantic textual similarity (STS) tasks (2012-2015)
  • the SemEval 2015 Twitter task
  • the SemEval 2014 Semantic Relatedness task

实验设置
词向量分别采用了无监督的GloVe和弱监督的PSL.
α \alpha α固定为 1 0 − 3 10^{-3} 103, 词频利用commoncrawl dataset进行统计.

实验结果
A Simple but Tough-to-Beat Baseline for Sentence Embeddings阅读笔记_第2张图片

2. Supervised Tasks

  • the SICK similarity task
  • the SICK entailment task
  • the Stanford Sentiment Treebank (SST) binary classification task

实验结果
A Simple but Tough-to-Beat Baseline for Sentence Embeddings阅读笔记_第3张图片

你可能感兴趣的:(论文阅读,文本匹配论文阅读)