【发布时间】:2020-06-27 18:35:55
【问题描述】:
我想知道在 Isolation Forrest、Elliptic Envelope 和 Local Outlier Factor (LOF) 中,您可以设置污染值。 Support Vector Margin 是否可以这样做?
谢谢
【问题讨论】:
标签: python machine-learning scikit-learn svm anomaly-detection
我想知道在 Isolation Forrest、Elliptic Envelope 和 Local Outlier Factor (LOF) 中,您可以设置污染值。 Support Vector Margin 是否可以这样做?
谢谢
【问题讨论】:
标签: python machine-learning scikit-learn svm anomaly-detection
SCICIT-GROOD文档中定义的污染值:
数据集的污染量,即比例 数据集中的异常值。拟合时使用以定义阈值 样本的分数。
考虑到这个定义,是的,是在SVM中存在这样的机制,或者更精确地在柔软的边缘SVM中。在柔软的边缘SVM中,您有一个参数 c ,它控制模型可以忍受的错误分类量,以找到所需的超平面。
您可以阅读更多以下位置:https://stats.stackexchange.com/a/159051/237773
【讨论】: