I am using PyCaret for comparison of regression models on my data. After blending of the top 3 models, how can I get the final regression equation(model) of the blender? Please help!!
I am using PyCaret for comparison of regression models on my data. After blending of the top 3 models, how can I get the final regression equation(model) of the blender? Please help!!
lets say lr is the classifier and equation you want is mx+b, you can get:
m=lr.Coef_
b=lr.Intercept_