SkillAgentSearch skills...

Crf

A pure-Python implementation of the Linear-Chain Conditional Random Fields

Install / Use

/learn @lancifollia/Crf
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

crf

A pure python implementation of the Linear-Chain Conditional Random Fields

Dependencies

  • Numpy
  • Scipy

Usage

You can test this code with CoNLL 2000 Chunking Data.

Training

# format
python3 crf_train.py <train_file> <model_file>

# example
python3 crf_train.py data/chunking_small/small_train.data small_model.json

Test

# format
python3 crf_test.py <test_file> <trained_model_file>

# example
python3 crf_test.py data/chunking_small/small_test.data small_model.json

Benchmark Result

Accuracy

| | crf | CRF++ | |--------------- | -------- | -------- | | chunking_full | 0.960128 | 0.960128 | | chunking_small | 0.899072 | 0.889474 |

License

MIT

Reference

An Introduction to Conditional Random Fields / Charles Sutton, Andrew McCallum/ 2010

View on GitHub
GitHub Stars100
CategoryDevelopment
Updated4mo ago
Forks22

Languages

Python

Security Score

92/100

Audited on Oct 30, 2025

No findings