12 releases
| 0.3.1 | Jan 21, 2021 |
|---|---|
| 0.3.0 | Jan 17, 2021 |
| 0.2.8 | Nov 6, 2020 |
| 0.2.7 | Feb 24, 2020 |
| 0.1.1 | Jan 10, 2018 |
#3 in #crf
69 downloads per month
Used in 7 crates
(4 directly)
1.5MB
26K
SLoC
crfsuite-rs
Rust binding to crfsuite
Installation
Add it to your Cargo.toml:
[dependencies]
crfsuite = "0.3"
Add extern crate crfsuite to your crate root and your're good to go!
Python package
There is also a Python package named crfsuite, you can install it via pip:
pip install -U crfsuite
Usage example:
from crfsuite import Model
if __name__ == '__main__':
model = Model('path/to/crfsuite/model.crf')
tagged = model.tag(["abc", "def"])
print(tagged)
License
This work is released under the MIT license. A copy of the license is provided in the LICENSE file.
Dependencies
~160–485KB