Bavalpreet Singh
Bavalpreet Singh

Reputation: 11

ModuleNotFoundError: No module named 'sklearn_crfsuite'

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

Answers (1)

Sai Teja
Sai Teja

Reputation: 193

Install it using below command:

pip install sklearn-crfsuite

If its in google collab use:

!pip install sklearn-crfsuite

!

Upvotes: 4

Related Questions