Skip to content
Snippets Groups Projects
pyproject.toml 711 B
[tool.poetry]
name = "paradise"
version = "0.1.0"
description = "PARtition-based Anomaly Detection for multivariate tIme SEries"
authors = ["Pierre LOTTE <pierre.lotte@irit.fr>"]
readme = "README.md"
package-mode = false

[tool.poetry.dependencies]
python = "^3.8"
torch = {version = "^2.4.1+cu118", source = "torch-cu118"}
numpy = "1.24.4"
matplotlib = "3.7.5"
pandas = "2.0.3"
scikit-learn = "1.3.2"
tqdm = "^4.66.5"
dcor = "0.6"
xicorrelation = "0.3.0"
seaborn = "0.13.2"
bayesian-optimization = "1.4.3"


[[tool.poetry.source]]
name = "torch-cu118"
url = "https://download.pytorch.org/whl/cu118"
priority = "supplemental"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"