Skip to main content

One post tagged with "NLP"

Natural Language Processing (NLP) related posts

View All Tags

使用MLflow和Ray训练fastText

· 18 min read
Eason G.
Engineer

fastText是Facebook研发的一款针对NLP领域的解决方案。

其主要提供了文本分类和词向量学习两大功能。 其核心思想是将整句话的词向量叠加平均作为文本表示, 并使用softmax分类器进行分类。

我们通过本文介绍一下如何使用MLflow以及Ray来训练我们的fastText模型。