FastText笔记

提纲:

1、功能介绍

2、相关论文

3、词向量

4、文本分类


一、功能介绍

Fasttext isan open-source,free,lightweightlibrary that allows users to learn text representations and text classifiers.Itwords on standard,generic hardware.Models canlater be reduced in size to even fit on mobile devices.

Fasttext是一个开源、免费、轻量级的工具库,它允许用户学习词向量和进行文本分类。它可以工作在标准、通用的硬件上。训练出的模型很小甚至可以在移动设备上运行。


二、相关论文

Efficient estimation of wordrepresentations in vector space 2013

Bag of Tricks for Efficient TextClassification 2016


三、词向量

1、词的表示

    one-hot representation

  Distributed representation

FastText笔记