Replies: 1 comment
-
@DO891 考虑将代码改成: import abess
from abess import LinearRegression
model = LinearRegression()
## fit 方法中增加一个 `is_normal=True` 的选项
model.fit(x_train,y_train, is_normal=False) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
查询了x_train第三十个特征数据不是全部相同的,虽然删除该特征是可以的。但是我想不删除,有什么办法?
代码如下:
OverflowError: The variable 30 is constant. Please drop this variable or disable the normalization.
Beta Was this translation helpful? Give feedback.
All reactions