Skip to content

Commit

Permalink
Update _booster_classifier.py
Browse files Browse the repository at this point in the history
  • Loading branch information
thierrymoudiki authored Apr 24, 2024
1 parent 6db8015 commit 916cf0c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion mlsauce/booster/_booster_classifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
from sklearn.base import ClassifierMixin

import pyximport; pyximport.install()
from . import _boosterc as boosterc
try:
from . import _boosterc as boosterc
except ImportError:
pass

from ..utils import cluster

Expand Down

0 comments on commit 916cf0c

Please sign in to comment.