ModuleNotFoundError: No module named 'sklearn_crfsuite'

5.4k Views Asked by At
import sklearn_crfsuite
from sklearn_crfsuite import scorers

I am trying to use the sklearn's crfsuite but it is showing an error that no module named 'sklearn_crfsuite', also checked the documentation there also the same thing is mentioned?

1

There are 1 best solutions below

0
Sai Teja On

Install it using below command:

pip install sklearn-crfsuite

If its in google collab use:

!pip install sklearn-crfsuite

!