aeon

Classify, forecast, and cluster time series data with a Python API.

43|13|Updated Oct 10, 2025
One-click install
npx skills add https://github.com/lifangda/claude-plugins --skill aeon-lifangda
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: aeon
Source: https://github.com/lifangda/claude-plugins/tree/main/cli-tool/skills-library/scientific-computing/machine-learning/aeon
Command: npx skills add https://github.com/lifangda/claude-plugins --skill aeon-lifangda

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Aeon provides a comprehensive suite of time-series machine learning tools for classification, regression, clustering, forecasting, anomaly detection, segmentation, and similarity search on sequential data.

Core Features & Use Cases

  • Diverse algorithms: ROCKET, MiniRocket, InceptionTime, Shapelet-based methods, and more
  • Transformations & features: Catch22, TSFresh, or shapelet-based representations
  • End-to-end workflows: Build pipelines for supervised and unsupervised time-series tasks

Quick Start

Prompt Claude to train a time-series classifier (e.g., RocketClassifier) on your dataset and evaluate on a test split.

Frequently Asked Questions about aeon

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I classify time series data using machine learning?

Time series classification applies ML algorithms to sequential data like sensor readings or ECG signals. Aeon provides specialized classifiers such as ROCKET and InceptionTime that extract features or learn deep representations, enabling you to train and evaluate models on temporal patterns in your data.

What's the best way to extract features from sequential data?

Feature extraction transforms raw time series into representations that capture temporal structure. Aeon includes methods like ROCKET, Catch22, and shapelet-based approaches that automatically generate features, reducing manual engineering and improving downstream classification or forecasting accuracy.

Can I use aeon for forecasting, clustering, and anomaly detection on the same dataset?

Yes. Aeon supports diverse time series tasks—forecasting, clustering, anomaly detection, and segmentation—through modular APIs (aeon.forecasting, aeon.clustering) on standardized data formats, letting you apply multiple analyses to sequential data without reformatting.

Do I need to preprocess time series before using deep learning models like InceptionTime?

Aeon's deep learning architectures like InceptionTime work with standardized data shapes (n_cases, n_channels, n_timepoints) and accept transformed features from Catch22 or TSFresh. Preprocessing depends on your data; Aeon's modular design supports end-to-end pipelines with optional transformations.

What algorithms does aeon provide for similarity search and distance-based analysis?

Aeon includes distance-based methods and similarity search capabilities for time series, enabling you to find nearest neighbors, measure dissimilarity between sequences, and build clustering or retrieval workflows on sequential data like stock prices or wearable sensor streams.

How do I build an end-to-end time series pipeline for classification or regression?

Aeon's Python API supports pipelines that chain transformations (feature extraction), distance metrics, and classifiers or regressors. Use standardized data formats, modular components from aeon.classification and aeon.forecasting, and benchmarking tools to construct and evaluate complete workflows.