Skip to main content

Library with a collection of useful classes and methods to DRY

Project description

Mango Autoencoder

A Python library for anomaly detection in time series using neural autoencoders.

Description

Mango Autoencoder is a specialized tool for time series analysis that uses neural autoencoder networks to detect anomalies and reconstruct data. It is designed to be highly configurable and easy to use, with advanced data processing capabilities.

Key features

  • Flexible Neural Architectures: Supports LSTM, GRU, and RNN
  • Anomaly Detection: Automatic identification of anomalous patterns in time series
  • Data Reconstruction: Ability to reconstruct missing or corrupted data
  • Advanced Processing: Normalization, imputation, and handling of missing values
  • Integrated Visualization: Plotting tools for result analysis
  • Bidirectional Configuration: Support for bidirectional encoders and decoders
  • Mask Handling: Intelligent data processing with custom masks
  • New Data Reconstruction: Reconstruct unknown data with iterative improvement

Installation

uv add mango-autoencoder

Dependencies

  • Python >= 3.10
  • TensorFlow >= 2.18.0
  • Pandas >= 2.0.3
  • Polars >= 1.31.0
  • Scikit-learn >= 1.6.1
  • Plotly >= 6.2.0

Basic usage

from mango_autoencoder import AutoEncoder
import numpy as np

# Create autoencoder instance
autoencoder = AutoEncoder()

# Configure and train the model
autoencoder.build_and_train(
    context_window=10,
    data=time_series_data,
    time_step_to_check=[0, 1, 2],
    feature_to_check=[0, 1],
    hidden_dim=64,
    form="lstm",
    epochs=100
)

# Reconstruct data
reconstruction = autoencoder.reconstruct()

Advanced usage: Reconstructing New Data

The reconstruct_new_data method allows you to reconstruct unknown data using a trained model. This is particularly useful for:

  • Missing Data Imputation: Fill in missing values in time series
  • Data Quality Improvement: Correct corrupted or noisy data
  • Iterative Refinement: Improve reconstruction quality through multiple iterations

Example Usage

from pathlib import Path
from mango_autoencoder import AutoEncoder

# Load a trained model
model = AutoEncoder.load_from_pickle("path/to/model.pkl")

# Set up output directory
reconstruct_output_dir = Path("autoencoder_output/reconstruction")
reconstruct_output_dir.mkdir(parents=True, exist_ok=True)

# Perform reconstruction on new data
reconstructed_results = model.reconstruct_new_data(
    id_columns="source_file",
    data=data, 
    iterations=3, 
    save_path=str(reconstruct_output_dir),
    reconstruction_diagnostic=True
)

Parameters

  • data: Input data (numpy array, pandas DataFrame, or polars DataFrame)
  • iterations: Number of reconstruction iterations (default: 1)
    • Higher iterations can improve reconstruction quality for data with many missing values
    • Each iteration uses the previous reconstruction to improve the next one
  • id_columns: Column(s) that define IDs to process reconstruction separately
    • Useful when data contains multiple time series (e.g., different sensors, locations)
    • Can be a string, integer, or list of strings/integers
  • save_path: Path to save reconstruction results and diagnostics
  • reconstruction_diagnostic: If True, generates error analysis and visualization files

How It Works

  1. Data Validation: Checks that the new data has the same features as the training data
  2. ID Processing: Separates data by ID columns if specified
  3. Iterative Reconstruction:
    • For each iteration, the model reconstructs the data
    • Missing values (NaN) are filled with reconstructed values
    • The process repeats to improve reconstruction quality
  4. Result Generation: Returns reconstructed data and optionally saves diagnostic files

Output Files

Training Phase

When you train a model with build_and_train(), the following files are created in the specified save_path:

Model Files

  • models/model.pkl: Main model file containing the trained Keras model and training parameters
  • models/{epoch}.pkl: Checkpoint files saved every checkpoint epochs (e.g., 10.pkl, 20.pkl)

