0
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?

sentence
  • 8,213
  • 4
  • 31
  • 40

1 Answers1

3

Install it using below command:

pip install sklearn-crfsuite

If its in google collab use:

!pip install sklearn-crfsuite

!

Sai Teja
  • 153
  • 1
  • 8