https://github.com/ct-clmsn/rust_lda
an implementation of latent dirichlet allocation in rust
https://github.com/ct-clmsn/rust_lda
Last synced: 8 months ago
JSON representation
an implementation of latent dirichlet allocation in rust
- Host: GitHub
- URL: https://github.com/ct-clmsn/rust_lda
- Owner: ct-clmsn
- License: bsl-1.0
- Created: 2020-08-20T04:30:37.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-08-20T04:47:44.000Z (about 5 years ago)
- Last Synced: 2025-01-11T15:45:51.769Z (9 months ago)
- Language: Rust
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE_1_0.txt
Awesome Lists containing this project
README
# rust_lda - A Rust Latent Dirichlet Allocation Library
Project details [here](http://www.github.com/ct-clmsn/rust_lda/).
This project implements latent dirichlet allocation using rust.
### License
Boost Software License
### Features
* InvertedIndex implementation
* Latent Dirichlet Allocation implementation### Demo
`cargo run --example example sample-data/web/en/`### TODO
* Add parallelization support
* Test different sampling wheel techniques
* Human-readable print outs### Author
Christopher Taylor### Dependencies
[Rust](https://www.rust-lang.org)### Thank you
* [MALLET](https://github.com/mimno/Mallet) - for providing the data in this projects 'sample-data' directory on the [MALLET site](http://mallet.cs.umass.edu/index.php).