Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
ceef4f9
adding mitdb to the list of datasets
ABarneche May 28, 2026
25170ae
Merge branch 'main' of https://github.com/benchopt/benchmark_tsfm
ABarneche May 28, 2026
5efd38f
Merge branch 'main' of https://github.com/benchopt/benchmark_tsfm
ABarneche May 28, 2026
2850f8e
[WIP] Adding event detection task (MITDB Arythmia detection)
ABarneche May 28, 2026
3e303ce
Merge branch 'main' of https://github.com/benchopt/benchmark_tsfm
ABarneche May 28, 2026
8cbd8fb
Merge branch 'main' of https://github.com/benchopt/benchmark_tsfm
ABarneche May 28, 2026
4375bf1
Merge branch 'main' of https://github.com/benchopt/benchmark_tsfm
ABarneche May 29, 2026
c617eb4
Merge branch 'main' of https://github.com/benchopt/benchmark_tsfm
ABarneche May 29, 2026
94b3ed5
ENH add Chronos event-detection solver with EventHead adapter
May 29, 2026
0d18cdc
Merge pull request #1 from houtj/feature/chronos-event-detection
houtj May 29, 2026
a10a359
adding unit tests for map_iou and f1 score metric for event detection
ABarneche May 29, 2026
1aeca80
Merge branch 'main' of https://github.com/AnneMaelle/benchmark_tsfm
ABarneche May 29, 2026
4bd940a
ENH rename event_class_f1 to event_iou_f1 with matching/mode options
cw-wan May 29, 2026
705e6f7
adding truncation in dataset
ABarneche May 29, 2026
9f29dea
Merge branch 'main' of https://github.com/benchopt/benchmark_tsfm
ABarneche May 29, 2026
b3dea14
ENH rename event_class_f1 to event_iou_f1 with matching/mode options
cw-wan May 29, 2026
4f181b6
REFACTOR merge event-detection into Chronos solver
May 29, 2026
908d850
Merge branch 'feature/event-iou-f1' of https://github.com/AnneMaelle/…
ABarneche May 29, 2026
30b3f91
ENH make num_queries configurable; pad/truncate event labels
May 29, 2026
17b423b
Merge branch 'AnneMaelle:main' into main
houtj May 29, 2026
44a07b6
Merge branch 'main' of https://github.com/benchopt/benchmark_tsfm
ABarneche May 29, 2026
1686a73
Merge pull request #2 from houtj/main
AnneMaelle May 29, 2026
be07b94
metrics for event detection + adapt chronos fro event detection regre…
ABarneche May 29, 2026
ef59495
Merge branch 'main' of https://github.com/benchopt/benchmark_tsfm
ABarneche May 29, 2026
a3864b6
feat: Hungarian matching loss + MITDB sliding-window windowing
May 29, 2026
8160f55
fix: fall back to ChronosPipeline for Chronos-1/T5 local checkpoints
May 29, 2026
6c235d2
Merge pull request #3 from houtj/main
AnneMaelle May 29, 2026
9c08ebb
adding a batch size for embeddings
ABarneche May 29, 2026
9381b9c
Merge branch 'main' of https://github.com/benchopt/benchmark_tsfm
ABarneche May 29, 2026
7274a88
Merge branch 'main' of https://github.com/benchopt/benchmark_tsfm
ABarneche May 29, 2026
accc095
Merge branch 'main' of https://github.com/benchopt/benchmark_tsfm
ABarneche May 29, 2026
de994c5
Merge branch 'main' of https://github.com/benchopt/benchmark_tsfm
ABarneche May 29, 2026
eb55538
more prints+debug
ABarneche May 29, 2026
435865a
Merge branch 'main' of https://github.com/benchopt/benchmark_tsfm
ABarneche May 29, 2026
f0a10ca
fix moment head
ABarneche May 29, 2026
0570237
Merge branch 'main' of https://github.com/benchopt/benchmark_tsfm
ABarneche May 29, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions benchmark_utils/adapters/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
)
from .linear_probe import LinearProbeAdapter
from .forecast_residual import ForecastResidualAdapter
from .event_detection import EventHead, ChronosEventAdapter

__all__ = [
"BaseTSFMAdapter",
Expand All @@ -20,4 +21,6 @@
"Encoder",
"LinearProbeAdapter",
"ForecastResidualAdapter",
"EventHead",
"ChronosEventAdapter",
]
Loading
Loading