Skip to main content

Library with a collection of useful classes and methods to DRY

Project description

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

Using uv:

# Create virtual environment with Python 3.11
uv venv --python 3.11
source .venv/bin/activate  # On Windows: .venv\Scripts\activate

uv add mango-autoencoder

Using pip:

pip install 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

Documentation

For detailed documentation, visit the Mango Documentation.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Support

For questions, issues, or contributions, please contact:

Made with ❤️ by baobab soluciones

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-1.0.2a1.tar.gz (103.3 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-1.0.2a1-py3-none-any.whl (70.7 kB view details)

Uploaded Python 3

File details

Details for the file mango_autoencoder-1.0.2a1.tar.gz.

File metadata

  • Download URL: mango_autoencoder-1.0.2a1.tar.gz
  • Upload date:
  • Size: 103.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for mango_autoencoder-1.0.2a1.tar.gz
Algorithm Hash digest
SHA256 eab43f28b39125833d153c723065093913daccf895f69052996fea3132d97cb1
MD5 57b0dc54875c3002e7d5ca8057937cca
BLAKE2b-256 ad986add95811ce4779bc396c9a0a00a036118d3fac57486d9c1e587096fb4dd

See more details on using hashes here.

File details

Details for the file mango_autoencoder-1.0.2a1-py3-none-any.whl.

File metadata

  • Download URL: mango_autoencoder-1.0.2a1-py3-none-any.whl
  • Upload date:
  • Size: 70.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for mango_autoencoder-1.0.2a1-py3-none-any.whl
Algorithm Hash digest
SHA256 e8911e538917658ecf2af65a50c73596ef8a8c00dbcef8c06fcd0225ac25b68b
MD5 54c3658d5046cc98e45c4bb866cff707
BLAKE2b-256 6388c461d7d59312700f3d4e8fe8b1af0201ad72c7649b5b838faf2f139576a4

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