Visualization Files

  • loss_history.html: Interactive plot showing training and validation loss over epochs

Reconstruction Files (if reconstruction_diagnostic=True)

  • actual_vs_reconstructed.html: Interactive plot comparing original vs reconstructed data
  • reconstruction_error.csv: Detailed reconstruction error data
  • reconstruction_error_summary.csv: Summary statistics of reconstruction errors
  • reconstruction_error_boxplot.html: Box plot visualization of reconstruction errors by feature and data split

Reconstruction Phase (reconstruct_new_data)

When using reconstruct_new_data(), the following files are created in the specified save_path:

Reconstruction Results

  • reconstruct_new_data/{id}_reconstruction_results.csv: Reconstructed data for each ID (or "global" if no IDs)

Diagnostic Files (if reconstruction_diagnostic=True)

  • reconstruct_new_data/{id}_reconstruction_error.csv: Reconstruction error data for each ID
  • reconstruct_new_data/{id}_reconstruction_error_summary.csv: Summary statistics for each ID
  • reconstruct_new_data/{id}_reconstruction_error_boxplot.html: Box plot of reconstruction errors for each ID

File Structure Example

autoencoder_output/
├── models/
│   ├── model.pkl
│   ├── 10.pkl
│   ├── 20.pkl
│   └── ...
├── loss_history.html
├── actual_vs_reconstructed.html
├── reconstruction_error.csv
├── reconstruction_error_summary.csv
├── reconstruction_error_boxplot.html
└── reconstruct_new_data/
    ├── global_reconstruction_results.csv
    ├── global_reconstruction_error.csv
    ├── global_reconstruction_error_summary.csv
    └── global_reconstruction_error_boxplot.html

Project structure

mango_autoencoder/
├── mango_autoencoder/
│   ├── autoencoder.py          # Main autoencoder class
│   ├── modules/
│   │   ├── encoder.py          # Encoding module
│   │   ├── decoder.py          # Decoding module
│   │   └── anomaly_detector.py # Anomaly detector
│   ├── utils/
│   │   ├── processing.py       # Processing utilities
│   │   ├── plots.py           # Visualization tools
│   │   └── sequences.py       # Sequence processing
│   ├── tests/                  # Unit tests
│   │   └── test_autoencoder.py # Autoencoder tests
│   └── logging/                # Logging utilities
├── pyproject.toml             # Project configuration
└── uv.lock                    # Dependency lock file

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

mango_autoencoder-0.1.0a3.tar.gz (153.0 kB view details)

Uploaded Source

Built Distribution

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

mango_autoencoder-0.1.0a3-py3-none-any.whl (63.0 kB view details)

Uploaded Python 3

File details

Details for the file mango_autoencoder-0.1.0a3.tar.gz.

File metadata

  • Download URL: mango_autoencoder-0.1.0a3.tar.gz
  • Upload date:
  • Size: 153.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.15

File hashes

Hashes for mango_autoencoder-0.1.0a3.tar.gz
Algorithm Hash digest
SHA256 65e0aed1bdcdf84a49cfef461b20e009f58d4bbaae151f296aeb5e2123e2f9ab
MD5 c78b4a77c6ff9a0c629a5cf13a8e6eae
BLAKE2b-256 178d4b05e02c89022746131fa495b982fbff6d01587383fd468efc3c0e094faa

See more details on using hashes here.

File details

Details for the file mango_autoencoder-0.1.0a3-py3-none-any.whl.

File metadata

File hashes

Hashes for mango_autoencoder-0.1.0a3-py3-none-any.whl
Algorithm Hash digest
SHA256 81b3b634afd116c4b6e804475db7faf5cd4452f6ed758af69ba9b445b180641c
MD5 a7c297f0ca2421118fbf05d989080832
BLAKE2b-256 e7032b7d1f5a410ed680b7bf5ae67e4bedce8f348686f9435ec4e7e08644fb77

See more details on using hashes here.

Supported by

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