Multiverse-core leaderboard

25 estimators on 57 datasets · 7 metrics · ordered by average accuracy rank · built 2026-09-24

#EstimatorAccuracyBalanced accuracyAUROCF1Log loss ↓SensitivitySpecificity
ScoreRankScoreRankScoreRankScoreRankScoreRankScoreRankScoreRank
1HC20.79387.400.75438.480.89515.950.73788.110.53165.810.75708.500.79877.11
2MRHydra0.78388.770.75298.610.807417.720.73368.657.790921.540.76099.070.78289.27
3RDST0.77529.180.73969.460.796817.940.71799.648.101221.610.728910.290.78919.00
4RIST0.77429.820.743010.460.86778.320.721310.660.61238.120.746911.110.772410.69
5CIF0.777510.160.746310.310.88438.350.729310.180.64149.110.752111.060.776710.39
6DrCIF0.772210.370.740210.900.87348.770.721611.240.64139.090.743711.710.771811.18
7Arsenal0.770910.800.733610.970.846913.250.714511.003.638217.640.734011.180.779210.65
8QUANT0.765110.920.736210.900.86788.320.717710.980.72637.630.750611.000.755412.10
9ROCKET0.770111.040.734510.810.792718.790.713411.288.286222.410.731511.740.778111.31
10LITETime-MV0.748311.240.726010.210.84939.900.685110.201.339513.120.71299.980.766811.25
11STSF0.769911.410.744710.860.870010.230.714511.540.67428.400.737911.980.782712.22
12H-InceptionTime0.737911.890.713711.150.843410.390.683711.001.366213.670.719210.890.738912.55
13Catch220.753912.900.722413.240.868010.830.702713.460.697210.490.729013.720.750713.47
14ConvTran0.744613.120.711012.880.852010.980.684612.740.907010.110.721912.750.735613.95
15PatchMTSC0.744313.310.695913.750.824712.530.668213.300.79059.530.699612.920.738113.59
16DisjointCNN0.722413.640.697512.900.823911.610.661113.162.134415.180.681412.430.729912.82
17STC0.751813.860.710614.430.863711.740.685314.410.64289.770.710414.540.759913.31
18TSF0.741914.150.713813.650.855812.240.692613.880.991410.750.714114.510.749814.26
19TDE0.727214.940.684315.060.837912.710.660114.490.845011.460.691914.140.730414.04
20TS2Vec0.719215.410.679015.450.799515.320.656215.180.786911.580.690715.280.712515.47
21Summary0.693616.520.661416.040.819415.720.639316.160.950513.390.664816.390.697917.08
22XCM0.669116.800.635917.040.791514.940.585916.222.169916.280.629915.330.676915.62
23TimesURL0.697517.230.656517.210.783318.850.620617.590.996215.950.645617.520.699816.65
24TimesNet0.700117.410.664716.950.820916.040.639917.251.295715.300.680416.470.691917.68
25Dummy0.374822.700.307223.290.500023.560.183622.681.381017.090.324820.490.377419.34

Average score and average rank over the 57 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 57 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.

Notes on listed estimators

Datasets not included

Held out of the collection rather than reported as missing, because no scheduling closes them. Results that do exist for them remain in the repository.

Estimators not listed

Their results remain in the repository under results/multiverse/. Removing an estimator that cannot finish the archive returns the datasets it alone was missing to every other estimator, which is why the scored count above is larger than the number of datasets any single run completed.

Reproducing this page

from multiverse.experiments.tables import leaderboard

leaderboard(
    datasets=[...]  # 57 datasets,
    estimators=["HC2", "MRHydra", "RDST", "RIST", "CIF", "DrCIF", "Arsenal", "QUANT", "ROCKET", "LITETime-MV", "STSF", "H-InceptionTime", "Catch22", "ConvTran", "PatchMTSC", "DisjointCNN", "STC", "TSF", "TDE", "TS2Vec", "Summary", "XCM", "TimesURL", "TimesNet", "Dummy"],
    metrics=["accuracy", "balacc", "auroc", "f1", "logloss", "sensitivity", "specificity"],
    sort_by="accuracy",
)

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