Open
Description
Describe the bug
The n_iter_ that is saved seems to be constant 10000
To Reproduce
import numpy as np
from sklearnex import patch_sklearn
patch_sklearn()
from sklearn.svm import SVR
svr = SVR()
X = np.random.randn(100, 5)
y = np.mean(X, axis=1)
svr.fit(X, y)
print('svr.n_iter_: ', svr.n_iter_)
Expected behavior
Describe what your are expecting from steps above
Output/Screenshots
import numpy as np
from sklearnex import patch_sklearn
patch_sklearn()
from sklearn.svm import SVR
svr = SVR()
X = np.random.randn(100, 5)
y = np.mean(X, axis=1)
svr.fit(X, y)
print(svr.n_iter_)
Environment:
- OS: [Windows 11]
- Compiler: [python 3.8]
- scikit-learn==1.2.2
- Version: [2024.1.0]