Parallelization possible with Python CRFsuite?

732 views Asked by At

Is it possible to parallelize python CRFSuite (https://github.com/tpeng/python-crfsuite) ? I think CRF++ support parallelization, so I guess there must be some hooks to enable parallelization with CRFsuite as well.

1

There are 1 answers

7
Mikhail Korobov On

No, it is currently not possible; parallel training is not implemented. There is some work on it in bug tracker though. You can still run cross-validation in parallel (i.e. train multiple models in parallel).