Home>
Since the learning rate of python does not come out, I want to make it visible.
Error messageConvergenceWarning: Maximum number of iteration reached before convergence.Consider increasing max_iter to improve the fit.
ConvergenceWarning)
Applicable source code
from sklearn.linear_model import SGDRegressor
sgd_reg = SGDRegressor (max_iter = 100) .fit (x, y.ravel ())
sgd_reg.intercept_, sgd_reg.coef_
sgd_reg_00001 = SGDRegressor (eta0 = 0.0001, max_iter = 100) .fit (x, y.ravel ())
sgd_reg_00001.intercept_, sgd_reg_00001.coef _
I just imitated a youtube video. However, I thought that the text editor is different, so there might be a cause, but I don't understand. (Video editor for text: Jupyter My text editor: spyder)
Supplemental information (FW/tool version etc.)Please provide more detailed information here.
-
Answer # 1
Related articles
- about making learning prints with python
- python - about deep learning programs using keras
- python - about the optimum angle of rotation matrix
- python - about "" "of" "" select === = "" "
- python, about the fire spread step of forest fire simulation
- python - about hamiltonian neural networks
- python - about write loop to csv
- about python argument and data definition
- python 3x - about downloading anaconda
- about processing to exclude the character string group specified from list in python
- python - about downloading youtube videos by youtube-dl
- python 3x - please teach about the exchange of information with qthead
- python - what i don't understand about yolo9000 (v2)
- about batch change of file name using python
- about the python speedtest code
- about the implementation of combinations in python
- please tell me about the role of python tag = "mychr"
- about python def issues
- python - about x-axis adjustment in matplotlib
- about image output of python
Trends
Jupiter is a special environment, so it will display the result without permission, but it is not so in a normal environment, so please use print etc. explicitly.