Coverage for tdaad / __init__.py: 100%
2 statements
« prev ^ index » next coverage.py v7.13.3, created at 2026-02-03 16:54 +0000
« prev ^ index » next coverage.py v7.13.3, created at 2026-02-03 16:54 +0000
1"""
2Topological Data Analysis module for Anomaly Detection in Time Series
3=====================================================================
5tdaad is a Python module integrating TDA tools from gudhi into
6learning algorithms designed to detect anomalies in Multiple/Multivariate Time Series.
8"""
10__version__ = "1.6.0"
12__all__ = [
13 "anomaly_detectors",
14 "topological_embedding",
15]