Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dominicburkart/fast_text
Rust wrapper for Facebook's FastText package.
https://github.com/dominicburkart/fast_text
fasttext machine-learning ml nlp rust word-embeddings
Last synced: about 1 month ago
JSON representation
Rust wrapper for Facebook's FastText package.
- Host: GitHub
- URL: https://github.com/dominicburkart/fast_text
- Owner: DominicBurkart
- Created: 2018-07-31T04:55:41.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-12T13:07:54.000Z (over 4 years ago)
- Last Synced: 2024-09-14T10:02:17.424Z (2 months ago)
- Topics: fasttext, machine-learning, ml, nlp, rust, word-embeddings
- Language: Rust
- Homepage:
- Size: 1.85 MB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# fast_text
[![Build Status](https://travis-ci.org/DominicBurkart/fast_text.svg?branch=master)](https://travis-ci.org/DominicBurkart/fast_text)
[![Coveralls Coverage Status](https://coveralls.io/repos/github/DominicBurkart/fast_text/badge.svg)](https://coveralls.io/github/DominicBurkart/fast_text)
[![Codecov Coverage Status](https://codecov.io/gh/DominicBurkart/fast_text/branch/master/graphs/badge.svg)](https://codecov.io/gh/DominicBurkart/fast_text)
[![Crates.io](https://img.shields.io/crates/v/fast_text.svg)](https://crates.io/crates/fast_text)
[![Rust Documentation](https://docs.rs/fast_text/badge.svg)](https://docs.rs/fast_text)FastText implements a series NLP utilities that operate efficiently on
large datasets. This library allows rust programs to build and interface
with Facebook's fastText library. It's not great in terms of performance: it
works as a simple wrapper to the
command instead of trying to bind to a shared C API.See the fastText [website](https://fasttext.cc) and [codebase](https://github.com/facebookresearch/fastText) for more information.
Implementation notes:
- Does not currently support the analogy function