https://github.com/isolationkernel/ikpykit

IKPyKit: Isolation Kernel Python toolKit

https://github.com/isolationkernel/ikpykit

Science Score: 26.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (13.1%) to scientific vocabulary

Keywords

anomaly-detection clustering data-science graph-mining isolation-kernel kernel-methods machine-learning scikit-learn stream-mining time-series
Last synced: 5 months ago · JSON representation

Repository

IKPyKit: Isolation Kernel Python toolKit

Basic Info
Statistics
  • Stars: 7
  • Watchers: 0
  • Forks: 2
  • Open Issues: 0
  • Releases: 0
Topics
anomaly-detection clustering data-science graph-mining isolation-kernel kernel-methods machine-learning scikit-learn stream-mining time-series
Created over 1 year ago · Last pushed 10 months ago
Metadata Files
Readme Contributing License

README.md

Python PyPI codecov Build status Project Status: Active Maintenance Downloads Downloads License

About The Project

IKPyKit (Isolation Kernel Python toolKit) is an intuitive Python library designed for a variety of machine learning tasks including kernel similarity calculation, anomaly detection, clustering, and change detection—all powered by the innovative Isolation Kernel (IK) . Isolation Kernel is a data-dependent kernel that measures similarity by isolating data points using an isolation mechanism. It uniquely adapts to the data distribution, with the property that points in sparse regions are more similar than those in dense regions. Notably, it requires no learning or closed-form expression, making it efficient and scalable.


Why use Isolation Kernel?

  • Data-Dependent Similarity: Unlike traditional kernels (e.g., Gaussian, Laplacian), Isolation Kernel adapts to the structure of the data rather than assuming a fixed similarity function.
  • Handles Sparse and Dense Regions: Isolation Kernel effectively accounts for varying data densities, making it ideal for datasets with non-uniform distributions.
  • No Learning Required: It eliminates the need for training or parameter tuning, simplifying implementation while reducing computational cost.
  • Effective in High Dimensions: It uniquely addresses the curse of dimensionality, being the only known measure capable of finding exact nearest neighbors in high-dimensional spaces.
  • Versatile Applications: Isolation Kernel has been successfully applied to tasks like anomaly detection, clustering, and processing stream data, graph data, trajectory data, and more.

Learn more about its history and development on the IsolationKernel GitHub page.


Why use IKPyKit?

IKPyKit is specifically built to harness the power of Isolation Kernel, providing specialized algorithms for a wide range of data types and tasks. Its seamless integration with the scikit-learn API allows easy adoption and compatibility with scikit-learn tools.

  • Tailored for Isolation Kernel: IKPyKit directly leverages the unique properties of Isolation Kernel for efficient and effective machine learning solutions.
  • Efficient and User-Friendly: Designed for simplicity and performance, IKPyKit offers an intuitive interface built on the scikit-learn API.
  • Support for Diverse Data Types: It supports graph data, group data, stream data, time series, and trajectory data, making it versatile for various domains.
  • Comprehensive Resources: Users benefit from rich documentation and examples to quickly understand and apply the library’s features.
  • Ideal for Research and Industry: IKPyKit is suitable for both academic research and industrial applications, providing scalable and cutting-edge tools for modern machine learning challenges.

Installation & Dependencies

To install the basic version of ikpykit with core dependencies, run the following:

bash pip install ikpykit

For more installation options, including dependencies and additional features, check out our Installation Guide.


Example

```py

Anomaly Detection using inne.

import numpy as np from ikpykit.anomaly import INNE X = np.array([[-1.1, 0.2], [0.3, 0.5], [0.5, 1.1], [100, 90]]) clf = INNE(contamination=0.25).fit(X) clf.predict([[0.1, 0.3], [0, 0.7], [90, 85]]) ```


Implemented Algorithms

Summary

| Algorithms | Kernel Similarity | Anomaly Detection | Clustering | Change Detection | | --------------- | ------------------------------ | -------------------------- | -------------------- | ---------------- | | Point Data | IsoKernel (AAAI'19, SIGKDD'18) | IForest (ICDM'08, TKDD'12) | IDKC (IS'23) | | | | | INNE (CIJ'18) | PSKC (TKDE'23) | | | | | IDKD (TKDE'22) | IKAHC (PRJ'23) | | | Graph Data | IsoGraphKernel (AAAI'21) | IKGOD (SIAM'23) | | | | Group Data | IsodisKernel (SIGKDD'20) | IKGAD (TKDE'22) | | | | Stream Data | | | StreaKHC (SIGKDD'22) | ICID (JAIR'24) | | Time Series | | IKTOD (VLDB'22) | | | | Trajectory Data | | IKAT (JAIR'24) | TIDKC (ICDM'23) | |

(i) Isolation Kernel :

| Abbr | Algorithm | Application | Publication | | ---------------------------------------------------------------------------------------------- | ----------------------------- | --------------------------------------------- | -------------------- | | IsoKernel | Isolation Kernel | IK feature mapping and similarity calculating | AAAI2019, SIGKDD2018 | | IsoDisKernel | Isolation Distribution Kernel | Distribution similarity calculating | SIGKDD2020 |

(ii) Point Anomaly detection :

| Abbr | Algorithm | Application | Publication | | ----------------------------------------------------------------------------- | ------------------------------------------------------------------ | ----------------- | ------------------ | | IForest | Isolation forest | Anomaly Detection | ICDM2008, TKDD2022 | | INNE | Isolation-based anomaly detection using nearest-neighbor ensembles | Anomaly Detection | CIJ2018 | | IDKD | Isolation Distributional Kernel for point anomaly detections | Anomaly Detection | TKDE2022 |

