You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have this same issue! Here it is, seems I can't use some regression models:
ModuleNotFoundError Traceback (most recent call last)
in
----> 1 from mklaren.regression.ridge import RidgeLowRank
2
3 for method in "nystrom", "icd":
4 model = RidgeLowRank(method=method, rank=15)
5 model.fit([K], y_tr)
~/anaconda3/envs/tf-gpu-cuda8/lib/python3.7/site-packages/mklaren/regression/init.py in
1 from .spgp import *
----> 2 from .ridge import *
~/anaconda3/envs/tf-gpu-cuda8/lib/python3.7/site-packages/mklaren/regression/ridge.py in
8 from ..mkl.align import Align, AlignLowRank
9 from ..mkl.alignf import Alignf, AlignfLowRank
---> 10 from ..mkl.l2krr import L2KRR, L2KRRlowRank
11 from ..mkl.uniform import UniformAlignment, UniformAlignmentLowRank
12
~/anaconda3/envs/tf-gpu-cuda8/lib/python3.7/site-packages/mklaren/mkl/init.py in
2 from .align_csi import *
3 from .alignf import *
----> 4 from .l2krr import *
5 from .mklaren import *
6 from .uniform import *
~/anaconda3/envs/tf-gpu-cuda8/lib/python3.7/site-packages/mklaren/mkl/l2krr.py in
7
8 """
----> 9 from align import Align
10 from numpy import ones, zeros, eye, array, hstack, sqrt
11 from numpy.linalg import inv, norm
Trying to run
from mklaren.regression.ridge import RidgeLowRank
on python3.8 and gettingImportError: cannot import name 'Align' from 'align'
error.I believe updates are needed to comply with
align
package updates.The text was updated successfully, but these errors were encountered: