Skip to main content

Library with a collection of useful classes and methods to DRY

Project description

Mango Autoencoder <<<<<<< HEAD ================ ======= ================= >>>>>>> master

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) <<<<<<< HEAD ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ======= ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ >>>>>>> master

  • ``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) <<<<<<< HEAD ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ======= ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ >>>>>>> master

  • ``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.1a2.tar.gz (160.8 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.1a2-py3-none-any.whl (70.7 kB view details)

Uploaded Python 3

File details

Details for the file mango_autoencoder-1.0.1a2.tar.gz.

File metadata

  • Download URL: mango_autoencoder-1.0.1a2.tar.gz
  • Upload date:
  • Size: 160.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.22

File hashes

Hashes for mango_autoencoder-1.0.1a2.tar.gz
Algorithm Hash digest
SHA256 8c03d400ebf3b7cdc0d47404824f0f86d90359b78ea54d49b99a2a164ca3ff12
MD5 1520ae00e058058e5748253b7b4d8751
BLAKE2b-256 63262ae90c83ce6eb8a8445329e0f776793fca2ca76f3f62546c77c17ea5d519

See more details on using hashes here.

File details

Details for the file mango_autoencoder-1.0.1a2-py3-none-any.whl.

File metadata

File hashes

Hashes for mango_autoencoder-1.0.1a2-py3-none-any.whl
Algorithm Hash digest
SHA256 6f45155e07e52bf633ce125c97c9ae904ce8fb90af207d6871d42851c05f91e1
MD5 3b471001765c92217ffae70d71ff7bdb
BLAKE2b-256 91debaaab009ae187daf34db54923013b52dc5dc293ee1ed2f08cbfb8e969fb3

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