Skip to content

Commit

Permalink
feat: add GaussianCovCost to init
Browse files Browse the repository at this point in the history
  • Loading branch information
Tveten committed Nov 23, 2024
1 parent 9e332d6 commit 0dd0551
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions skchange/costs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
"""Cost functions for cost-based change and anomaly detection."""

from skchange.costs.base import BaseCost
from skchange.costs.gaussian_cov_cost import GaussianCovCost
from skchange.costs.l2_cost import L2Cost

BASE_COSTS = [
BaseCost,
]
COSTS = [
GaussianCovCost,
L2Cost,
]

Expand Down

0 comments on commit 0dd0551

Please sign in to comment.