Multiverse-core leaderboard

23 estimators on 52 datasets · 7 metrics · ordered by average accuracy rank · built 2026-08-31

#EstimatorAccuracyBalanced accuracyAUROCF1Log loss ↓SensitivitySpecificity
ScoreRankScoreRankScoreRankScoreRankScoreRankScoreRankScoreRank
1HC20.79097.640.75188.280.89905.940.72738.080.53836.080.74598.490.79437.23
2MRHydra0.78378.140.75647.850.810516.240.73167.707.797418.890.76428.040.77578.92
3RDST0.77349.020.73339.540.791216.810.69919.888.166719.140.710910.500.78748.48
4RIST0.77209.600.739710.400.87487.950.714710.150.62188.290.740810.510.765510.52
5DrCIF0.77479.860.742910.260.88138.310.717310.600.64849.150.739711.120.770810.58
6FreshPRINCE0.77439.870.748710.260.87457.880.721110.160.60076.150.741410.600.777010.70
7CIF0.77819.940.747110.170.89088.140.721210.210.64309.130.744111.030.77539.99
8QUANT0.772010.290.746210.240.88317.490.718910.310.61757.330.752110.400.758111.19
9Arsenal0.768010.410.732110.290.845712.770.702410.413.863116.030.725710.520.773210.27
10ROCKET0.769010.580.732610.350.792517.520.701910.838.324919.870.720011.400.776410.73
11LITETime-MV0.750610.920.72999.600.85139.820.68209.701.320611.650.71329.580.763710.88
12STSF0.772411.290.747710.940.88049.710.708011.520.64328.230.734511.820.782611.88
13H-InceptionTime0.740811.390.719010.600.849610.240.683810.291.322712.420.722310.160.737812.14
14LiteTIME0.734112.080.710411.260.839411.330.668011.551.477612.600.711310.390.733611.97
15PatchMTSC0.742812.770.689713.540.826112.450.653313.180.76559.190.685212.850.735212.61
16ConvTran0.746212.890.710213.060.859210.860.676712.610.81909.290.715912.490.734513.23
17Catch220.747512.930.718113.380.869710.590.692213.420.714710.650.724013.270.737413.28
18STC0.754513.630.717213.820.874411.080.694013.660.63919.750.718513.850.753713.56
19TSF0.751513.630.723613.200.874011.420.688313.580.725210.370.709314.210.760613.44
20TDE0.726214.210.681314.380.837412.070.638213.880.886911.150.671413.460.734412.65
21Summary0.685816.120.657415.890.826814.880.623015.890.912312.960.657415.810.684416.29
221NN-DTW0.671217.820.645417.060.719720.450.613617.0711.850621.990.652115.800.663617.88
23Dummy0.364520.950.302921.640.500022.050.150721.321.406715.670.285519.700.381617.59

Average score and average rank over the 52 datasets with results for every estimator on every metric. Best in each column is highlighted. Metrics marked ↓ are better when lower.

Missing results

Scoring uses the 52 datasets every estimator completed, so a dataset any one of them is missing is left out for all. Reasons are from the job logs of these runs.

Reproducing this page

from aeon.datasets.tsc_datasets import multiverse_core
from multiverse.experiments.tables import leaderboard

leaderboard(
    datasets=sorted(multiverse_core),
    estimators=["HC2", "MRHydra", "RDST", "RIST", "DrCIF", "FreshPRINCE", "CIF", "QUANT", "Arsenal", "ROCKET", "LITETime-MV", "STSF", "H-InceptionTime", "LiteTIME", "PatchMTSC", "ConvTran", "Catch22", "STC", "TSF", "TDE", "Summary", "1NN-DTW", "Dummy"],
    metrics=["accuracy", "balacc", "auroc", "f1", "logloss", "sensitivity", "specificity"],
    sort_by="accuracy",
)

Or python -m multiverse.experiments.tables to rebuild it with the defaults.