一组用于异常检测的python模块

kenchi的Python项目详细描述


https://img.shields.io/pypi/v/kenchi.svghttps://img.shields.io/pypi/pyversions/kenchi.svghttps://img.shields.io/pypi/l/kenchi.svghttps://img.shields.io/conda/v/Y_oHr_N/kenchi.svghttps://img.shields.io/conda/pn/Y_oHr_N/kenchi.svghttps://img.shields.io/readthedocs/kenchi/stable.svghttps://img.shields.io/travis/HazureChi/kenchi/master.svghttps://img.shields.io/appveyor/ci/Y-oHr-N/kenchi/master.svghttps://img.shields.io/coveralls/github/HazureChi/kenchi/master.svghttps://img.shields.io/codeclimate/maintainability/HazureChi/kenchi.svghttps://mybinder.org/badge.svg

肯尼亚

这是一个scikit学习兼容库,用于异常检测。

依赖性

安装

您可以通过pip

安装
pip install kenchi

conda

conda install -c y_ohr_n kenchi

算法

  • 异常值检测
    1. 快车[8]
    2. lof[2](scikit学习包装)
    3. knn[1][12]
    4. 一次抽样[14]
    5. HBOS [5]
  • 新颖性检测
    1. ocsvm[13](scikit学习包装)
    2. 小批量表示
    3. iforest[10](scikit学习包装)
    4. 主成分分析
    5. gmm(scikit学习包装)
    6. kde [11](scikit学习包装)
    7. 稀疏结构学习

示例

importmatplotlib.pyplotaspltimportnumpyasnpfromkenchi.datasetsimportload_pimafromkenchi.outlier_detectionimport*fromkenchi.pipelineimportmake_pipelinefromsklearn.model_selectionimporttrain_test_splitfromsklearn.preprocessingimportStandardScalernp.random.seed(0)scaler=StandardScaler()detectors=[FastABOD(novelty=True,n_jobs=-1),OCSVM(),MiniBatchKMeans(),LOF(novelty=True,n_jobs=-1),KNN(novelty=True,n_jobs=-1),IForest(n_jobs=-1),PCA(),KDE()]# Load the Pima Indians diabetes dataset.X,y=load_pima(return_X_y=True)X_train,X_test,_,y_test=train_test_split(X,y)# Get the current Axes instanceax=plt.gca()fordetindetectors:# Fit the model according to the given training datapipeline=make_pipeline(scaler,det).fit(X_train)# Plot the Receiver Operating Characteristic (ROC) curvepipeline.plot_roc_curve(X_test,y_test,ax=ax)# Display the figureplt.show()
https://raw.githubusercontent.com/HazureChi/kenchi/master/docs/images/readme.png

参考文献

[1]Angiulli, F., and Pizzuti, C., “Fast outlier detection in high dimensional spaces,” In Proceedings of PKDD, pp. 15-27, 2002.
[2]Breunig, M. M., Kriegel, H.-P., Ng, R. T., and Sander, J., “LOF: identifying density-based local outliers,” In Proceedings of SIGMOD, pp. 93-104, 2000.
[3]Dua, D., and Karra Taniskidou, E., “UCI Machine Learning Repository,” 2017.
[4]Goix, N., “How to evaluate the quality of unsupervised anomaly detection algorithms?” In ICML Anomaly Detection Workshop, 2016.
[5]Goldstein, M., and Dengel, A., “Histogram-based outlier score (HBOS): A fast unsupervised anomaly detection algorithm,” KI: Poster and Demo Track, pp. 59-63, 2012.
[6]Ide, T., Lozano, C., Abe, N., and Liu, Y., “Proximity-based anomaly detection using sparse structure learning,” In Proceedings of SDM, pp. 97-108, 2009.
[7]Kriegel, H.-P., Kroger, P., Schubert, E., and Zimek, A., “Interpreting and unifying outlier scores,” In Proceedings of SDM, pp. 13-24, 2011.
[8]Kriegel, H.-P., Schubert, M., and Zimek, A., “Angle-based outlier detection in high-dimensional data,” In Proceedings of SIGKDD, pp. 444-452, 2008.
[9]Lee, W. S, and Liu, B., “Learning with positive and unlabeled examples using weighted Logistic Regression,” In Proceedings of ICML, pp. 448-455, 2003.
[10]Liu, F. T., Ting, K. M., and Zhou, Z.-H., “Isolation forest,” In Proceedings of ICDM, pp. 413-422, 2008.
[11]Parzen, E., “On estimation of a probability density function and mode,” Ann. Math. Statist., 33(3), pp. 1065-1076, 1962.
[12]Ramaswamy, S., Rastogi, R., and Shim, K., “Efficient algorithms for mining outliers from large data sets,” In Proceedings of SIGMOD, pp. 427-438, 2000.
[13]Scholkopf, B., Platt, J. C., Shawe-Taylor, J. C., Smola, A. J., and Williamson, R. C., “Estimating the Support of a High-Dimensional Distribution,” Neural Computation, 13(7), pp. 1443-1471, 2001.
[14]Sugiyama, M., and Borgwardt, K., “Rapid distance-based outlier detection via sampling,” Advances in NIPS, pp. 467-475, 2013.

欢迎加入QQ群-->: 979659372 Python中文网_新手群

推荐PyPI第三方库


热门话题
java通过两个整数数组对正整数和负整数进行排序   java无参数和默认构造函数混淆   java加载文件MD5的最快方法是什么?   java如何在变量声明中使用带“e”的float   java将项目导入到STS iMac   java在使用图像时旋转图像   java Break语句不起作用   java提供了错误类型Spring的id   java如何为多个变量设置相同的函数属性?   JavaMaven:如何添加编译阶段后生成的资源   java HashMap已损坏/性能问题   java Hibernate SQL中间表b/w父表和子表(不同类型)   java PDFbox找不到字体:/Helv   Java:向自实现的双链接列表添加排序函数   为使用Java BouncyCastle生成的X509Certificate提供密钥使用的安全性   java Hibernate在读写方面的性能   C#相当于Java的DataOutputStream?