KO
|
EN
gitlite — search
Search
#python
#java
#php
#javascript
#hacktoberfest
#ruby
#game-development
#dotfiles
#nodejs
#android
#library
#sqlite
crfsuite-rs
★ 25
Open GitHub ↗
Rust binding to crfsuite
Download README (.md)
Explore Similar Repositories
crfs-rs
:
Pure Rust port of CRFsuite: a fast implementation of Conditional Random Fields (CRFs)
spacy_crfsuite
:
sequence tagging with spaCy and crfsuite
scikitcrf_NER
:
Python library for custom entity recognition using Sklearn CRF
node-crfsuite
:
A nodejs binding for crfsuite
mmCRFseg
:
mmCRFseg: Word Segmentation for Myanmar Language using Conditional Random Fields
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
crfsuite-rs
?
Download (.md)
# crfsuite-rs [](https://github.com/messense/crfsuite-rs/actions?query=workflow%3ARust) [](https://github.com/messense/crfsuite-rs/actions?query=workflow%3APython) [](https://codecov.io/gh/messense/crfsuite-rs) [](https://crates.io/crates/crfsuite) [](https://docs.rs/crfsuite/) [](https://pypi.org/project/crfsuite) Rust binding to [crfsuite](https://github.com/chokkan/crfsuite) ## Installation Add it to your ``Cargo.toml``: ```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`: ```bash pip install -U crfsuite ``` Usage example: ```python 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](./LICENSE) file.