Skip to main content

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

Recommended installation (with uv):

Install uv first: https://docs.astral.sh/uv/getting-started/

uv pip install ikpykit

If you prefer classic pip:

pip install ikpykit

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


Example

# 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:

@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

Download files

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

Source Distribution

ikpykit-0.3.0.tar.gz (23.1 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ikpykit-0.3.0-py3-none-any.whl (22.7 MB view details)

Uploaded Python 3

File details

Details for the file ikpykit-0.3.0.tar.gz.

File metadata

  • Download URL: ikpykit-0.3.0.tar.gz
  • Upload date:
  • Size: 23.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ikpykit-0.3.0.tar.gz
Algorithm Hash digest
SHA256 3291fb6a22ef073272943c81ec9d8fbd3ee252514c07ec471862064b10e84043
MD5 0f2d0f6ba5306a135315a23d1a935f59
BLAKE2b-256 09e33d60d2828e33a3ab5b928f2b19bb5e3eba88bfc5e671e104c632821f7df3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ikpykit-0.3.0.tar.gz:

Publisher: pypi.yml on IsolationKernel/ikpykit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ikpykit-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: ikpykit-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 22.7 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ikpykit-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 14fd4baf93feb7a996052e03fc9d2754aa80b29535176067134f253f52a64676
MD5 c49906b6b33b3c4e2c5bb763266c9717
BLAKE2b-256 052b477e1630443ea6b1e7ecf27ccf045dd3272893c7b9d51b279964dac329db

See more details on using hashes here.

Provenance

The following attestation bundles were made for ikpykit-0.3.0-py3-none-any.whl:

Publisher: pypi.yml on IsolationKernel/ikpykit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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