messense / crfs-rs

Pure Rust port of CRFsuite: a fast implementation of Conditional Random Fields (CRFs)
MIT License
28 stars 11 forks source link

Model training #2

Open bratao opened 3 years ago

bratao commented 3 years ago

Hello @messense , You doing a Hero work. CRFsuite is legendary for its performance in multiple scenarios. It still knock up Deep learning for many tasks in our pipeline.

I´m just curious, do you plan to implement model training?

Thanks!

messense commented 3 years ago

I'd love to have model training support in crfs-rs, but it will certainly take much more time than implementing prediction.

For now, you can use the C binding crfsuite-rs to do model training.

messense commented 3 years ago

There is already a LBFGS Rust port https://github.com/ybyygu/rust-lbfgs , we could use it when porting the training part.