├── .builds └── freebsd.yml ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── CI.yml │ └── Python.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── benches └── crf_bench.rs ├── python ├── .cargo │ └── config.toml ├── Cargo.toml ├── README.md ├── crfs.pyi ├── pyproject.toml └── src │ └── lib.rs ├── src ├── context.rs ├── dataset.rs ├── feature.rs ├── lib.rs ├── model.rs └── tagger.rs └── tests └── model.crfsuite /.builds/freebsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/crfs-rs/HEAD/.builds/freebsd.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: messense 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/crfs-rs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/crfs-rs/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.github/workflows/Python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/crfs-rs/HEAD/.github/workflows/Python.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/crfs-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/crfs-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/crfs-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/crfs-rs/HEAD/README.md -------------------------------------------------------------------------------- /benches/crf_bench.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/crfs-rs/HEAD/benches/crf_bench.rs -------------------------------------------------------------------------------- /python/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/crfs-rs/HEAD/python/.cargo/config.toml -------------------------------------------------------------------------------- /python/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/crfs-rs/HEAD/python/Cargo.toml -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/crfs-rs/HEAD/python/README.md -------------------------------------------------------------------------------- /python/crfs.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/crfs-rs/HEAD/python/crfs.pyi -------------------------------------------------------------------------------- /python/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/crfs-rs/HEAD/python/pyproject.toml -------------------------------------------------------------------------------- /python/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/crfs-rs/HEAD/python/src/lib.rs -------------------------------------------------------------------------------- /src/context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/crfs-rs/HEAD/src/context.rs -------------------------------------------------------------------------------- /src/dataset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/crfs-rs/HEAD/src/dataset.rs -------------------------------------------------------------------------------- /src/feature.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/crfs-rs/HEAD/src/feature.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/crfs-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/crfs-rs/HEAD/src/model.rs -------------------------------------------------------------------------------- /src/tagger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/crfs-rs/HEAD/src/tagger.rs -------------------------------------------------------------------------------- /tests/model.crfsuite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/crfs-rs/HEAD/tests/model.crfsuite --------------------------------------------------------------------------------