lssvr icon indicating copy to clipboard operation
lssvr copied to clipboard

How can i get the coef like SVR in your code(LSSVR)

Open xiaohangguo opened this issue 2 years ago • 0 comments

Hello, when I use LSSVR for regression prediction, I will get a multiple regression coefficient equation. How can I get regression coefficients when using your code?

When i use the SVR i get it with the code :svr.coef_

svr = SVR(kernel='linear', coef0=0, C=0.5)
svr.fit(x,y)
svr.coef_

So,how can i get the coef like SVR in your code(LSSVR)? Thank u

xiaohangguo avatar Nov 11 '22 04:11 xiaohangguo