Reputation: 11
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?
Upvotes: 0
Views: 5862
Reputation: 193
Install it using below command:
pip install sklearn-crfsuite
If its in google collab use:
!pip install sklearn-crfsuite
!
Upvotes: 4