13 の変数で予測しようとしているバイナリ タグがあります。
私はR SVMを使用しました(正確にはrattleからKSVMを使用しました)。平面の関数(変数に基づく重み)を取得して、その関数を他のデータシステムで使用したいと考えています。何か案が?
ありがとう!
私もこれでしばらく悩みました!最後に答えが見つかりました。これはkernlab
、2 クラスの場合にパッケージを使用して示します。
library(kernlab)
# set seed to make this reproducible
set.seed(101)
# create a matrix of inputs
x <- rbind(matrix(rnorm(120),,2),matrix(rnorm(120,mean=3),,2)); head(x)
# create an output...something simple and contrived
y <- matrix(c(rep(1,60),rep(-1,60))); head(y); tail(y)
# train svm model
our_svm <- ksvm(x,y,type="C-svc")
# if you want to plot classification results, run plot(our_svm,data=x)
# get the weights of the classifier
(w <- colSums(coef(our_svm)[[1]] * x[unlist(alphaindex(our_svm)),]))
# get the intercept
(b <- b(our_svm))
# our classifier takes the form g(x) = sign(f(x)),
# where f(x) = w*x + b, and input variables x are SCALED AND TRANSPOSED
# scale it
x_sc <- scale(x); head(x_sc)
# get the f(x) (don't forget to transpose x!)
(f_x <- colSums(t(x_sc)*w) + b)
# get the sign, which is the class of the inputs
(g_x <- sign(f_x))
# if we run fitted(our_svm), we'll see it came up with the same results
# as our manual calculations
table(Manual_Calc = g_x, From_Model = fitted(our_svm))
したがって、新しい入力がある場合は、それをスケーリングし、転置してf(x)にプラグインし、次にg(x)にプラグインしてそのクラスを取得します。これら 2 つの関数が SVM 分類子です。