(iii) Point Clustering :

| Abbr | Algorithm | Application | Publication | | ------------------------------------------------------------------------- | ------------------------------------------------------------ | ----------------------- | ----------- | | IDKC | Kernel-based Clustering via Isolation Distributional Kernel. | Point Clustering | IS2023 | | PSKC | Point-set Kernel Clustering | Point Clustering | TKDE2023 | | IKAHC | Isolation Kernel for Agglomerative Hierarchical Clustering | Hierarchical Clustering | PR2023 |

(IV) Graph Data :

| Abbr | Algorithm | Application | Publication | | ----------------------------------------------------------------------------------------- | ---------------------------------------------------------------------- | --------------------------------------------- | ----------- | | IKGOD | Subgraph Centralization: A Necessary Step for Graph Anomaly Detection. | Graph Anomaly Detection | SIAM2023 | | IsoGraphKernel | Isolation Graph Kernel | Graph IK embedding and similarity calculating | AAAI2021 |

(V) Group Data :

| Abbr | Algorithm | Application | Publication | | ----------------------------------------------------------------------- | ------------------------------------------------------------ | ----------------------- | ----------- | | IKGAD | Isolation Distributional Kernel for group anomaly detections | Group Anomaly Detection | TKDE2022 |

(VI) Stream Data :

| Abbr | Algorithm | Application | Publication | | ------------------------------------------------------------------------------ | --------------------------------------------------------------- | ------------------------------ | ----------- | | StreaKHC | Isolation Distribution Kernel for Trajectory Anomaly Detections | Online Hierarchical Clustering | SIGKDD2022 | | ICID | Detecting change intervals with isolation distributional kernel | Change Intervals Detection | JAIR2024 |

(VII) Trajectory Data :

| Abbr | Algorithm | Application | Publication | | ---------------------------------------------------------------------------- | --------------------------------------------------------------- | ---------------------------- | ----------- | | TIDKC | Distribution-based Tajectory Clustering | Trajectory Clustering | ICDM2023 | | IKAT | Isolation Distribution Kernel for Trajectory Anomaly Detections | Trajectory Anomaly Detection | JAIR2024 |

(VIII) Time Series

| Abbr | Algorithm | Application | Publication | | ----------------------------------------------------------------------------- | --------------------------------------------------------------- | ----------------- | ----------- | | IKTOD | Isolation distribution kernel for Time Series Anomaly Detection | Anomaly detection | VLDB2022 |


Features

IKPyKit provides a set of key features designed to make machine learning tasks easy and efficient. For a detailed overview, see the User Guides.


Examples and tutorials

Explore our extensive list of examples and tutorials to get you started with IKPyKit. You can find them here.


How to contribute

Primarily, IKPyKit development consists of adding and creating new algorithms, new validation strategies, or improving the performance of the current code. However, there are many other ways to contribute:

  • Submit a bug report or feature request on GitHub Issues.
  • Contribute a Jupyter notebook to our examples.
  • Write unit or integration tests for our project.
  • Answer questions on our issues, Stack Overflow, and elsewhere.
  • Translate our documentation into another language.
  • Write a blog post, tweet, or share our project with others.

For more information on how to contribute to IKPyKit, see our Contribution Guide.

Visit our authors section to meet all the contributors to IKPyKit.


Citation

If you use IKPyKit for a scientific Publication, we would appreciate citations to the Publication software.

BibTeX:

bibtex @software{IKPyKit, author = {Xin Han, Yixiao Ma, Ye Zhu, and Kaiming Ting}, title = {IKPyKit:A Python Library for Isolation Kernel Toolkit}, version = {0.1.0}, month = {3}, year = {2025}, license = {BSD-3-Clause}, url = {https://github.com/IsolationKernel/ikpykit} }


License

BSD-3-Clause License

Owner

  • Name: IsolationKernel
  • Login: IsolationKernel
  • Kind: organization

GitHub Events

Total
  • Watch event: 3
  • Push event: 13
  • Pull request event: 3
  • Fork event: 1
  • Create event: 3
Last Year
  • Watch event: 3
  • Push event: 13
  • Pull request event: 3
  • Fork event: 1
  • Create event: 3

Issues and Pull Requests

Last synced: 6 months ago

All Time
  • Total issues: 0
  • Total pull requests: 8
  • Average time to close issues: N/A
  • Average time to close pull requests: about 15 hours
  • Total issue authors: 0
  • Total pull request authors: 1
  • Average comments per issue: 0
  • Average comments per pull request: 0.0
  • Merged pull requests: 7
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 8
  • Average time to close issues: N/A
  • Average time to close pull requests: about 15 hours
  • Issue authors: 0
  • Pull request authors: 1
  • Average comments per issue: 0
  • Average comments per pull request: 0.0
  • Merged pull requests: 7
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
  • xhan97 (10)
Top Labels
Issue Labels
Pull Request Labels

Dependencies

.github/workflows/deploy-gh-pages.yml actions
  • actions/checkout v4 composite
  • peaceiris/actions-gh-pages v4.0.0 composite
  • prefix-dev/setup-pixi v0.8.1 composite
.github/workflows/lint.yml actions
  • actions/checkout v4 composite
  • prefix-dev/setup-pixi v0.8.1 composite
.github/workflows/python-app.yml actions
  • actions/checkout v4 composite
  • codecov/codecov-action v4.5.0 composite
  • prefix-dev/setup-pixi v0.8.1 composite
pyproject.toml pypi
  • scikit-learn >=1.4.2