Skip to content

Commit

Permalink
Update _ridge.py
Browse files Browse the repository at this point in the history
  • Loading branch information
thierrymoudiki authored Apr 24, 2024
1 parent 97f8fed commit d875514
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions mlsauce/ridge/_ridge.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@
from sklearn.base import RegressorMixin
from numpy.linalg import inv

import pyximport; pyximport.install()
from . import _ridgec as mo
try:
import pyximport; pyximport.install()
from . import _ridgec as mo
except:
pass

from ..utils import get_beta

Expand Down

0 comments on commit d875514

Please sign in to comment.