Skip to content

Commit

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

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

from ..utils import get_beta

Expand Down

0 comments on commit 97f8fed

Please sign in to comment.