Skip to main content

outlier detection and clustering based on sparse data observers

Project description

Sparse Data Observers (SDO) is an unsupervised learning approach developed to cover the need for fast, highly interpretable and intuitively parameterizable anomaly detection. Its extension, SDOclust, performs clustering while preserving the simplicity and applicability of the original approach.

SDO and SDOclust are powerful options when statistical estimates are representative and feature spaces conform distance-based analysis. Their main characteristics are: lightweight, intuitive, self-adjusted, noise- resistant, able to extract non-convex clusters (SDOclust), and built on robust parameters and interpretable models.

Feasibility and rapid integration into real-world applications are the core goals behind SDO and SDOclust, which can work on most data scenarios without parameter adjustment (simply using the default parameterization).

Installation and dependecies

sdo can be installed from PyPI using

    pip install sdoclust

or directly from our GitHub repository:

    pip install git+https://github.com/CN-TU/pysdoclust

sdo requires de following packages:

  • numpy
  • math
  • scipy
  • sklearn

By default, SDO uses distance.cdist (from the scipy package) for calculating point distances and distance matrices (default method or method="brute"). Instead, you can use approximate neighbor search with:

In such a case you will need to install the respective packages when calling SDO or SDOclust with method="faiss" or method="pynndescent", e.g.:

    import sdoclust as sdo
    mdl = sdo.SDO(method='faiss')

However, note that, rather than the dataset X, the dominant factor in searching is the set of observers O, which is typically within a few hundred to a few thousand data points. This means that the default "brute" method is going to obtain better accuracy with equivalent runtimes to "faiss" or "pynndescent". Therefore, these alternatives are suitable when setting pretty large values of k. For default or low, k use the default approach.

Examples of usage

SDO

    import numpy as np
    np.random.seed(1)

    # Generate data
    from sklearn import datasets
    x, y = datasets.make_circles(n_samples=5000, factor=0.3, noise=0.1)

    # SDO outlier scoring
    import sdoclust as sdo
    s = sdo.SDO().fit_predict(x)

    # plotting results
    import matplotlib.pyplot as plt
    fig = plt.figure()
    plt.scatter(x[:,0],x[:,1], s=10, cmap='coolwarm', c=s)
    plt.colorbar(ticks=[np.min(s), np.max(s)])
    plt.title('SDO outlierness scores')
    plt.show()

SDOclust

    import numpy as np
    np.random.seed(1)

    # Generate data
    from sklearn import datasets
    x, y = datasets.make_circles(n_samples=5000, factor=0.3, noise=0.1)

    # SDOclust clustering
    import sdoclust as sdo
    p = sdo.SDOclust().fit_predict(x)

    # plotting results
    import matplotlib.pyplot as plt
    fig = plt.figure()
    plt.scatter(x[:,0],x[:,1], s=10, cmap='coolwarm', c=p)
    plt.title('SDOclust clustering')
    plt.show()

Application notes

SDO and SDOclust obtain good performances without modifying the default parameterization in most applications, but may require adjustment in some cases: typically, when datasets have very few elements, when clusters are overlapping or in cases with many under-represented clusters.

Main SDO parameters are:

  • x, which establishes the number of closest observers to evaluate each data point.

  • qv, which sets a robust threshold for removing idle observers.

  • k, which fixes de number of observers in the model

      mdl = sdo.SDO(x=5, qv=0.3, k=500)
    

Additionally, SDOclust also incorporates:

  • zeta, which sets a trade-off between locality and globality for cutting-off graph edges thresholds.

  • chi, which defines the chi-closest observer of any given observer to decide cutting-off graph edges thresholds.

  • e sets the minimum number of observers that a cluster can have.

      mdl = sdo.SDOclust(zeta=0.6, chi=10, e=3)
    

[1] and [2] provide further explanations on SDO and SDOclust parameters. SDOclust with default parameters tend to find fundamental partitions, i.e. a low number of clusters. If your scenario contains many clusters, or you detect underclustering, try, for example, by increasing k and/or reducing chi.

Citation

If you use SDO or SDOclust in your research, please cite our publications:

SDO

[2] Iglesias, F., Zseby, T., Zimek, A., "Outlier Detection Based on Low Density Models," 2018 IEEE International Conference on Data Mining Workshops (ICDMW), Singapore, 2018, pp. 970-979, doi: 10.1109/ICDMW.2018.00140.,

    @INPROCEEDINGS{SDO2018,
        author    = {F{\'e}lix Iglesias and Tanja Zseby and Alexander Hartl and Arthur Zimek},
        booktitle={2018 IEEE International Conference on Data Mining Workshops (ICDMW)}, 
        title={Outlier Detection Based on Low Density Models}, 
        year={2018},
        volume={},
        number={},
        pages={970-979},
        doi={10.1109/ICDMW.2018.00140}}	
    }

SDOclust

[1] Iglesias, F., Zseby, T., Hartl, A., Zimek, A. (2023). SDOclust: Clustering with Sparse Data Observers. In: Pedreira, O., Estivill-Castro, V. (eds) Similarity Search and Applications. SISAP 2023. Lecture Notes in Computer Science, vol 14289. Springer, Cham. https://doi.org/10.1007/978-3-031-46994-7_16

    @InProceedings{SDOclust2023,
        title     = {SDOclust: Clustering with Sparse Data Observers},
        author    = {F{\'e}lix Iglesias and Tanja Zseby and Arthur Zimek},
        editor    = {{\'O}scar Pedreira and Vladimir Estivill-Castro",
        booktitle = {Similarity Search and Applications},
        year      = {2023},
        publisher = {Springer Nature Switzerland},
        address   = {Cham},
        pages     = {185--199},
        doi       = {https://doi.org/10.1007/978-3-031-46994-7\_16}
    }

Others

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sdoclust-0.5.1.tar.gz (272.4 kB view details)

Uploaded Source

Built Distribution

sdoclust-0.5.1-py3-none-any.whl (9.4 kB view details)

Uploaded Python 3

File details

Details for the file sdoclust-0.5.1.tar.gz.

File metadata

  • Download URL: sdoclust-0.5.1.tar.gz
  • Upload date:
  • Size: 272.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.6

File hashes

Hashes for sdoclust-0.5.1.tar.gz
Algorithm Hash digest
SHA256 9b06df5f5e6ec676a9e9da469817d2108ce70b75b12436bf6a1cd0267f2c172b
MD5 04fbb30f3a9471983aa8f29ca8cfeaf0
BLAKE2b-256 c498f6d2e49a7a70e0394305a50605edccd460381a0111a37022e78c7e85e0d0

See more details on using hashes here.

File details

Details for the file sdoclust-0.5.1-py3-none-any.whl.

File metadata

  • Download URL: sdoclust-0.5.1-py3-none-any.whl
  • Upload date:
  • Size: 9.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.6

File hashes

Hashes for sdoclust-0.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 f64e6a63865c9bc056fd3d8bf1fb1fdeca8d14154b24dc9aaeb46f979995d516
MD5 4cbb2a38ed1200fb5370536ead13737a
BLAKE2b-256 4e7d1c86c1e9e1070bca2b13884308f2373f60f9cc606fc0e960196872123959

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page