Multi-Dimensional Outlier Detection (MDOD) using vector cosine similarity with added virtual dimension
Project description
MDOD - Multi-Dimensional Outlier Detection
MDOD is a Python library for outlier detection in multi-dimensional data using vector cosine similarity with an added virtual dimension.
-
v3.0.6.2 (High-Performance & Large-Scale) Features: Fully backward compatible. Supports >500k samples without OOM (batch + float32 + incremental). Preserves high AUC by only down-sampling when absolutely necessary. MemoryError auto-fallback (rarely triggered).
-
The code implementation was developed with significant optimization assistance from Grok (xAI).
This software is licensed under the BSD 3-Clause License.
Disclaimer
This library is provided "AS IS", WITHOUT ANY WARRANTY of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose, and noninfringement. In no event shall the authors or copyright holders be liable for any claim, damages, or other liability, whether in an action of contract, tort, or otherwise, arising from, out of, or in connection with the software or the use or other dealings in the software.
Users are strongly advised to thoroughly test and validate the library for their specific use case, especially in production environments or critical applications.
Installation
pip install mdod
Quick Start
from mdod import MDOD
import numpy as np
# Example data (replace with your own dataset)
X = np.random.randn(1000, 10) # 1000 samples, 10 features
model = MDOD(
norm_distance=1.0,
top_n=5,
contamination=0.1,
sampling_rate=0.1, # Use lower values for faster computation on large data
random_state=42
)
model.fit(X)
# Predict outliers
labels = model.predict() # 1 = outlier, 0 = normal
scores = model.decision_function(X) # indicate outlier probability
Parameters
norm_distance: Distance of the virtual dimension (default: 1.0) — affects similarity sensitivity.top_n: Number of top similar points to consider (default: 5).contamination: Expected proportion of outliers (default: 0.1) — used for threshold.sampling_rate: Sampling ratio (0–1, default: 1.0) — lower values speed up computation.random_state: Random seed for reproducibility.
Performance
On standard test datasets, MDOD consistently achieves perfect or near-perfect detection (AUC ≈ 1.0) while being significantly faster than scikit-learn's Local Outlier Factor (LOF). Example Performance (Synthetic Dataset: 1000 samples, 2D, 150 outliers, sampling_rate=0.05)
- MDOD AUC: 1.0
- MDOD Runtime: ~0.009 seconds (significantly faster than LOF)
- Spearman correlation with LOF scores: 0.9192
Examples
More detailed examples and test scripts are included in the examples/ directory of the installed package.
License
See the full BSD 3-Clause License in the LICENSE file.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mdod-3.0.6.2.tar.gz.
File metadata
- Download URL: mdod-3.0.6.2.tar.gz
- Upload date:
- Size: 29.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8721b062ed8bba0117ecf50701e46abe0f4b0011178dc51fb33ef63f3603f018
|
|
| MD5 |
7a4c158df20977b6c6ba3fb454b37d15
|
|
| BLAKE2b-256 |
ef0bf09f04c597524ef0bfb8d19f211f0a5cd057597f998ca92c7dd1246ce235
|
File details
Details for the file mdod-3.0.6.2-py3-none-any.whl.
File metadata
- Download URL: mdod-3.0.6.2-py3-none-any.whl
- Upload date:
- Size: 6.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80e7fad96291603c6e1194ea87e313944974d955575f08cb854e57038d659eac
|
|
| MD5 |
135622b719cdd6e27577888dc9711408
|
|
| BLAKE2b-256 |
f0a32708d04f0c99fa1f28112ff5ad423ef41e986cced8838717be949f995858
|