Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Parallelization possible with Python CRFsuite?

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.

like image 793
Joe Cheri Ross Avatar asked Oct 30 '22 01:10

Joe Cheri Ross


1 Answers

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).

like image 78
Mikhail Korobov Avatar answered Nov 15 '22 06:11

Mikhail Korobov