Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试提取 R 的 ksvm 包的权重。
通常我使用 e1071 包,权重可以通过
weights = t(svmmodel$coefs) %*% svmmodel$SV
但是,当我查看 ksvm 包时,系数和 alpha(支持向量)都是相同维度的列表。alpha 不返回向量。
我的问题是,我应该如何访问包括零值的支持向量?我是否必须使用 SVindex 将变量对应回原始输入?
谢谢。