Skip to content

Commit

Permalink
version conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
shi-yu-wang authored Jun 12, 2024
1 parent 8922394 commit 47e013c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/anomaly/test_dpad.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
from merlion.transform.resample import Shingle, TemporalResample
from merlion.transform.sequence import TransformSequence
from merlion.utils import TimeSeries
from merlion.post_process.threshold import AdaptiveAggregateAlarms

rootdir = dirname(dirname(dirname(abspath(__file__))))
logger = logging.getLogger(__name__)
Expand Down Expand Up @@ -49,7 +50,8 @@ def __init__(self, *args, **kwargs):
DeepPointAnomalyDetectorConfig(
transform=TransformSequence(
[TemporalResample("15min"), Shingle(size=3, stride=2), DifferenceTransform()]
)
),
threshold = AdaptiveAggregateAlarms(0.1)
)
)

Expand Down

0 comments on commit 47e013c

Please sign in to comment.