Skip to main content

A Lightweight Conditional Random Field

Project description

A Lightweight Conditional Random Field

This is a modern Python library without any third-party dependencies and a backend written in C implementing conditional random fields for natural language processing tasks like named entity recognition or part-of-speech tagging.

You can install the latest stable version from PyPI:

$ pip install chaine

If you are interested in the theoretical concepts behind conditional random fields, I can recommend the introducing paper by Lafferty et al.

Example

>>> import chaine
>>> sequences = [[["a", "a"], ["b", "b"]]]
>>> labels = [["0", "1"]]
>>> model = chaine.train(sequences, labels)
>>> model.predict(sequences)
[['0', '1']]

Check out the introducing Jupyter notebook.

Credits

This library makes use of and is partially based on:

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

chaine-0.2.0.tar.gz (116.0 kB view hashes)

Uploaded Source

Built Distributions

chaine-0.2.0-cp39-cp39-manylinux2014_x86_64.whl (1.1 MB view hashes)

Uploaded CPython 3.9

chaine-0.2.0-cp38-cp38-manylinux2014_x86_64.whl (1.1 MB view hashes)

Uploaded CPython 3.8

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page