Skip to content

Commit

Permalink
Update _adaopt.py
Browse files Browse the repository at this point in the history
  • Loading branch information
thierrymoudiki authored Apr 24, 2024
1 parent 4865284 commit 6db8015
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions mlsauce/adaopt/_adaopt.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,11 @@
from ..utils import subsample
from ..utils import cluster

import pyximport; pyximport.install(language_level=3)
from . import _adaoptc as adaoptc
import pyximport; pyximport.install(language_level=3)
try:
from . import _adaoptc as adaoptc
except ImportError:
pass


class AdaOpt(BaseEstimator, ClassifierMixin):
Expand Down

0 comments on commit 6db8015

Please sign in to comment.