Skip to content

A simple, yet powerful approach to detect outliers using supervised methods in unsupervised context.

Notifications You must be signed in to change notification settings

ThomasMeissnerDS/PSOD

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pseudo-supervised outlier detection

A highly performant alternative to purely unsupervised approaches.

PSOD uses supervised methods to identify outliers in unsupervised contexts. It offers higher accuracy for outliers with top scores than other models while keeping comparable performance on the whole dataset.

The usage is simple.

1.) Install the package:

pip install psod

2.) Import the package:

from psod.outlier_detection.psod import PSOD

3.) Instantiate the class:

iso_class = PSOD()

The class has multiple arguments that can be passed. If older labels exist these could be used for hyperparameter tuning.

4.) Recommended: Normalize the data. PSOD offers preprocessing functions. It can downcast all columns to reduce memory footprint massively (up to 75%). It can also scale the data. For convenience both steps can be called together using:

from psod.preprocessing.full_preprocessing import auto_preprocess

scaled = auto_preprocess(treatment_data)

However they can also be called individually on demand.

5.) Fit and predict:

full_res = iso_class.fit_predict(scaled, return_class=True)

6.) Predict on new data:

full_res = iso_class.predict(scaled, return_class=True, use_trained_stats=True)

The param use_trained_stats is a boolean indicating of conversion from outlier scores to outlier class shall make use of mean and std of prediction errors obtained during training shall be used. If False prediction errors of the provided dataset will be treated as new distribution with new mean and std as classification thresholds.

Classes and outlier scores can always be accessed from the class instance via:

iso_class.scores  # getting the outlier scores
iso_class.outlier_classes  # get the classes

Many parameters can be optimized. Detailed descriptions on parameters can be found using:

help(iso_class)

By printing class instance current settings can be observed:

print(iso_class)

The repo contains example notebooks. Please note that example notebooks do not always contain the newest version. The file psod.py is always the most updated one. See the full article

Release History

  • 1.3.0
    • Widen dependencies for all libraries to support higher versions.
  • 1.2.1
    • Make typing import compatible to Python 3.7
  • 1.2.0
    • Added use_trained_stats to predict function
    • Added doc strings to main functions
    • Fixed a bug where PSOD tried to drop categorical data in the absence of categorical data
  • 1.1.0
    • Add correlation based feature selection
  • 1.0.0
    • Some bug fixes
    • Added yeo-johnson to numerical transformation options and changed the parameter name and type
    • Added preprocessing functionality (scaling and memory footprint reduction)
    • Added warnings to flag risky input params
    • Changed default of numerical preprocessing to None (previously logarithmic)
    • Suppressed Pandas Future and CopySettings warnings
    • Enhanced Readme
  • 0.0.4
    • First version with bare capabilities

Meta

Creator: Thomas Meißner – LinkedIn

PSOD GitHub repository

About

A simple, yet powerful approach to detect outliers using supervised methods in unsupervised context.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published