diff --git a/.gitattributes b/.gitattributes
index a6344aac8c09253b3b630fb776ae94478aa0275b..e2fdd3c78bfef7d609c3b755310e6439737447f2 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -25,7 +25,6 @@
*.safetensors filter=lfs diff=lfs merge=lfs -text
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
*.tar.* filter=lfs diff=lfs merge=lfs -text
-*.tar filter=lfs diff=lfs merge=lfs -text
*.tflite filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.wasm filter=lfs diff=lfs merge=lfs -text
@@ -33,3 +32,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text
*tfevents* filter=lfs diff=lfs merge=lfs -text
+scale-hf-logo.png filter=lfs diff=lfs merge=lfs -text
diff --git a/.gitignore b/.gitignore
index ed8ebf583f771da9150c35db3955987b7d757904..46141db48eda31c2c991a0b4e2f0ffdbc38b6283 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,13 @@
-__pycache__
\ No newline at end of file
+auto_evals/
+venv/
+__pycache__/
+.env
+.ipynb_checkpoints
+*ipynb
+.vscode/
+
+eval-queue/
+eval-results/
+eval-queue-bk/
+eval-results-bk/
+logs/
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..0710dad252bda2ac9fd5b7e4e2e4dc0afeff43cf
--- /dev/null
+++ b/.pre-commit-config.yaml
@@ -0,0 +1,53 @@
+# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+default_language_version:
+ python: python3
+
+ci:
+ autofix_prs: true
+ autoupdate_commit_msg: '[pre-commit.ci] pre-commit suggestions'
+ autoupdate_schedule: quarterly
+
+repos:
+ - repo: https://github.com/pre-commit/pre-commit-hooks
+ rev: v4.3.0
+ hooks:
+ - id: check-yaml
+ - id: check-case-conflict
+ - id: detect-private-key
+ - id: check-added-large-files
+ args: ['--maxkb=1000']
+ - id: requirements-txt-fixer
+ - id: end-of-file-fixer
+ - id: trailing-whitespace
+
+ - repo: https://github.com/PyCQA/isort
+ rev: 5.12.0
+ hooks:
+ - id: isort
+ name: Format imports
+
+ - repo: https://github.com/psf/black
+ rev: 22.12.0
+ hooks:
+ - id: black
+ name: Format code
+ additional_dependencies: ['click==8.0.2']
+
+ - repo: https://github.com/charliermarsh/ruff-pre-commit
+ # Ruff version.
+ rev: 'v0.0.267'
+ hooks:
+ - id: ruff
diff --git a/.streamlit/config.toml b/.streamlit/config.toml
deleted file mode 100644
index b37a14412b6e498210c9d7a0228c5269a72c804f..0000000000000000000000000000000000000000
--- a/.streamlit/config.toml
+++ /dev/null
@@ -1,2 +0,0 @@
-[theme]
-base = "light"
\ No newline at end of file
diff --git a/CLAUDE.md b/CLAUDE.md
deleted file mode 100644
index 6c426ef8fee9e5768ca9395c8e81cd230ebec869..0000000000000000000000000000000000000000
--- a/CLAUDE.md
+++ /dev/null
@@ -1,82 +0,0 @@
-# CLAUDE.md
-
-This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
-
-## Project Overview
-
-fev-bench Leaderboard is a Streamlit web application displaying time series forecasting model evaluation results from the fev-bench benchmark. It evaluates 30+ forecasting models using multiple metrics (SQL, MASE, WQL, WAPE) across 100 benchmark tasks.
-
-## Common Commands
-
-```bash
-# Run the Streamlit app locally
-uv run streamlit run fev-leaderboard-app.py --server.port=8501 --server.address=0.0.0.0
-
-# Regenerate leaderboard tables from autogluon/fev repo (defaults to main branch)
-uv run python save_tables.py [commit] # e.g., uv run python save_tables.py abc123
-
-# Docker build and run
-docker build -t fev-leaderboard .
-docker run -p 8501:8501 fev-leaderboard
-```
-
-Note: Use `uv run` prefix for all Python commands in this project.
-
-No test or lint frameworks are configured.
-
-## Architecture
-
-```
-fev-leaderboard-app.py # Main entry point (Streamlit multi-page router)
-save_tables.py # Generates pre-computed CSV tables from raw summaries
-pages/
-├── fev_bench.py # Main leaderboard (100 tasks, loads from tables/)
-├── chronos_bench_ii.py # Alternative leaderboard (27 tasks, fetches from GitHub)
-└── about.py # Help page with links
-src/
-├── utils.py # Visualization, formatting, MODEL_CONFIG, color palette
-├── strings.py # UI text, metric descriptions, paper citations
-└── task_groups.py # Task groupings by frequency and domain
-tables/ # Pre-generated CSVs
-├── pivot_*.csv # Full pivot tables (filtered in app by task group)
-├── summaries.csv # Raw evaluation summaries
-└── {group}/ # Subdirectories for each task group (full, mini, frequency_*, domain_*)
- ├── leaderboard_*.csv # Leaderboard tables per metric
- └── pairwise_*.csv # Pairwise comparison tables per metric
-```
-
-**Data flow**: GitHub (autogluon/fev) → `save_tables.py` → pre-computed tables → `fev_bench.py` visualization
-
-## Key Modules
-
-**`src/utils.py`**: Core module containing:
-- `MODEL_CONFIG`: Dict mapping model names to (huggingface_url, organization, is_zero_shot, model_type)
-- `ALL_METRICS`: Dict with SQL, MASE, WQL, WAPE definitions
-- `format_leaderboard()`, `construct_bar_chart()`, `construct_pairwise_chart()`, `construct_pivot_table()`: Styling functions
-- `COLORS`: Custom palette (purple, gold, silver, bronze)
-
-**`src/strings.py`**: Documentation strings for metric formulas, win rate/skill score calculations, imputation strategies
-
-## Metrics
-
-| Metric | Type | Description |
-|--------|------|-------------|
-| SQL | Probabilistic | Scaled Quantile Loss (scale-invariant) |
-| MASE | Point | Mean Absolute Scaled Error (scale-invariant) |
-| WQL | Probabilistic | Weighted Quantile Loss (scale-dependent) |
-| WAPE | Point | Weighted Absolute Percentage Error (scale-dependent) |
-
-## Model Types
-
-Models are categorized as DL (deep learning) or ST (statistical) in `MODEL_CONFIG`. This affects color-coding in visualizations (blue vs. orange).
-
-## Imputation Strategy
-
-- **Failed tasks**: Replaced with Seasonal Naive scores
-- **Leaky tasks** (training corpus overlap for zero-shot models): Replaced with Chronos-Bolt scores
-
-## External References
-
-- fev-bench paper: https://arxiv.org/abs/2509.26468
-- fev library docs: https://autogluon.github.io/fev/latest/
-- GitHub: https://github.com/autogluon/fev
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index 719396ef137d19fbef8a8563157a42d3f1ed9812..0000000000000000000000000000000000000000
--- a/Dockerfile
+++ /dev/null
@@ -1,21 +0,0 @@
-FROM python:3.13.5-slim
-
-RUN useradd -m -u 1000 user
-WORKDIR /app
-
-RUN apt-get update && apt-get install -y \
- build-essential \
- curl \
- git \
- && rm -rf /var/lib/apt/lists/*
-
-COPY --chown=user ./requirements.txt requirements.txt
-COPY --chown=user . /app
-
-RUN pip3 install -r requirements.txt
-
-EXPOSE 8501
-
-HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
-
-ENTRYPOINT ["streamlit", "run", "fev-leaderboard-app.py", "--server.port=8501", "--server.address=0.0.0.0"]
\ No newline at end of file
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..b5685772804c8af4235a8504dc6752bfc9ae5d1d
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,13 @@
+.PHONY: style format
+
+
+style:
+ python -m black --line-length 119 .
+ python -m isort .
+ ruff check --fix .
+
+
+quality:
+ python -m black --check --line-length 119 .
+ python -m isort --check-only .
+ ruff check .
diff --git a/README.md b/README.md
index 85e819d3f9cf9db50c15ff2605d0279cfa484f89..0319a7200e0f3e16326e23dfe8e7234e773c4941 100644
--- a/README.md
+++ b/README.md
@@ -1,20 +1,44 @@
---
-title: fev-bench
-emoji: 🏆
+title: Fev Leaderboard
+emoji: 🥇
colorFrom: green
colorTo: indigo
-sdk: docker
-app_port: 8501
-tags:
-- streamlit
-pinned: false
-short_description: Forecast evaluation benchmark
+sdk: gradio
+app_file: app.py
+pinned: true
license: apache-2.0
---
-# Welcome to Streamlit!
+# Start the configuration
-Edit `/src/streamlit_app.py` to customize this app to your heart's desire. :heart:
+Most of the variables to change for a default leaderboard are in `src/env.py` (replace the path for your leaderboard) and `src/about.py` (for tasks).
-If you have any questions, checkout our [documentation](https://docs.streamlit.io) and [community
-forums](https://discuss.streamlit.io).
+Results files should have the following format and be stored as json files:
+```json
+{
+ "config": {
+ "model_dtype": "torch.float16", # or torch.bfloat16 or 8bit or 4bit
+ "model_name": "path of the model on the hub: org/model",
+ "model_sha": "revision on the hub",
+ },
+ "results": {
+ "task_name": {
+ "metric_name": score,
+ },
+ "task_name2": {
+ "metric_name": score,
+ }
+ }
+}
+```
+
+Request files are created automatically by this tool.
+
+If you encounter problem on the space, don't hesitate to restart it to remove the create eval-queue, eval-queue-bk, eval-results and eval-results-bk created folder.
+
+# Code logic for more complex edits
+
+You'll find
+- the main table' columns names and properties in `src/display/utils.py`
+- the logic to read all results and request files, then convert them in dataframe lines, in `src/leaderboard/read_evals.py`, and `src/populate.py`
+- the logic to allow or filter submissions in `src/submission/submit.py` and `src/submission/check_validity.py`
\ No newline at end of file
diff --git a/app.py b/app.py
new file mode 100644
index 0000000000000000000000000000000000000000..a25784c6937211c345063e3a6718ea46ba7705e5
--- /dev/null
+++ b/app.py
@@ -0,0 +1,97 @@
+import fev
+import gradio as gr
+import pandas as pd
+
+from src import about
+from src.custom_html_js import custom_css
+from src.formatting import make_clickable_model
+
+# Load the CSV data into a pandas DataFrame
+df = pd.read_csv(
+ "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/seasonal_naive.csv"
+)
+
+
+summary_urls = [
+ "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/auto_arima.csv",
+ "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/auto_ets.csv",
+ "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/auto_theta.csv",
+ "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/chronos_base.csv",
+ "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/chronos_large.csv",
+ "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/chronos_mini.csv",
+ "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/chronos_small.csv",
+ "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/chronos_tiny.csv",
+ "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/chronos_bolt_base.csv",
+ "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/chronos_bolt_mini.csv",
+ "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/chronos_bolt_small.csv",
+ "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/chronos_bolt_tiny.csv",
+ "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/moirai_base.csv",
+ "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/moirai_large.csv",
+ "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/moirai_small.csv",
+ "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/seasonal_naive.csv",
+ "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/timesfm.csv",
+ "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/timesfm-2.0.csv",
+ "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/ttm-r2.csv",
+ "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/tirex.csv",
+]
+
+rename_cols = {
+ "gmean_relative_error": "Average relative error",
+ "avg_rank": "Average rank",
+ "median_inference_time_s": "Median inference time (s)",
+ "training_corpus_overlap": "Training corpus overlap (%)",
+}
+selected_cols = list(rename_cols.keys())
+
+
+def highlight_zeroshot(styler):
+ """Highlight training overlap for zero-shot models with bold green."""
+
+ def style_func(val):
+ if val == 0:
+ return "color: green; font-weight: bold"
+ else:
+ return "color: black"
+
+ return styler.map(style_func, subset=["Training corpus overlap (%)"])
+
+
+leaderboards = {}
+for metric in ["WQL", "MASE"]:
+ lb = fev.leaderboard(summary_urls, metric_column=metric)[selected_cols].rename(columns=rename_cols)
+ lb = lb.astype("float64").round(3).reset_index()
+ lb["Training corpus overlap (%)"] = (lb["Training corpus overlap (%)"] * 100).round(1)
+ lb["model_name"] = lb["model_name"].apply(make_clickable_model)
+ leaderboards[metric] = highlight_zeroshot(lb.style).format(precision=3)
+
+
+with gr.Blocks(css=custom_css) as demo:
+ gr.HTML(about.TITLE)
+ gr.Markdown(about.INTRODUCTION_TEXT, elem_classes="markdown-text")
+
+ with gr.Tabs(elem_classes="tab-buttons"):
+ with gr.Tab("🏅 Chronos Benchmark II", id=0):
+ with gr.Column():
+ gr.Markdown(about.CHRONOS_BENCHMARK, elem_classes="markdown-text")
+ with gr.Tabs():
+ with gr.Tab("📊 Probabilistic forecast (WQL)"):
+ gr.Markdown("""Forecast accuracy measured by Weighted Quantile Loss.""")
+ gr.Dataframe(
+ value=leaderboards["WQL"],
+ datatype=["markdown", "number", "number", "number"],
+ interactive=False,
+ )
+
+ with gr.Tab("📈 Point forecast (MASE)"):
+ gr.Markdown("""Forecast accuracy measured by Mean Absolute Scaled Error.""")
+ gr.Dataframe(
+ value=leaderboards["MASE"],
+ datatype=["markdown", "number", "number", "number"],
+ interactive=False,
+ )
+
+ with gr.Tab("📝 About", id=1):
+ gr.Markdown(about.ABOUT_LEADERBOARD)
+
+if __name__ == "__main__":
+ demo.launch(ssr_mode=False)
diff --git a/fev-leaderboard-app.py b/fev-leaderboard-app.py
deleted file mode 100644
index 5254daa3546fcd4274035c5b7dd89ba69642d72a..0000000000000000000000000000000000000000
--- a/fev-leaderboard-app.py
+++ /dev/null
@@ -1,9 +0,0 @@
-import streamlit as st
-
-pages = [
- st.Page("pages/fev_bench.py", title="fev-bench", icon=":material/trophy:"),
- st.Page("pages/about.py", title="About", icon=":material/info:"),
-]
-
-page = st.navigation(pages)
-page.run()
diff --git a/pages/about.py b/pages/about.py
deleted file mode 100644
index 8405c75af6af666ab84ff72ffae9869e95c94f44..0000000000000000000000000000000000000000
--- a/pages/about.py
+++ /dev/null
@@ -1,19 +0,0 @@
-import streamlit as st
-
-ABOUT_LEADERBOARD = """
-## About
-
-[**fev**](https://github.com/autogluon/fev) is a lightweight wrapper around the 🤗 [datasets](https://huggingface.co/docs/datasets/en/index) library designed to streamline
- benchmarking of time series forecasting models.
-
-### 📚 Resources
-- **Documentation**: [Official docs](https://autogluon.github.io/fev/latest/)
-- **Publication**: ["fev-bench: A Realistic Benchmark for Time Series Forecasting"](https://arxiv.org/abs/2509.26468)
-- **Source Code**: [GitHub repository](https://github.com/autogluon/fev)
-- **Issues & Questions**: [GitHub Issues](https://github.com/autogluon/fev/issues)
-
-### 🚀 Submit Your Model
-Ready to add your model to the leaderboard? Follow this [tutorial](https://autogluon.github.io/fev/latest/tutorials/05-add-your-model/) to evaluate your model with fev and contribute your results.
-"""
-st.set_page_config(layout="wide", page_title="About FEV", page_icon=":material/info:")
-st.markdown(ABOUT_LEADERBOARD)
diff --git a/pages/chronos_bench_ii.py b/pages/chronos_bench_ii.py
deleted file mode 100644
index 6ed26f9df6fca52151170e400c6c94e1d359b594..0000000000000000000000000000000000000000
--- a/pages/chronos_bench_ii.py
+++ /dev/null
@@ -1,179 +0,0 @@
-import sys
-from pathlib import Path
-
-sys.path.append(str(Path(__file__).parent.parent))
-
-import fev
-import pandas as pd
-import streamlit as st
-from streamlit.elements.lib.column_types import ColumnConfig
-
-from src.strings import (
- CHRONOS_BENCHMARK_BASIC_INFO,
- CHRONOS_BENCHMARK_DETAILS,
- CITATION_CHRONOS,
- CITATION_FEV,
- CITATION_HEADER,
- PAIRWISE_BENCHMARK_DETAILS,
- get_pivot_legend,
-)
-from src.utils import (
- construct_bar_chart,
- construct_pairwise_chart,
- construct_pivot_table,
- format_leaderboard,
- format_metric_name,
- get_metric_description,
-)
-
-st.set_page_config(layout="wide", page_title="FEV Benchmark Leaderboard", page_icon=":material/trophy:")
-
-TITLE = "
Chronos Benchmark II
"
-BASELINE_MODEL = "seasonal_naive"
-LEAKAGE_IMPUTATION_MODEL = "chronos_bolt_base"
-SORT_COL = "win_rate"
-N_RESAMPLES_FOR_CI = 1000
-TOP_K_MODELS_TO_PLOT = 15
-AVAILABLE_METRICS = ["WQL", "MASE"]
-SUMMARY_URLS = [
- "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/auto_arima.csv",
- "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/auto_ets.csv",
- "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/auto_theta.csv",
- "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/chronos_base.csv",
- "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/chronos_large.csv",
- "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/chronos_mini.csv",
- "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/chronos_small.csv",
- "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/chronos_tiny.csv",
- "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/chronos_bolt_base.csv",
- "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/chronos_bolt_mini.csv",
- "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/chronos_bolt_small.csv",
- "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/chronos_bolt_tiny.csv",
- "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/moirai_base.csv",
- "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/moirai_large.csv",
- "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/moirai_small.csv",
- "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/seasonal_naive.csv",
- "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/timesfm.csv",
- "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/timesfm-2.0.csv",
- "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/ttm-r2.csv",
- "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/tirex.csv",
-]
-
-
-@st.cache_data()
-def load_summaries():
- summaries = []
- for url in SUMMARY_URLS:
- df = pd.read_csv(url)
- summaries.append(df)
- return pd.concat(summaries, ignore_index=True)
-
-
-@st.cache_data()
-def get_leaderboard(metric_name: str) -> pd.DataFrame:
- summaries = load_summaries()
- lb = fev.analysis.leaderboard(
- summaries=summaries,
- metric_column=metric_name,
- missing_strategy="impute",
- baseline_model=BASELINE_MODEL,
- leakage_imputation_model=LEAKAGE_IMPUTATION_MODEL,
- )
- lb = lb.astype("float64").reset_index()
-
- lb["skill_score"] = lb["skill_score"] * 100
- lb["win_rate"] = lb["win_rate"] * 100
- lb["num_failures"] = lb["num_failures"] / summaries["task_name"].nunique() * 100
- return lb
-
-
-@st.cache_data()
-def get_pairwise(metric_name: str, included_models: list[str]) -> pd.DataFrame:
- if BASELINE_MODEL not in included_models:
- included_models = included_models + [BASELINE_MODEL]
- summaries = load_summaries()
- return (
- fev.analysis.pairwise_comparison(
- summaries,
- included_models=included_models,
- metric_column=metric_name,
- baseline_model=BASELINE_MODEL,
- missing_strategy="impute",
- n_resamples=N_RESAMPLES_FOR_CI,
- leakage_imputation_model=LEAKAGE_IMPUTATION_MODEL,
- )
- .round(3)
- .reset_index()
- )
-
-
-with st.sidebar:
- selected_metric = st.selectbox("Evaluation Metric", options=AVAILABLE_METRICS, format_func=format_metric_name)
- st.caption(get_metric_description(selected_metric))
-
-cols = st.columns(spec=[0.025, 0.95, 0.025])
-
-with cols[1] as main_container:
- st.markdown(TITLE, unsafe_allow_html=True)
-
- metric_df = get_leaderboard(selected_metric).sort_values(by=SORT_COL, ascending=False)
- top_k_models = metric_df.head(TOP_K_MODELS_TO_PLOT)["model_name"].tolist()
- pairwise_df = get_pairwise(selected_metric, included_models=top_k_models)
-
- st.markdown("## :material/trophy: Leaderboard", unsafe_allow_html=True)
- st.markdown(CHRONOS_BENCHMARK_BASIC_INFO, unsafe_allow_html=True)
- df_styled = format_leaderboard(metric_df)
- st.dataframe(
- df_styled,
- use_container_width=True,
- hide_index=True,
- column_config={
- "model_name": ColumnConfig(label="Model Name", alignment="left"),
- "win_rate": st.column_config.NumberColumn(label="Avg. win rate (%)", format="%.1f"),
- "skill_score": st.column_config.NumberColumn(label="Skill score (%)", format="%.1f"),
- "median_inference_time_s": st.column_config.NumberColumn(label="Median runtime (s)", format="%.1f"),
- "training_corpus_overlap": st.column_config.NumberColumn(label="Leakage (%)", format="%d"),
- "num_failures": st.column_config.NumberColumn(label="Failed tasks (%)", format="%.0f"),
- "zero_shot": ColumnConfig(label="Zero-shot", alignment="center"),
- "org": ColumnConfig(label="Organization", alignment="left"),
- "link": st.column_config.LinkColumn(label="Link", display_text=":material/open_in_new:"),
- },
- )
-
- with st.expander("See details"):
- st.markdown(CHRONOS_BENCHMARK_DETAILS, unsafe_allow_html=True)
-
- st.markdown("## :material/bar_chart: Pairwise comparison", unsafe_allow_html=True)
- chart_col_1, _, chart_col_2 = st.columns(spec=[0.45, 0.1, 0.45])
-
- with chart_col_1:
- st.altair_chart(
- construct_pairwise_chart(pairwise_df, col="win_rate", metric_name=selected_metric),
- use_container_width=True,
- )
-
- with chart_col_2:
- st.altair_chart(
- construct_pairwise_chart(pairwise_df, col="skill_score", metric_name=selected_metric),
- use_container_width=True,
- )
-
- with st.expander("See details"):
- st.markdown(PAIRWISE_BENCHMARK_DETAILS, unsafe_allow_html=True)
-
- st.markdown("## :material/table_chart: Results for individual tasks", unsafe_allow_html=True)
- with st.expander("Show detailed results"):
- st.markdown(get_pivot_legend(BASELINE_MODEL, LEAKAGE_IMPUTATION_MODEL), unsafe_allow_html=True)
- st.dataframe(
- construct_pivot_table(
- summaries=load_summaries(),
- metric_name=selected_metric,
- baseline_model=BASELINE_MODEL,
- leakage_imputation_model=LEAKAGE_IMPUTATION_MODEL,
- )
- )
-
- st.divider()
- st.markdown("### :material/format_quote: Citation", unsafe_allow_html=True)
- st.markdown(CITATION_HEADER)
- st.markdown(CITATION_FEV)
- st.markdown(CITATION_CHRONOS)
diff --git a/pages/fev_bench.py b/pages/fev_bench.py
deleted file mode 100644
index 343125c238e82d8908ac3e7962daf341390ee9ae..0000000000000000000000000000000000000000
--- a/pages/fev_bench.py
+++ /dev/null
@@ -1,219 +0,0 @@
-import sys
-from pathlib import Path
-
-sys.path.append(str(Path(__file__).parent))
-
-import fev
-import pandas as pd
-import streamlit as st
-from streamlit.elements.lib.column_types import ColumnConfig
-
-from src.strings import (
- CITATION_FEV,
- CITATION_HEADER,
- FEV_BENCHMARK_DETAILS,
- PAIRWISE_BENCHMARK_DETAILS,
- get_pivot_legend,
-)
-from src.task_groups import (
- ALL_TASKS,
- DOMAIN_GROUPS,
- FREQUENCY_GROUPS,
- MINI_TASKS,
- get_task_group,
-)
-from src.utils import (
- COLORS,
- construct_pairwise_chart,
- format_leaderboard,
- format_metric_name,
- get_metric_description,
-)
-
-st.set_page_config(layout="wide", page_title="fev leaderboard", page_icon=":material/trophy:")
-
-TITLE = "fev-bench
"
-SORT_COL = "win_rate"
-AVAILABLE_METRICS = ["SQL", "MASE", "WQL", "WAPE"]
-
-# Group type options
-GROUP_TYPES = ["Full (100 tasks)", "Mini (20 tasks)", "By frequency", "By domain"]
-FREQUENCY_OPTIONS = list(FREQUENCY_GROUPS.keys())
-DOMAIN_OPTIONS = list(DOMAIN_GROUPS.keys())
-
-def get_subset_description(group_type: str, subgroup: str | None, num_tasks: int) -> str:
- """Generate a description of the current subset."""
- base = f"Results for various forecasting models on **{num_tasks} tasks**"
- if group_type == "Full (100 tasks)":
- subset_desc = "from the full **fev-bench** benchmark"
- elif group_type == "Mini (20 tasks)":
- subset_desc = "from the **fev-bench-mini** subset"
- elif group_type == "By frequency":
- subset_desc = f"with **{subgroup.lower()}** frequency"
- else: # By domain
- subset_desc = f"from the **{subgroup}** domain"
- paper_link = "[fev-bench: A Realistic Benchmark for Time Series Forecasting](https://arxiv.org/abs/2509.26468)"
- return f"{base} {subset_desc}, as described in the paper {paper_link}."
-
-
-# Mapping from UI selections to table directory names
-GROUP_DIR_MAPPING = {
- "Full (100 tasks)": "full",
- "Mini (20 tasks)": "mini",
- "Sub-hourly": "frequency_sub_hourly",
- "Hourly": "frequency_hourly",
- "Daily": "frequency_daily",
- "Weekly": "frequency_weekly",
- "Monthly+": "frequency_monthly_plus",
- "Energy": "domain_energy",
- "Nature": "domain_nature",
- "Cloud": "domain_cloud",
- "Mobility": "domain_mobility",
- "Econ": "domain_econ",
- "Health": "domain_health",
- "Retail": "domain_retail",
-}
-
-
-@st.cache_data()
-def get_leaderboard(metric_name: str, group_dir: str) -> pd.DataFrame:
- return pd.read_csv(f"tables/{group_dir}/leaderboard_{metric_name}.csv")
-
-
-@st.cache_data()
-def get_pairwise(metric_name: str, group_dir: str) -> pd.DataFrame:
- return pd.read_csv(f"tables/{group_dir}/pairwise_{metric_name}.csv")
-
-
-@st.cache_data()
-def get_pivot_table(metric_name: str) -> tuple[pd.DataFrame, pd.DataFrame, pd.DataFrame]:
- pivot_df = pd.read_csv(f"tables/pivot_{metric_name}.csv")
- baseline_imputed = pd.read_csv(f"tables/pivot_{metric_name}_baseline_imputed.csv")
- leakage_imputed = pd.read_csv(f"tables/pivot_{metric_name}_leakage_imputed.csv")
- return pivot_df, baseline_imputed, leakage_imputed
-
-
-with st.sidebar:
- # Task group selection
- selected_group_type = st.selectbox("Subset", options=GROUP_TYPES)
-
- # Conditional sub-selection for frequency/domain
- selected_subgroup = None
- if selected_group_type == "By frequency":
- selected_subgroup = st.selectbox("Frequency", options=FREQUENCY_OPTIONS)
- elif selected_group_type == "By domain":
- selected_subgroup = st.selectbox("Domain", options=DOMAIN_OPTIONS)
-
- # Determine the directory to load tables from
- if selected_group_type in ["Full (100 tasks)", "Mini (20 tasks)"]:
- group_dir = GROUP_DIR_MAPPING[selected_group_type]
- task_list = ALL_TASKS if selected_group_type == "Full (100 tasks)" else MINI_TASKS
- else:
- group_dir = GROUP_DIR_MAPPING[selected_subgroup]
- if selected_group_type == "By frequency":
- task_list = FREQUENCY_GROUPS[selected_subgroup]
- else:
- task_list = DOMAIN_GROUPS[selected_subgroup]
-
- st.caption(f"{len(task_list)} tasks")
-
- st.divider()
-
- selected_metric = st.selectbox("Evaluation Metric", options=AVAILABLE_METRICS, format_func=format_metric_name)
- st.caption(get_metric_description(selected_metric))
-
-cols = st.columns(spec=[0.025, 0.95, 0.025])
-
-with cols[1] as main_container:
- st.markdown(TITLE, unsafe_allow_html=True)
-
- metric_df = get_leaderboard(selected_metric, group_dir).sort_values(by=SORT_COL, ascending=False)
- pairwise_df = get_pairwise(selected_metric, group_dir)
-
- st.markdown("## :material/trophy: Leaderboard", unsafe_allow_html=True)
- st.markdown(get_subset_description(selected_group_type, selected_subgroup, len(task_list)), unsafe_allow_html=True)
- df_styled = format_leaderboard(metric_df)
- st.dataframe(
- df_styled,
- width="stretch",
- hide_index=True,
- column_config={
- "model_name": ColumnConfig(label="Model Name", alignment="left"),
- "win_rate": st.column_config.NumberColumn(label="Avg. win rate (%)", format="%.1f"),
- "skill_score": st.column_config.NumberColumn(label="Skill score (%)", format="%.1f"),
- "median_inference_time_s_per100": st.column_config.NumberColumn(label="Median runtime (s / 100 series)", format="%.1f"),
- "training_corpus_overlap": st.column_config.NumberColumn(label="Leakage (%)", format="%d"),
- "num_failures": st.column_config.NumberColumn(label="Failed tasks (%)", format="%.0f"),
- "zero_shot": ColumnConfig(label="Zero-shot", alignment="center"),
- "org": ColumnConfig(label="Organization", alignment="left"),
- "link": st.column_config.LinkColumn(label="Link", display_text="🔗"),
- },
- )
-
- with st.expander("See details"):
- st.markdown(FEV_BENCHMARK_DETAILS, unsafe_allow_html=True)
-
- st.markdown("## :material/bar_chart: Pairwise comparison", unsafe_allow_html=True)
- chart_col_1, _, chart_col_2 = st.columns(spec=[0.45, 0.1, 0.45])
-
- with chart_col_1:
- st.altair_chart(
- construct_pairwise_chart(pairwise_df, col="win_rate", metric_name=selected_metric),
- use_container_width=True,
- )
-
- with chart_col_2:
- st.altair_chart(
- construct_pairwise_chart(pairwise_df, col="skill_score", metric_name=selected_metric),
- use_container_width=True,
- )
-
- with st.expander("See details"):
- st.markdown(PAIRWISE_BENCHMARK_DETAILS, unsafe_allow_html=True)
-
- st.markdown("## :material/table_chart: Results for individual tasks", unsafe_allow_html=True)
- with st.expander("Show detailed results"):
- st.markdown(get_pivot_legend("Seasonal Naive", "Chronos-Bolt"), unsafe_allow_html=True)
- pivot_df, baseline_imputed, leakage_imputed = get_pivot_table(selected_metric)
- pivot_df = pivot_df.set_index("Task name")
- baseline_imputed = baseline_imputed.set_index("Task name")
- leakage_imputed = leakage_imputed.set_index("Task name")
-
- # Filter pivot table to only show tasks in the selected group
- available_tasks = [t for t in task_list if t in pivot_df.index]
- pivot_df = pivot_df.loc[available_tasks]
- baseline_imputed = baseline_imputed.loc[available_tasks]
- leakage_imputed = leakage_imputed.loc[available_tasks]
-
- def style_pivot_table(errors, is_baseline_imputed, is_leakage_imputed):
- rank_colors = {1: COLORS["gold"], 2: COLORS["silver"], 3: COLORS["bronze"]}
-
- def highlight_by_position(styler):
- for row_idx in errors.index:
- row_ranks = errors.loc[row_idx].rank(method="min")
- for col_idx in errors.columns:
- rank = row_ranks[col_idx]
- style_parts = []
- if rank <= 3:
- style_parts.append(f"background-color: {rank_colors[rank]}")
- if is_leakage_imputed.loc[row_idx, col_idx]:
- style_parts.append(f"color: {COLORS['leakage_impute']}")
- elif is_baseline_imputed.loc[row_idx, col_idx]:
- style_parts.append(f"color: {COLORS['failure_impute']}")
- elif not style_parts:
- style_parts.append(f"color: {COLORS['text_default']}")
- if style_parts:
- styler = styler.map(
- lambda x, s="; ".join(style_parts): s,
- subset=pd.IndexSlice[row_idx:row_idx, col_idx:col_idx],
- )
- return styler
-
- return highlight_by_position(errors.style).format(precision=3)
-
- st.dataframe(style_pivot_table(pivot_df, baseline_imputed, leakage_imputed))
-
- st.divider()
- st.markdown("### :material/format_quote: Citation", unsafe_allow_html=True)
- st.markdown(CITATION_HEADER)
- st.markdown(CITATION_FEV)
diff --git a/pyproject.toml b/pyproject.toml
index 5beb6eb822dfffd8e8ebc03e887ca03dbb6da316..3b4737924b5a7d81c962a4e28b66ac6cdcc3b004 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,12 +1,13 @@
-[project]
-name = "hf-leaderboard"
-version = "0.1.0"
-requires-python = ">=3.11"
-dependencies = [
- "altair>=6.0.0",
- "fev>=0.7.0",
- "numpy<2.2",
- "pyarrow<21",
- "scipy<1.15",
- "streamlit>=1.53.1",
-]
+[tool.ruff]
+# Enable pycodestyle (`E`) and Pyflakes (`F`) codes by default.
+select = ["E", "F"]
+ignore = ["E501"] # line too long (black is taking care of this)
+line-length = 119
+fixable = ["A", "B", "C", "D", "E", "F", "G", "I", "N", "Q", "S", "T", "W", "ANN", "ARG", "BLE", "COM", "DJ", "DTZ", "EM", "ERA", "EXE", "FBT", "ICN", "INP", "ISC", "NPY", "PD", "PGH", "PIE", "PL", "PT", "PTH", "PYI", "RET", "RSE", "RUF", "SIM", "SLF", "TCH", "TID", "TRY", "UP", "YTT"]
+
+[tool.isort]
+profile = "black"
+line_length = 119
+
+[tool.black]
+line-length = 119
diff --git a/requirements.txt b/requirements.txt
index e5e15e89873cf7414b789bb7e3a87b30efcae700..df79e537f7f02878e2af0b6bc139304fa109a39c 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,7 +1,11 @@
+APScheduler
+black
+datasets
+gradio
+gradio[oauth]
+gradio_client
+huggingface-hub>=0.18.0
matplotlib
numpy
pandas
-requests
-streamlit==1.49.1
-fev>=0.6.0
-altair>=5.5.0
+fev==0.4.0
diff --git a/save_tables.py b/save_tables.py
deleted file mode 100644
index b46cdddbcb662be61cd6ccdeddada80821fda00b..0000000000000000000000000000000000000000
--- a/save_tables.py
+++ /dev/null
@@ -1,212 +0,0 @@
-#!/usr/bin/env python3
-
-import argparse
-import io
-import sys
-from pathlib import Path
-
-import requests
-
-sys.path.append(str(Path(__file__).parent))
-
-import fev
-import pandas as pd
-
-from src.task_groups import ALL_TASKS, DOMAIN_GROUPS, FREQUENCY_GROUPS, MINI_TASKS
-from src.utils import format_leaderboard
-
-GITHUB_REPO = "autogluon/fev"
-RESULTS_PATH = "benchmarks/fev_bench/results"
-
-# Constants from the main app
-BASELINE_MODEL = "Seasonal Naive"
-LEAKAGE_IMPUTATION_MODEL = "Chronos-Bolt"
-SORT_COL = "win_rate"
-N_RESAMPLES_FOR_CI = 1000
-TOP_K_MODELS_TO_PLOT = 15
-AVAILABLE_METRICS = ["SQL", "MASE", "WQL", "WAPE"]
-
-# All task groups to generate tables for
-TASK_GROUPS = {
- "full": ALL_TASKS,
- "mini": MINI_TASKS,
- "frequency_sub_hourly": FREQUENCY_GROUPS["Sub-hourly"],
- "frequency_hourly": FREQUENCY_GROUPS["Hourly"],
- "frequency_daily": FREQUENCY_GROUPS["Daily"],
- "frequency_weekly": FREQUENCY_GROUPS["Weekly"],
- "frequency_monthly_plus": FREQUENCY_GROUPS["Monthly+"],
- "domain_energy": DOMAIN_GROUPS["Energy"],
- "domain_nature": DOMAIN_GROUPS["Nature"],
- "domain_cloud": DOMAIN_GROUPS["Cloud"],
- "domain_mobility": DOMAIN_GROUPS["Mobility"],
- "domain_econ": DOMAIN_GROUPS["Econ"],
- "domain_health": DOMAIN_GROUPS["Health"],
- "domain_retail": DOMAIN_GROUPS["Retail"],
-}
-
-
-def get_csv_files_from_github(commit: str) -> list[str]:
- """Get list of CSV file paths from the GitHub repo at a specific commit."""
- api_url = f"https://api.github.com/repos/{GITHUB_REPO}/contents/{RESULTS_PATH}?ref={commit}"
- response = requests.get(api_url)
- response.raise_for_status()
-
- files = response.json()
- csv_files = [f["path"] for f in files if f["name"].endswith(".csv")]
-
- if not csv_files:
- raise FileNotFoundError(f"No CSV files found in {RESULTS_PATH} at commit {commit}")
-
- return csv_files
-
-
-def load_summaries_from_github(commit: str) -> pd.DataFrame:
- """Load and concatenate all CSV summaries from the GitHub repo at a specific commit."""
- csv_files = get_csv_files_from_github(commit)
- print(f"Found {len(csv_files)} CSV files")
-
- dfs = []
- for file_path in csv_files:
- raw_url = f"https://raw.githubusercontent.com/{GITHUB_REPO}/{commit}/{file_path}"
- response = requests.get(raw_url)
- response.raise_for_status()
- df = pd.read_csv(io.StringIO(response.text))
- dfs.append(df)
- print(f" Loaded: {Path(file_path).name}")
-
- return pd.concat(dfs, ignore_index=True)
-
-
-def compute_leaderboard(summaries: pd.DataFrame, metric_name: str) -> pd.DataFrame:
- lb = fev.analysis.leaderboard(
- summaries=summaries,
- metric_column=metric_name,
- missing_strategy="impute",
- baseline_model=BASELINE_MODEL,
- leakage_imputation_model=LEAKAGE_IMPUTATION_MODEL,
- normalize_time_per_n_forecasts=100,
- )
- lb = lb.astype("float64").reset_index()
-
- lb["skill_score"] = lb["skill_score"] * 100
- lb["win_rate"] = lb["win_rate"] * 100
- lb["num_failures"] = lb["num_failures"] / summaries["task_name"].nunique() * 100
- return lb
-
-
-def compute_pairwise(summaries: pd.DataFrame, metric_name: str, included_models: list[str]) -> pd.DataFrame:
- if BASELINE_MODEL not in included_models:
- included_models = included_models + [BASELINE_MODEL]
-
- return (
- fev.analysis.pairwise_comparison(
- summaries,
- included_models=included_models,
- metric_column=metric_name,
- baseline_model=BASELINE_MODEL,
- missing_strategy="impute",
- n_resamples=N_RESAMPLES_FOR_CI,
- leakage_imputation_model=LEAKAGE_IMPUTATION_MODEL,
- )
- .round(3)
- .reset_index()
- )
-
-
-def compute_pivot_table(summaries: pd.DataFrame, metric_name: str) -> tuple[pd.DataFrame, pd.DataFrame, pd.DataFrame]:
- errors = fev.pivot_table(summaries=summaries, metric_column=metric_name, task_columns=["task_name"])
- train_overlap = (
- fev.pivot_table(summaries=summaries, metric_column="trained_on_this_dataset", task_columns=["task_name"])
- .fillna(False)
- .astype(bool)
- )
-
- is_imputed_baseline = errors.isna()
- is_leakage_imputed = train_overlap
-
- # Handle imputations
- errors = errors.mask(train_overlap, errors[LEAKAGE_IMPUTATION_MODEL], axis=0)
- for col in errors.columns:
- if col != BASELINE_MODEL:
- errors[col] = errors[col].fillna(errors[BASELINE_MODEL])
-
- errors = errors[errors.rank(axis=1).mean().sort_values().index]
- is_imputed_baseline = is_imputed_baseline[errors.columns]
- is_leakage_imputed = is_leakage_imputed[errors.columns]
-
- errors.index.rename("Task name", inplace=True)
- is_imputed_baseline.index.rename("Task name", inplace=True)
- is_leakage_imputed.index.rename("Task name", inplace=True)
-
- return errors.reset_index(), is_imputed_baseline.reset_index(), is_leakage_imputed.reset_index()
-
-
-def main():
- parser = argparse.ArgumentParser(description="Generate leaderboard tables from CSV summaries in the fev repo")
- parser.add_argument(
- "commit",
- nargs="?",
- default="main",
- help=f"Git commit SHA or branch name in the {GITHUB_REPO} repository (default: main)",
- )
- args = parser.parse_args()
-
- # Create tables directory
- tables_dir = Path("tables")
- tables_dir.mkdir(exist_ok=True)
-
- print(f"Loading summaries from {GITHUB_REPO} at commit {args.commit}...")
- summaries = load_summaries_from_github(args.commit)
-
- # Save raw summaries for on-the-fly subset computation
- summaries.to_csv(tables_dir / "summaries.csv", index=False)
- print("Saved: summaries.csv")
-
- # Generate pivot tables (full version only, at root level)
- for metric in AVAILABLE_METRICS:
- print(f"Processing pivot table for {metric}...")
- pivot_df, baseline_imputed, leakage_imputed = compute_pivot_table(summaries, metric)
- pivot_df.to_csv(tables_dir / f"pivot_{metric}.csv", index=False)
- baseline_imputed.to_csv(tables_dir / f"pivot_{metric}_baseline_imputed.csv", index=False)
- leakage_imputed.to_csv(tables_dir / f"pivot_{metric}_leakage_imputed.csv", index=False)
- print(f" Saved: pivot_{metric}.csv")
-
- # Generate leaderboard and pairwise tables for each task group
- for group_name, task_list in TASK_GROUPS.items():
- print(f"\nProcessing group: {group_name} ({len(task_list)} tasks)...")
-
- # Create subdirectory for this group
- group_dir = tables_dir / group_name
- group_dir.mkdir(exist_ok=True)
-
- # Filter summaries to only include tasks in this group
- group_summaries = summaries[summaries["task_name"].isin(task_list)]
-
- if group_summaries.empty:
- print(f" WARNING: No matching tasks found for group {group_name}")
- continue
-
- actual_tasks = group_summaries["task_name"].nunique()
- print(f" Found {actual_tasks} tasks in summaries")
-
- for metric in AVAILABLE_METRICS:
- # Compute leaderboard for this group
- leaderboard_df = compute_leaderboard(group_summaries, metric)
- leaderboard_df.to_csv(group_dir / f"leaderboard_{metric}.csv", index=False)
-
- # Get top models for pairwise comparison
- top_k_models = (
- leaderboard_df.sort_values(by=SORT_COL, ascending=False).head(TOP_K_MODELS_TO_PLOT)["model_name"].tolist()
- )
-
- # Compute pairwise comparison
- pairwise_df = compute_pairwise(group_summaries, metric, top_k_models)
- pairwise_df.to_csv(group_dir / f"pairwise_{metric}.csv", index=False)
-
- print(f" Saved: {group_name}/leaderboard_{metric}.csv, {group_name}/pairwise_{metric}.csv")
-
- print(f"\nAll tables saved to {tables_dir}/")
-
-
-if __name__ == "__main__":
- main()
diff --git a/src/about.py b/src/about.py
new file mode 100644
index 0000000000000000000000000000000000000000..ec3ca3187a3dad699865af262076244574d1b51b
--- /dev/null
+++ b/src/about.py
@@ -0,0 +1,50 @@
+TITLE = """Forecast evaluation leaderboard
"""
+
+# What does your leaderboard evaluate?
+INTRODUCTION_TEXT = """
+This space hosts evaluation results for time series forecasting models.
+
+The results are obtained using [fev](https://github.com/autogluon/fev) - a lightweight library for evaluating time series forecasting models.
+"""
+
+ABOUT_LEADERBOARD = """
+## What is `fev`?
+
+[`fev`](https://github.com/autogluon/fev) is a lightweight wrapper around the 🤗 [`datasets`](https://huggingface.co/docs/datasets/en/index) library that makes it easy to benchmark time series forecasting models.
+
+For more information about `fev`, please check out [github.com/autogluon/fev](https://github.com/autogluon/fev).
+
+Currently, the results in this space are a minimal proof of concept. We plan to add new benchmark datasets and tasks in the future.
+
+## How is `fev` different from other benchmarking tools?
+Existing forecasting benchmarks usually fall into one of two categories:
+
+- Standalone datasets without any supporting infrastructure. These provide no guarantees that the results obtained by different users are comparable. For example, changing the start date or duration of the forecast horizon totally changes the meaning of the scores.
+- Bespoke end-to-end systems that combine models, datasets and forecasting tasks. Such packages usually come with lots of dependencies and assumptions, which makes extending or integrating these libraries into existing systems difficult.
+
+`fev` aims for the middle ground - it provides the core benchmarking functionality without introducing unnecessary constraints or bloated dependencies. The library supports point & probabilistic forecasting, different types of covariates, as well as all popular forecasting metrics.
+
+
+## Submitting your model
+For instructions on how to evaluate your model using `fev` and contribute your results to the leaderboard, please follow the [instructions in the GitHub repo](https://github.com/autogluon/fev/blob/main/docs/04-models.ipynb).
+"""
+
+CHRONOS_BENCHMARK = """
+## Chronos Benchmark II results
+
+This tab contains results for various forecasting models on the 27 datasets used in Benchmark II in the publication [Chronos: Learning the Language of Time Series](https://arxiv.org/abs/2403.07815).
+
+These datasets were used for zero-shot evaluation of Chronos models (i.e., Chronos models were not trained on these datasets), but some other models did include certain datasets in their training corpus.
+
+Each table contains the following information:
+
+* **Average relative error**: Geometric mean of the relative errors for each task. The relative error for each task is computed as `model_error / baseline_error`.
+* **Average rank**: Arithmetic mean of the ranks achieved by each model on each task.
+* **Median inference time (s)**: Median of the times required to make predictions for the entire dataset (in seconds).
+* **Training corpus overlap (%)**: Percentage of the datasets used in the benchmark that were included in the model's training corpus. Zero-shot models are highlighted in green.
+
+Lower values are better for all of the above metrics.
+
+Task definitions and the detailed results are available on [GitHub](https://github.com/autogluon/fev/tree/main/benchmarks/chronos_zeroshot). More information for the datasets is available in [Table 3 of the paper](https://arxiv.org/abs/2403.07815).
+
+"""
diff --git a/src/colors.py b/src/colors.py
deleted file mode 100644
index 44afbf61545559d5b0de0c45742402712501bada..0000000000000000000000000000000000000000
--- a/src/colors.py
+++ /dev/null
@@ -1,6 +0,0 @@
-# Legacy colors - kept for backward compatibility if needed elsewhere
-VERY_PALE_PURPLE = "#e8d9f3"
-VERY_PALE_GREEN = "#cffdbc"
-VERY_PALE_BLUE = "#d6fffe"
-DEEP_LAVENDER = "#8d5eb7"
-GRASS_GREEN = "#3f9b0b"
diff --git a/src/custom_html_js.py b/src/custom_html_js.py
new file mode 100644
index 0000000000000000000000000000000000000000..c88cf5bad9a6722df9ef301af9b51ab1b35d4c02
--- /dev/null
+++ b/src/custom_html_js.py
@@ -0,0 +1,99 @@
+custom_css = """
+
+.markdown-text {
+ font-size: 20px !important;
+}
+
+"""
+
+
+# .tab-buttons button {
+# font-size: 20px;
+# }
+
+# #citation-button span {
+# font-size: 16px !important;
+# }
+
+# #citation-button textarea {
+# font-size: 16px !important;
+# }
+
+# #citation-button > label > button {
+# margin: 6px;
+# transform: scale(1.3);
+# }
+
+
+# #leaderboard-table-lite {
+# margin-top: 15px
+# }
+
+# #search-bar-table-box > div:first-child {
+# background: none;
+# border: none;
+# }
+
+# #search-bar {
+# padding: 0px;
+# }
+
+# /* Hides the final AutoEvalColumn */
+# #llm-benchmark-tab-table table td:last-child,
+# #llm-benchmark-tab-table table th:last-child {
+# display: none;
+# }
+
+# /* Limit the width of the first AutoEvalColumn so that names don't expand too much */
+# table td:first-child,
+# table th:first-child {
+# max-width: 400px;
+# overflow: auto;
+# white-space: nowrap;
+# }
+
+
+# #scale-logo {
+# border-style: none !important;
+# box-shadow: none;
+# display: block;
+# margin-left: auto;
+# margin-right: auto;
+# max-width: 600px;
+# }
+
+# #scale-logo .download {
+# display: none;
+# }
+# #filter_type{
+# border: 0;
+# padding-left: 0;
+# padding-top: 0;
+# }
+# #filter_type label {
+# display: flex;
+# }
+# #filter_type label > span{
+# margin-top: var(--spacing-lg);
+# margin-right: 0.5em;
+# }
+# #filter_type label > .wrap{
+# width: 103px;
+# }
+# #filter_type label > .wrap .wrap-inner{
+# padding: 2px;
+# }
+# #filter_type label > .wrap .wrap-inner input{
+# width: 1px
+# }
+# #filter-columns-type{
+# border:0;
+# padding:0.5;
+# }
+# #filter-columns-size{
+# border:0;
+# padding:0.5;
+# }
+# #box-filter > .form{
+# border: 0
+# }
diff --git a/src/formatting.py b/src/formatting.py
new file mode 100644
index 0000000000000000000000000000000000000000..02b7e5ac55f221c62436159b7c7a8000016b1132
--- /dev/null
+++ b/src/formatting.py
@@ -0,0 +1,31 @@
+def model_hyperlink(link, model_name):
+ return f'{model_name}'
+
+
+MODEL_URLS = {
+ "chronos_tiny": "amazon/chronos-t5-tiny",
+ "chronos_mini": "amazon/chronos-t5-mini",
+ "chronos_small": "amazon/chronos-t5-small",
+ "chronos_base": "amazon/chronos-t5-base",
+ "chronos_large": "amazon/chronos-t5-large",
+ "chronos_bolt_tiny": "amazon/chronos-bolt-tiny",
+ "chronos_bolt_mini": "amazon/chronos-bolt-mini",
+ "chronos_bolt_small": "amazon/chronos-bolt-small",
+ "chronos_bolt_base": "amazon/chronos-bolt-base",
+ "moirai_large": "Salesforce/moirai-1.1-R-large",
+ "moirai_base": "Salesforce/moirai-1.1-R-base",
+ "moirai_small": "Salesforce/moirai-1.1-R-small",
+ "timesfm": "google/timesfm-1.0-200m-pytorch",
+ "timesfm-2.0": "google/timesfm-2.0-500m-pytorch",
+ "ttm-r2": "ibm-granite/granite-timeseries-ttm-r2",
+ "tirex": "NX-AI/TiRex",
+}
+
+
+def make_clickable_model(model_name):
+ if model_name in MODEL_URLS:
+ model_path = MODEL_URLS.get(model_name)
+ link = f"https://huggingface.co/{model_path}"
+ return model_hyperlink(link, model_name)
+ else:
+ return model_name
diff --git a/src/streamlit_app.py b/src/streamlit_app.py
deleted file mode 100644
index 211272d717ffeb6c32475b04318a1d14368a6594..0000000000000000000000000000000000000000
--- a/src/streamlit_app.py
+++ /dev/null
@@ -1,9 +0,0 @@
-import streamlit as st
-
-pages = [
- st.Page("../pages/fev_bench.py", title="fev-bench", icon=":material/trophy:"),
- st.Page("../pages/about.py", title="About", icon=":material/info:"),
-]
-
-page = st.navigation(pages)
-page.run()
diff --git a/src/strings.py b/src/strings.py
deleted file mode 100644
index 5eef14e172685fc7fdb24dc485be3089d4ebf8a7..0000000000000000000000000000000000000000
--- a/src/strings.py
+++ /dev/null
@@ -1,114 +0,0 @@
-from src.utils import COLORS
-
-INTRODUCTION_TEXT = """
-This space hosts evaluation results for time series forecasting models. The results are obtained using [fev](https://github.com/autogluon/fev) - a lightweight library for evaluating time series forecasting models.
-"""
-
-LEGEND = """
-"""
-
-TABLE_INFO = f"""
-The leaderboard summarizes the performance of all models evaluated on the 100 tasks comprising **fev-bench**. More details available in the [paper](https://arxiv.org/abs/2509.26468).
-
-Model names are colored by type: Deep Learning and Statistical.
-
-The full matrix $E_{{rj}}$ with the error of each model $j$ on task $r$ is available at the bottom of the page.
-
-* **Avg. win rate (%)**: Fraction of all possible model pairs and tasks where this model achieves lower error than the competing model. For model $j$, defined as $W_j = \\frac{{1}}{{R(M-1)}} \\sum_{{r=1}}^{{R}} \\sum_{{k \\neq j}} (\\mathbf{{1}}(E_{{rj}} < E_{{rk}}) + 0.5 \\cdot \\mathbf{{1}}(E_{{rj}} = E_{{rk}}))$ where $R$ is number of tasks, $M$ is number of models. Ties count as half-wins.
-
- Ranges from 0% (worst) to 100% (best). Higher values are better. This value changes as new models are added to the benchmark.
-
-* **Skill score (%)**: Measures how much the model reduces forecasting error compared to the Seasonal Naive baseline. Computed as $S_j = 100 \\times (1 - \\sqrt[R]{{\\prod_{{r=1}}^{{R}} E_{{rj}}/E_{{r\\beta}}}})$, where $E_{{r\\beta}}$ is baseline error on task $r$. Relative errors are clipped between 0.01 and 100 before aggregation to avoid extreme outliers. Positive values indicate better-than-baseline performance, negative values indicate worse-than-baseline performance.
-
- Higher values are better. This value does not change as new models are added to the benchmark.
-
-* **Median runtime (s)**: Median end-to-end time (training + prediction across all evaluation windows) in seconds. Note that inference times depend on hardware, batch sizes, and implementation details, so these serve as a rough guide rather than definitive performance benchmarks.
-
-* **Leakage (%)**: For zero-shot models, percentage of benchmark datasets included in the model's training corpus. Results for tasks with reported overlap are replaced with Chronos-Bolt (Base) performance to prevent data leakage.
-
-* **Failed tasks (%)**: Percentage of tasks where the model failed to produce a forecast. Results for failed tasks are replaced with Seasonal Naive performance.
-
-* **Zero-shot**: Indicates whether the model can make predictions without task-specific training (✓ = zero-shot, × = task-specific).
-"""
-
-CHRONOS_BENCHMARK_BASIC_INFO = f"""
-**Chronos Benchmark II** contains results for various forecasting models on the 27 datasets used in Benchmark II in the paper [Chronos: Learning the Language of Time Series](https://arxiv.org/abs/2403.07815). {LEGEND}
-"""
-
-CHRONOS_BENCHMARK_DETAILS = f"""
-{TABLE_INFO}
-
-Task definitions and the detailed results are available on [GitHub](https://github.com/autogluon/fev/tree/main/benchmarks/chronos_zeroshot). More information for the datasets is available in [Table 3 of the paper](https://arxiv.org/abs/2403.07815).
-"""
-
-FEV_BENCHMARK_BASIC_INFO = f"""
-Results for various forecasting models on 100 tasks of the **fev-bench** benchmark, as described in the paper [fev-bench: A Realistic Benchmark for Time Series Forecasting](https://arxiv.org/abs/2509.26468). {LEGEND}
-"""
-
-FEV_BENCHMARK_DETAILS = f"""
-{TABLE_INFO}
-
-Task definitions and the detailed results are available on [GitHub](https://github.com/autogluon/fev/tree/main/benchmarks/). Datasets used for evaluation are available on [Hugging Face](https://huggingface.co/datasets/autogluon/fev_datasets).
-"""
-
-CITATION_HEADER = """
-If you find this leaderboard useful for your research, please consider citing the associated paper(s):
-
-"""
-CITATION_FEV = """
-```
-@article{shchur2025fev,
- title={{fev-bench}: A Realistic Benchmark for Time Series Forecasting},
- author={Shchur, Oleksandr and Ansari, Abdul Fatir and Turkmen, Caner and Stella, Lorenzo and Erickson, Nick and Guerron, Pablo and Bohlke-Schneider, Michael and Wang, Yuyang},
- year={2025},
- eprint={2509.26468},
- archivePrefix={arXiv},
- primaryClass={cs.LG}
-}
-```
-"""
-
-
-def get_pivot_legend(baseline_model: str, leakage_imputation_model: str) -> str:
- return f"""
-Task definitions and raw results in CSV format are available on [GitHub](https://github.com/autogluon/fev/tree/main/benchmarks/fev_bench).
-
-Best results for each task are marked with
-🥇 1st
-🥈 2nd
-🥉 3rd
-
-**Imputation:**
-- Failed tasks imputed by {baseline_model}
-- Leaky tasks imputed by {leakage_imputation_model}
-"""
-
-
-PAIRWISE_BENCHMARK_DETAILS = """
-The pairwise charts show head-to-head results between models:
-
-* **Win rate**: Percentage of tasks where Model 1 achieves lower error than Model 2 (ties count as half-wins).
- A value above 50% means Model 1 is more accurate than Model 2 on average.
-
-* **Skill score**: Average relative error reduction of Model 1 with respect to Model 2.
- A positive value means Model 1 reduces forecasting error compared to Model 2 on average.
-
-**Confidence Intervals**: 95% intervals are estimated using 1000 bootstrap samples over tasks.
-For each bootstrap sample, tasks are resampled with replacement and the pairwise win rate / skill score are recomputed.
-The intervals correspond to the 2.5th and 97.5th percentiles of these bootstrap distributions,
-capturing how model comparisons vary under alternative benchmark compositions.
-"""
-
-
-CITATION_CHRONOS = """
-```
-@article{ansari2024chronos,
- title={Chronos: Learning the Language of Time Series},
- author={Ansari, Abdul Fatir and Stella, Lorenzo and Turkmen, Caner and Zhang, Xiyuan, and Mercado, Pedro and Shen, Huibin and Shchur, Oleksandr and Rangapuram, Syama Syndar and Pineda Arango, Sebastian and Kapoor, Shubham and Zschiegner, Jasper and Maddix, Danielle C. and Wang, Hao and Mahoney, Michael W. and Torkkola, Kari and Gordon Wilson, Andrew and Bohlke-Schneider, Michael and Wang, Yuyang},
- journal={Transactions on Machine Learning Research},
- issn={2835-8856},
- year={2024},
- url={https://openreview.net/forum?id=gerNCVqqtR}
-}
-```
-"""
diff --git a/src/task_groups.py b/src/task_groups.py
deleted file mode 100644
index 715fb9375e53bf77e742612e27e7dddd91ac8429..0000000000000000000000000000000000000000
--- a/src/task_groups.py
+++ /dev/null
@@ -1,209 +0,0 @@
-"""Task groupings for filtering the leaderboard by subsets."""
-
-# All tasks in the benchmark (100 tasks)
-ALL_TASKS = [
- "ETT_15T", "ETT_1D", "ETT_1H", "ETT_1W",
- "LOOP_SEATTLE_1D", "LOOP_SEATTLE_1H", "LOOP_SEATTLE_5T",
- "M_DENSE_1D", "M_DENSE_1H",
- "SZ_TAXI_15T", "SZ_TAXI_1H",
- "australian_tourism",
- "bizitobs_l2c_1H", "bizitobs_l2c_5T",
- "boomlet_1062", "boomlet_1209", "boomlet_1225", "boomlet_1230", "boomlet_1282",
- "boomlet_1487", "boomlet_1631", "boomlet_1676", "boomlet_1855", "boomlet_1975",
- "boomlet_2187", "boomlet_285", "boomlet_619", "boomlet_772", "boomlet_963",
- "ecdc_ili",
- "entsoe_15T", "entsoe_1H", "entsoe_30T",
- "epf_be", "epf_de", "epf_fr", "epf_np", "epf_pjm",
- "ercot_1D", "ercot_1H", "ercot_1M", "ercot_1W",
- "favorita_stores_1D", "favorita_stores_1M", "favorita_stores_1W",
- "favorita_transactions_1D", "favorita_transactions_1M", "favorita_transactions_1W",
- "fred_md_2025/cee", "fred_md_2025/macro",
- "fred_qd_2025/cee", "fred_qd_2025/macro",
- "gvar",
- "hermes",
- "hierarchical_sales_1D", "hierarchical_sales_1W",
- "hospital", "hospital_admissions_1D", "hospital_admissions_1W",
- "jena_weather_10T", "jena_weather_1D", "jena_weather_1H",
- "kdd_cup_2022_10T", "kdd_cup_2022_1D", "kdd_cup_2022_30T",
- "m5_1D", "m5_1M", "m5_1W",
- "proenfo_gfc12", "proenfo_gfc14", "proenfo_gfc17",
- "redset_15T", "redset_1H", "redset_5T",
- "restaurant",
- "rohlik_orders_1D", "rohlik_orders_1W", "rohlik_sales_1D", "rohlik_sales_1W",
- "rossmann_1D", "rossmann_1W",
- "solar_1D", "solar_1W", "solar_with_weather_15T", "solar_with_weather_1H",
- "uci_air_quality_1D", "uci_air_quality_1H",
- "uk_covid_nation_1D/cumulative", "uk_covid_nation_1D/new",
- "uk_covid_nation_1W/cumulative", "uk_covid_nation_1W/new",
- "uk_covid_utla_1D/new", "uk_covid_utla_1W/cumulative",
- "us_consumption_1M", "us_consumption_1Q", "us_consumption_1Y",
- "walmart",
- "world_co2_emissions", "world_life_expectancy", "world_tourism",
-]
-
-# Mini benchmark - representative subset (20 tasks)
-MINI_TASKS = [
- "jena_weather_1H",
- "M_DENSE_1D",
- "bizitobs_l2c_5T",
- "rohlik_orders_1D",
- "boomlet_1282",
- "rossmann_1D",
- "rossmann_1W",
- "boomlet_1676",
- "solar_with_weather_1H",
- "boomlet_619",
- "uci_air_quality_1H",
- "uk_covid_nation_1D/cumulative",
- "us_consumption_1Y",
- "epf_np",
- "world_co2_emissions",
- "ETT_15T",
- "ETT_1H",
- "proenfo_gfc14",
- "hospital_admissions_1D",
- "hospital_admissions_1W",
-]
-
-# Frequency-based groupings
-FREQUENCY_GROUPS = {
- "Sub-hourly": [
- # T (1 minute)
- "boomlet_1225", "boomlet_1282", "boomlet_285", "boomlet_619", "boomlet_772", "boomlet_963",
- # 5T (5 minutes)
- "LOOP_SEATTLE_5T", "bizitobs_l2c_5T", "redset_5T",
- "boomlet_1062", "boomlet_1209", "boomlet_1230", "boomlet_1487",
- # 10T (10 minutes)
- "jena_weather_10T", "kdd_cup_2022_10T",
- # 15T (15 minutes)
- "ETT_15T", "SZ_TAXI_15T", "entsoe_15T", "redset_15T", "solar_with_weather_15T",
- # 30T (30 minutes)
- "entsoe_30T", "kdd_cup_2022_30T", "boomlet_1631", "boomlet_1676",
- ],
- "Hourly": [
- "ETT_1H", "LOOP_SEATTLE_1H", "M_DENSE_1H", "SZ_TAXI_1H",
- "bizitobs_l2c_1H", "entsoe_1H", "ercot_1H",
- "epf_be", "epf_de", "epf_fr", "epf_np", "epf_pjm",
- "jena_weather_1H",
- "proenfo_gfc12", "proenfo_gfc14", "proenfo_gfc17",
- "redset_1H", "solar_with_weather_1H", "uci_air_quality_1H",
- "boomlet_1855", "boomlet_1975", "boomlet_2187",
- ],
- "Daily": [
- "ETT_1D", "LOOP_SEATTLE_1D", "M_DENSE_1D",
- "ercot_1D", "kdd_cup_2022_1D", "solar_1D",
- "favorita_stores_1D", "favorita_transactions_1D",
- "hierarchical_sales_1D", "m5_1D",
- "restaurant",
- "rohlik_orders_1D", "rohlik_sales_1D", "rossmann_1D",
- "jena_weather_1D", "uci_air_quality_1D",
- "hospital_admissions_1D",
- "uk_covid_nation_1D/cumulative", "uk_covid_nation_1D/new", "uk_covid_utla_1D/new",
- ],
- "Weekly": [
- "ETT_1W", "ercot_1W", "solar_1W",
- "favorita_stores_1W", "favorita_transactions_1W",
- "hierarchical_sales_1W", "m5_1W",
- "hermes", "walmart",
- "rohlik_orders_1W", "rohlik_sales_1W", "rossmann_1W",
- "ecdc_ili",
- "hospital_admissions_1W",
- "uk_covid_nation_1W/cumulative", "uk_covid_nation_1W/new", "uk_covid_utla_1W/cumulative",
- ],
- "Monthly+": [
- # Monthly
- "ercot_1M",
- "favorita_stores_1M", "favorita_transactions_1M", "m5_1M",
- "fred_md_2025/cee", "fred_md_2025/macro",
- "hospital",
- "us_consumption_1M",
- # Quarterly
- "australian_tourism", "gvar",
- "fred_qd_2025/cee", "fred_qd_2025/macro",
- "us_consumption_1Q",
- # Yearly
- "us_consumption_1Y",
- "world_co2_emissions", "world_life_expectancy", "world_tourism",
- ],
-}
-
-# Domain-based groupings
-DOMAIN_GROUPS = {
- "Energy": [
- "ETT_15T", "ETT_1D", "ETT_1H", "ETT_1W",
- "entsoe_15T", "entsoe_1H", "entsoe_30T",
- "epf_be", "epf_de", "epf_fr", "epf_np", "epf_pjm",
- "ercot_1D", "ercot_1H", "ercot_1M", "ercot_1W",
- "kdd_cup_2022_10T", "kdd_cup_2022_1D", "kdd_cup_2022_30T",
- "proenfo_gfc12", "proenfo_gfc14", "proenfo_gfc17",
- "solar_1D", "solar_1W", "solar_with_weather_15T", "solar_with_weather_1H",
- ],
- "Retail": [
- "favorita_stores_1D", "favorita_stores_1M", "favorita_stores_1W",
- "favorita_transactions_1D", "favorita_transactions_1M", "favorita_transactions_1W",
- "hermes",
- "hierarchical_sales_1D", "hierarchical_sales_1W",
- "m5_1D", "m5_1M", "m5_1W",
- "restaurant",
- "rohlik_orders_1D", "rohlik_orders_1W", "rohlik_sales_1D", "rohlik_sales_1W",
- "rossmann_1D", "rossmann_1W",
- "walmart",
- ],
- "Nature": [
- "jena_weather_10T", "jena_weather_1D", "jena_weather_1H",
- "uci_air_quality_1D", "uci_air_quality_1H",
- ],
- "Cloud": [
- "bizitobs_l2c_1H", "bizitobs_l2c_5T",
- "boomlet_1062", "boomlet_1209", "boomlet_1225", "boomlet_1230", "boomlet_1282",
- "boomlet_1487", "boomlet_1631", "boomlet_1676", "boomlet_1855", "boomlet_1975",
- "boomlet_2187", "boomlet_285", "boomlet_619", "boomlet_772", "boomlet_963",
- "redset_15T", "redset_1H", "redset_5T",
- ],
- "Health": [
- "ecdc_ili",
- "hospital", "hospital_admissions_1D", "hospital_admissions_1W",
- "uk_covid_nation_1D/cumulative", "uk_covid_nation_1D/new",
- "uk_covid_nation_1W/cumulative", "uk_covid_nation_1W/new",
- "uk_covid_utla_1D/new", "uk_covid_utla_1W/cumulative",
- ],
- "Econ": [
- "australian_tourism",
- "fred_md_2025/cee", "fred_md_2025/macro",
- "fred_qd_2025/cee", "fred_qd_2025/macro",
- "gvar",
- "us_consumption_1M", "us_consumption_1Q", "us_consumption_1Y",
- "world_co2_emissions", "world_life_expectancy", "world_tourism",
- ],
- "Mobility": [
- "LOOP_SEATTLE_1D", "LOOP_SEATTLE_1H", "LOOP_SEATTLE_5T",
- "M_DENSE_1D", "M_DENSE_1H",
- "SZ_TAXI_15T", "SZ_TAXI_1H",
- ],
-}
-
-
-def get_task_group(group_type: str, group_value: str | None = None) -> list[str]:
- """Get the list of tasks for a given group type and value.
-
- Args:
- group_type: One of "full", "mini", "frequency", "domain"
- group_value: Required for "frequency" and "domain" types
-
- Returns:
- List of task names belonging to the group
- """
- if group_type == "full":
- return ALL_TASKS
- elif group_type == "mini":
- return MINI_TASKS
- elif group_type == "frequency":
- if group_value is None:
- raise ValueError("group_value required for frequency grouping")
- return FREQUENCY_GROUPS[group_value]
- elif group_type == "domain":
- if group_value is None:
- raise ValueError("group_value required for domain grouping")
- return DOMAIN_GROUPS[group_value]
- else:
- raise ValueError(f"Unknown group_type: {group_type}")
diff --git a/src/utils.py b/src/utils.py
deleted file mode 100644
index 0f7777a9fe91e9e50f4fa0b240d8cb1aa1c945a5..0000000000000000000000000000000000000000
--- a/src/utils.py
+++ /dev/null
@@ -1,374 +0,0 @@
-import altair as alt
-import fev
-import pandas as pd
-import pandas.io.formats.style
-
-# Color constants - all colors defined in one place
-
-COLORS = {
- "dl_text": "#5A7FA5",
- "st_text": "#A5795A",
- # "st_text": "#666666",
- "bar_fill": "#8d5eb7",
- "error_bar": "#222222",
- "point": "#111111",
- "text_white": "white",
- "text_black": "black",
- "text_default": "#111",
- "gold": "#F7D36B",
- "silver": "#E5E7EB",
- "bronze": "#E6B089",
- "leakage_impute": "#3B82A0",
- "failure_impute": "#E07B39",
-}
-HEATMAP_COLOR_SCHEME = "purplegreen"
-
-# Model configuration: (url, org, zero_shot, model_type)
-MODEL_CONFIG = {
- # Chronos Models
- "chronos_tiny": ("amazon/chronos-t5-tiny", "AWS", True, "DL"),
- "chronos_mini": ("amazon/chronos-t5-mini", "AWS", True, "DL"),
- "chronos_small": ("amazon/chronos-t5-small", "AWS", True, "DL"),
- "chronos_base": ("amazon/chronos-t5-base", "AWS", True, "DL"),
- "chronos_large": ("amazon/chronos-t5-large", "AWS", True, "DL"),
- "chronos_bolt_tiny": ("amazon/chronos-bolt-tiny", "AWS", True, "DL"),
- "chronos_bolt_mini": ("amazon/chronos-bolt-mini", "AWS", True, "DL"),
- "chronos_bolt_small": ("amazon/chronos-bolt-small", "AWS", True, "DL"),
- "chronos_bolt_base": ("amazon/chronos-bolt-base", "AWS", True, "DL"),
- "chronos-bolt": ("amazon/chronos-bolt-base", "AWS", True, "DL"),
- "chronos-2": ("amazon/chronos-2", "AWS", True, "DL"),
- # Moirai Models
- "moirai_large": ("Salesforce/moirai-1.1-R-large", "Salesforce", True, "DL"),
- "moirai_base": ("Salesforce/moirai-1.1-R-base", "Salesforce", True, "DL"),
- "moirai_small": ("Salesforce/moirai-1.1-R-small", "Salesforce", True, "DL"),
- "moirai-2.0": ("Salesforce/moirai-2.0-R-small", "Salesforce", True, "DL"),
- # TimesFM Models
- "timesfm": ("google/timesfm-1.0-200m-pytorch", "Google", True, "DL"),
- "timesfm-2.0": ("google/timesfm-2.0-500m-pytorch", "Google", True, "DL"),
- "timesfm-2.5": ("google/timesfm-2.5-200m-pytorch", "Google", True, "DL"),
- # Toto Models
- "toto-1.0": ("Datadog/Toto-Open-Base-1.0", "Datadog", True, "DL"),
- # Other Models
- "tirex": ("NX-AI/TiRex", "NX-AI", True, "DL"),
- "tabpfn-ts": ("Prior-Labs/TabPFN-v2-reg", "Prior Labs", True, "DL"),
- "sundial-base": ("thuml/sundial-base-128m", "Tsinghua University", True, "DL"),
- "ttm-r2": ("ibm-granite/granite-timeseries-ttm-r2", "IBM", True, "DL"),
- # Task-specific models
- "stat. ensemble": (
- "https://nixtlaverse.nixtla.io/statsforecast/",
- "—",
- False,
- "ST",
- ),
- "autoarima": ("https://nixtlaverse.nixtla.io/statsforecast/", "—", False, "ST"),
- "autotheta": ("https://nixtlaverse.nixtla.io/statsforecast/", "—", False, "ST"),
- "autoets": ("https://nixtlaverse.nixtla.io/statsforecast/", "—", False, "ST"),
- "seasonalnaive": ("https://nixtlaverse.nixtla.io/statsforecast/", "—", False, "ST"),
- "seasonal naive": (
- "https://nixtlaverse.nixtla.io/statsforecast/",
- "—",
- False,
- "ST",
- ),
- "drift": ("https://nixtlaverse.nixtla.io/statsforecast/", "—", False, "ST"),
- "naive": ("https://nixtlaverse.nixtla.io/statsforecast/", "—", False, "ST"),
-}
-
-
-ALL_METRICS = {
- "SQL": (
- "SQL: Scaled Quantile Loss",
- "The [Scaled Quantile Loss (SQL)](https://auto.gluon.ai/dev/tutorials/timeseries/forecasting-metrics.html#autogluon.timeseries.metrics.SQL) is a **scale-invariant** metric for evaluating **probabilistic** forecasts.",
- ),
- "MASE": (
- "MASE: Mean Absolute Scaled Error",
- "The [Mean Absolute Scaled Error (MASE)](https://auto.gluon.ai/dev/tutorials/timeseries/forecasting-metrics.html#autogluon.timeseries.metrics.MASE) is a **scale-invariant** metric for evaluating **point** forecasts.",
- ),
- "WQL": (
- "WQL: Weighted Quantile Loss",
- "The [Weighted Quantile Loss (WQL)](https://auto.gluon.ai/dev/tutorials/timeseries/forecasting-metrics.html#autogluon.timeseries.metrics.WQL), is a **scale-dependent** metric for evaluating **probabilistic** forecasts.",
- ),
- "WAPE": (
- "WAPE: Weighted Absolute Percentage Error",
- "The [Weighted Absolute Percentage Error (WAPE)](https://auto.gluon.ai/dev/tutorials/timeseries/forecasting-metrics.html#autogluon.timeseries.metrics.WAPE) is a **scale-dependent** metric for evaluating **point** forecasts.",
- ),
-}
-
-
-def format_metric_name(metric_name: str):
- return ALL_METRICS[metric_name][0]
-
-
-def get_metric_description(metric_name: str):
- return ALL_METRICS[metric_name][1]
-
-
-def get_model_link(model_name):
- config = MODEL_CONFIG.get(model_name.lower())
- if not config or not config[0]:
- return ""
- url = config[0]
- return url if url.startswith("https:") else f"https://huggingface.co/{url}"
-
-
-def get_model_organization(model_name):
- config = MODEL_CONFIG.get(model_name.lower())
- return config[1] if config else "—"
-
-
-def get_zero_shot_status(model_name):
- config = MODEL_CONFIG.get(model_name.lower())
- return "✓" if config and config[2] else "×"
-
-
-def get_model_type(model_name):
- config = MODEL_CONFIG.get(model_name.lower())
- return config[3] if config else "—"
-
-
-def highlight_model_type_color(cell):
- config = MODEL_CONFIG.get(cell.lower())
- if config:
- color = COLORS["dl_text"] if config[3] == "DL" else COLORS["st_text"]
- return f"font-weight: bold; color: {color}"
- return "font-weight: bold"
-
-
-def format_leaderboard(df: pd.DataFrame):
- df = df.copy()
- df["skill_score"] = df["skill_score"].round(1)
- df["win_rate"] = df["win_rate"].round(1)
- df["zero_shot"] = df["model_name"].apply(get_zero_shot_status)
- # Format leakage column: convert to int for all models, 0 for non-zero-shot
- df["training_corpus_overlap"] = df.apply(
- lambda row: int(round(row["training_corpus_overlap"] * 100)) if row["zero_shot"] == "✓" else 0,
- axis=1,
- )
- df["link"] = df["model_name"].apply(get_model_link)
- df["org"] = df["model_name"].apply(get_model_organization)
- df = df[
- [
- "model_name",
- "win_rate",
- "skill_score",
- "median_inference_time_s_per100",
- "training_corpus_overlap",
- "num_failures",
- "zero_shot",
- "org",
- "link",
- ]
- ]
- return (
- df.style.map(highlight_model_type_color, subset=["model_name"])
- .map(lambda x: "font-weight: bold", subset=["zero_shot"])
- .apply(
- lambda x: ["background-color: #f8f9fa" if i % 2 == 1 else "" for i in range(len(x))],
- axis=0,
- )
- )
-
-
-def construct_bar_chart(df: pd.DataFrame, col: str, metric_name: str):
- label = "Skill Score" if col == "skill_score" else "Win Rate"
-
- tooltip = [
- alt.Tooltip("model_name:N"),
- alt.Tooltip(f"{col}:Q", format=".2f"),
- alt.Tooltip(f"{col}_lower:Q", title="95% CI Lower", format=".2f"),
- alt.Tooltip(f"{col}_upper:Q", title="95% CI Upper", format=".2f"),
- ]
-
- base_encode = {
- "y": alt.Y("model_name:N", title="Forecasting Model", sort=None),
- "tooltip": tooltip,
- }
-
- bars = (
- alt.Chart(df)
- .mark_bar(color=COLORS["bar_fill"], cornerRadius=4)
- .encode(
- x=alt.X(f"{col}:Q", title=f"{label} (%)", scale=alt.Scale(zero=False)),
- **base_encode,
- )
- )
-
- error_bars = (
- alt.Chart(df)
- .mark_errorbar(ticks={"height": 5}, color=COLORS["error_bar"])
- .encode(
- y=alt.Y("model_name:N", title=None, sort=None),
- x=alt.X(f"{col}_lower:Q", title=f"{label} (%)"),
- x2=alt.X2(f"{col}_upper:Q"),
- tooltip=tooltip,
- )
- )
-
- points = (
- alt.Chart(df)
- .mark_point(filled=True, color=COLORS["point"])
- .encode(x=alt.X(f"{col}:Q", title=f"{label} (%)"), **base_encode)
- )
-
- return (
- (bars + error_bars + points)
- .properties(height=500, title=f"{label} ({metric_name}) with 95% CIs")
- .configure_title(fontSize=16)
- )
-
-
-def construct_pairwise_chart(df: pd.DataFrame, col: str, metric_name: str):
- config = {
- "win_rate": ("Win Rate", [0, 100], 50, f"abs(datum.{col} - 50) > 30"),
- "skill_score": ("Skill Score", [-15, 15], 0, f"abs(datum.{col}) > 10"),
- }
- cbar_label, domain, domain_mid, text_condition = config[col]
-
- df = df.copy()
- for c in [col, f"{col}_lower", f"{col}_upper"]:
- df[c] *= 100
-
- model_order = df.groupby("model_1")[col].mean().sort_values(ascending=False).index.tolist()
-
- tooltip = [
- alt.Tooltip("model_1:N", title="Model 1"),
- alt.Tooltip("model_2:N", title="Model 2"),
- alt.Tooltip(f"{col}:Q", title=cbar_label.split(" ")[0], format=".1f"),
- alt.Tooltip(f"{col}_lower:Q", title="95% CI Lower", format=".1f"),
- alt.Tooltip(f"{col}_upper:Q", title="95% CI Upper", format=".1f"),
- ]
-
- base = alt.Chart(df).encode(
- x=alt.X(
- "model_2:N",
- sort=model_order,
- title="Model 2",
- axis=alt.Axis(orient="top", labelAngle=-90),
- ),
- y=alt.Y("model_1:N", sort=model_order, title="Model 1"),
- )
-
- heatmap = base.mark_rect().encode(
- color=alt.Color(
- f"{col}:Q",
- legend=None,
- scale=alt.Scale(
- scheme=HEATMAP_COLOR_SCHEME,
- domain=domain,
- domainMid=domain_mid,
- clamp=True,
- ),
- ),
- tooltip=tooltip,
- )
-
- text_main = base.mark_text(dy=-8, fontSize=8, baseline="top", yOffset=5).encode(
- text=alt.Text(f"{col}:Q", format=".1f"),
- color=alt.condition(
- text_condition,
- alt.value(COLORS["text_white"]),
- alt.value(COLORS["text_black"]),
- ),
- tooltip=tooltip,
- )
-
- return (
- (heatmap + text_main)
- .properties(
- height=550,
- title={
- "text": f"Pairwise {cbar_label} ({metric_name}) with 95% CIs",
- "fontSize": 16,
- },
- )
- .configure_axis(labelFontSize=11, titleFontSize=13, titleFontWeight="bold")
- .resolve_scale(color="independent")
- )
-
-
-def construct_pivot_table_from_df(errors: pd.DataFrame, metric_name: str) -> pd.io.formats.style.Styler:
- """Construct styled pivot table from precomputed DataFrame."""
-
- def highlight_by_position(styler):
- rank_colors = {1: COLORS["gold"], 2: COLORS["silver"], 3: COLORS["bronze"]}
-
- for row_idx in errors.index:
- row_ranks = errors.loc[row_idx].rank(method="min")
- for col_idx in errors.columns:
- rank = row_ranks[col_idx]
- style_parts = []
-
- # Rank background colors
- if rank <= 3:
- style_parts.append(f"background-color: {rank_colors[rank]}")
- else:
- style_parts.append(f"color: {COLORS['text_default']}")
-
- if style_parts:
- styler = styler.map(
- lambda x, s="; ".join(style_parts): s,
- subset=pd.IndexSlice[row_idx:row_idx, col_idx:col_idx],
- )
- return styler
-
- return highlight_by_position(errors.style).format(precision=3)
-
-
-def construct_pivot_table(
- summaries: pd.DataFrame,
- metric_name: str,
- baseline_model: str,
- leakage_imputation_model: str,
-) -> pd.io.formats.style.Styler:
- errors = fev.pivot_table(summaries=summaries, metric_column=metric_name, task_columns=["task_name"])
- train_overlap = (
- fev.pivot_table(
- summaries=summaries,
- metric_column="trained_on_this_dataset",
- task_columns=["task_name"],
- )
- .fillna(False)
- .astype(bool)
- )
-
- is_imputed_baseline = errors.isna()
- is_leakage_imputed = train_overlap
-
- # Handle imputations
- errors = errors.mask(train_overlap, errors[leakage_imputation_model], axis=0)
- for col in errors.columns:
- if col != baseline_model:
- errors[col] = errors[col].fillna(errors[baseline_model])
-
- errors = errors[errors.rank(axis=1).mean().sort_values().index]
- errors.index.rename("Task name", inplace=True)
-
- def highlight_by_position(styler):
- rank_colors = {1: COLORS["gold"], 2: COLORS["silver"], 3: COLORS["bronze"]}
-
- for row_idx in errors.index:
- row_ranks = errors.loc[row_idx].rank(method="min")
- for col_idx in errors.columns:
- rank = row_ranks[col_idx]
- style_parts = []
-
- # Rank background colors
- if rank <= 3:
- style_parts.append(f"background-color: {rank_colors[rank]}")
-
- # Imputation text colors
- if is_leakage_imputed.loc[row_idx, col_idx]:
- style_parts.append(f"color: {COLORS['leakage_impute']}")
- elif is_imputed_baseline.loc[row_idx, col_idx]:
- style_parts.append(f"color: {COLORS['failure_impute']}")
- elif not style_parts or (len(style_parts) == 1 and "font-weight" in style_parts[0]):
- style_parts.append(f"color: {COLORS['text_default']}")
-
- if style_parts:
- styler = styler.map(
- lambda x, s="; ".join(style_parts): s,
- subset=pd.IndexSlice[row_idx:row_idx, col_idx:col_idx],
- )
- return styler
-
- return highlight_by_position(errors.style).format(precision=3)
diff --git a/tables/domain_cloud/leaderboard_MASE.csv b/tables/domain_cloud/leaderboard_MASE.csv
deleted file mode 100644
index d8258af96f141a41570aa8f1c84cdc5491c72052..0000000000000000000000000000000000000000
--- a/tables/domain_cloud/leaderboard_MASE.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Toto-1.0,91.42857142857143,41.8883400084654,0.0,45.868307151375,0.0,0.0
-Chronos-2,89.64285714285714,42.5157996441094,0.0,1.18621670825,0.0,0.0
-TimesFM-2.5,82.85714285714286,40.26605685743614,0.0,6.4447616408988475,0.0,0.0
-TiRex,77.14285714285714,38.09940067233815,0.0,0.20031914146825397,0.0,0.0
-Moirai-2.0,65.00000000000001,35.579899495667256,0.0,0.36445902017857146,0.1,0.0
-Sundial-Base,61.07142857142858,34.44493255866505,0.0,7.874095355196429,0.0,0.0
-Chronos-Bolt,59.285714285714285,30.890375999745544,0.0,0.21195593629285714,0.0,0.0
-TabPFN-TS,57.857142857142854,31.63477113942893,0.0,187.1612375475248,0.0,0.0
-Stat. Ensemble,33.75,10.28649321258931,0.0,117.23392411285715,0.0,15.0
-AutoARIMA,32.32142857142858,11.154754181413495,0.0,17.96621433673913,0.0,15.0
-AutoTheta,27.500000000000004,6.832233342669413,0.0,3.978930596261481,0.0,0.0
-AutoETS,24.107142857142858,9.00813293024486,0.0,2.879931537857143,0.0,15.0
-Naive,23.214285714285715,-25.50199780067157,0.0,0.40027213541999274,0.0,0.0
-Seasonal Naive,15.892857142857144,0.0,0.0,0.43848143432692305,0.0,0.0
-Drift,8.928571428571429,-32.85429096552939,0.0,0.4187055400961539,0.0,0.0
diff --git a/tables/domain_cloud/leaderboard_SQL.csv b/tables/domain_cloud/leaderboard_SQL.csv
deleted file mode 100644
index 29e578e2e0323a149a309b46650bc43f82f58ee6..0000000000000000000000000000000000000000
--- a/tables/domain_cloud/leaderboard_SQL.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Toto-1.0,91.78571428571428,63.05871546601058,0.0,45.868307151375,0.0,0.0
-Chronos-2,91.42857142857143,63.92789671191335,0.0,1.18621670825,0.0,0.0
-TimesFM-2.5,83.57142857142857,61.98663044796851,0.0,6.4447616408988475,0.0,0.0
-TiRex,80.35714285714285,60.87156591539495,0.0,0.20031914146825397,0.0,0.0
-Moirai-2.0,68.21428571428572,58.41610987284718,0.0,0.36445902017857146,0.1,0.0
-Sundial-Base,59.64285714285715,56.647735223836015,0.0,7.874095355196429,0.0,0.0
-Chronos-Bolt,58.57142857142858,54.85929055283013,0.0,0.21195593629285714,0.0,0.0
-TabPFN-TS,57.50000000000001,53.05789136035014,0.0,187.1612375475248,0.0,0.0
-AutoARIMA,38.03571428571428,32.58752067086065,0.0,17.96621433673913,0.0,15.0
-Stat. Ensemble,34.82142857142856,20.1052436267542,0.0,117.23392411285715,0.0,15.0
-AutoETS,28.035714285714285,-26.853793211441058,0.0,2.879931537857143,0.0,15.0
-AutoTheta,22.142857142857146,-2.1145171067117996,0.0,3.978930596261481,0.0,0.0
-Seasonal Naive,19.107142857142854,0.0,0.0,0.43848143432692305,0.0,0.0
-Naive,13.571428571428573,-102.14853969808834,0.0,0.40027213541999274,0.0,0.0
-Drift,3.214285714285715,-110.2431874466197,0.0,0.4187055400961539,0.0,0.0
diff --git a/tables/domain_cloud/leaderboard_WAPE.csv b/tables/domain_cloud/leaderboard_WAPE.csv
deleted file mode 100644
index eec1c903a209835f36ed7d35dcf4684fe5178555..0000000000000000000000000000000000000000
--- a/tables/domain_cloud/leaderboard_WAPE.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,91.78571428571428,50.572763239812836,0.0,1.18621670825,0.0,0.0
-Toto-1.0,91.07142857142858,47.121114882947566,0.0,45.868307151375,0.0,0.0
-TimesFM-2.5,81.42857142857142,46.247719637805126,0.0,6.4447616408988475,0.0,0.0
-TiRex,77.49999999999999,44.52063533547439,0.0,0.20031914146825397,0.0,0.0
-Moirai-2.0,67.5,42.792548583451826,0.0,0.36445902017857146,0.1,0.0
-TabPFN-TS,66.78571428571429,43.22422155533027,0.0,187.1612375475248,0.0,0.0
-Chronos-Bolt,60.71428571428571,39.893668788246494,0.0,0.21195593629285714,0.0,0.0
-Sundial-Base,60.71428571428571,41.96635843416393,0.0,7.874095355196429,0.0,0.0
-Stat. Ensemble,32.32142857142857,15.58065226385924,0.0,117.23392411285715,0.0,15.0
-AutoARIMA,28.392857142857142,14.643401272886948,0.0,17.96621433673913,0.0,15.0
-AutoETS,23.75,5.6618608592632125,0.0,2.879931537857143,0.0,15.0
-AutoTheta,23.57142857142857,12.660865629460227,0.0,3.978930596261481,0.0,0.0
-Naive,23.21428571428571,4.49837332329478,0.0,0.40027213541999274,0.0,0.0
-Seasonal Naive,12.321428571428573,0.0,0.0,0.43848143432692305,0.0,0.0
-Drift,8.928571428571429,-1.7537851144645122,0.0,0.4187055400961539,0.0,0.0
diff --git a/tables/domain_cloud/leaderboard_WQL.csv b/tables/domain_cloud/leaderboard_WQL.csv
deleted file mode 100644
index a6c14636f7927ce24469253ce4f1eae74c16b4f7..0000000000000000000000000000000000000000
--- a/tables/domain_cloud/leaderboard_WQL.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,92.5,66.94397676110452,0.0,1.18621670825,0.0,0.0
-Toto-1.0,90.35714285714286,64.45690397421868,0.0,45.868307151375,0.0,0.0
-TimesFM-2.5,82.14285714285712,63.753748722726,0.0,6.4447616408988475,0.0,0.0
-TiRex,80.71428571428571,62.74382048051918,0.0,0.20031914146825397,0.0,0.0
-Moirai-2.0,68.92857142857143,61.08750955081813,0.0,0.36445902017857146,0.1,0.0
-TabPFN-TS,65.00000000000001,59.171399643395425,0.0,187.1612375475248,0.0,0.0
-Chronos-Bolt,60.357142857142854,58.158162956775406,0.0,0.21195593629285714,0.0,0.0
-Sundial-Base,58.928571428571445,59.213728716592804,0.0,7.874095355196429,0.0,0.0
-AutoARIMA,36.25,33.35224855510223,0.0,17.96621433673913,0.0,15.0
-Stat. Ensemble,32.67857142857142,20.842955409190168,0.0,117.23392411285715,0.0,15.0
-AutoETS,24.82142857142857,-39.99504769759261,0.0,2.879931537857143,0.0,15.0
-AutoTheta,22.142857142857146,7.361982670066736,0.0,3.978930596261481,0.0,0.0
-Seasonal Naive,18.035714285714285,0.0,0.0,0.43848143432692305,0.0,0.0
-Naive,13.214285714285715,-64.97889014234586,0.0,0.40027213541999274,0.0,0.0
-Drift,3.9285714285714293,-71.7471743876533,0.0,0.4187055400961539,0.0,0.0
diff --git a/tables/domain_cloud/pairwise_MASE.csv b/tables/domain_cloud/pairwise_MASE.csv
deleted file mode 100644
index 07c4b8fd72cf2537cbdfe12a1cbf3d43aec91c4b..0000000000000000000000000000000000000000
--- a/tables/domain_cloud/pairwise_MASE.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,Chronos-2,0.65,0.45,0.85,-0.011,-0.063,0.027
-Toto-1.0,TimesFM-2.5,0.7,0.5,0.9,0.027,-0.02,0.072
-Toto-1.0,TiRex,0.85,0.7,1.0,0.061,0.027,0.114
-Toto-1.0,Moirai-2.0,0.95,0.85,1.0,0.098,0.053,0.164
-Toto-1.0,Sundial-Base,0.9,0.75,1.0,0.114,0.037,0.182
-Toto-1.0,Chronos-Bolt,0.9,0.75,1.0,0.159,0.094,0.224
-Toto-1.0,TabPFN-TS,0.85,0.65,1.0,0.15,0.075,0.231
-Toto-1.0,Stat. Ensemble,1.0,1.0,1.0,0.352,0.266,0.45
-Toto-1.0,AutoARIMA,1.0,1.0,1.0,0.346,0.264,0.448
-Toto-1.0,AutoTheta,1.0,1.0,1.0,0.376,0.295,0.468
-Toto-1.0,AutoETS,1.0,1.0,1.0,0.361,0.267,0.469
-Toto-1.0,Naive,1.0,1.0,1.0,0.537,0.377,0.689
-Toto-1.0,Seasonal Naive,1.0,1.0,1.0,0.419,0.323,0.529
-Toto-1.0,Drift,1.0,1.0,1.0,0.563,0.414,0.702
-Chronos-2,Toto-1.0,0.35,0.15,0.55,0.011,-0.028,0.059
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TimesFM-2.5,0.7,0.5,0.9,0.038,0.009,0.071
-Chronos-2,TiRex,0.75,0.55,0.95,0.071,0.022,0.128
-Chronos-2,Moirai-2.0,1.0,1.0,1.0,0.108,0.053,0.168
-Chronos-2,Sundial-Base,0.9,0.75,1.0,0.123,0.07,0.182
-Chronos-2,Chronos-Bolt,0.95,0.85,1.0,0.168,0.101,0.231
-Chronos-2,TabPFN-TS,0.9,0.75,1.0,0.159,0.092,0.234
-Chronos-2,Stat. Ensemble,1.0,1.0,1.0,0.359,0.272,0.454
-Chronos-2,AutoARIMA,1.0,1.0,1.0,0.353,0.266,0.453
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.383,0.296,0.47
-Chronos-2,AutoETS,1.0,1.0,1.0,0.368,0.281,0.468
-Chronos-2,Naive,1.0,1.0,1.0,0.542,0.386,0.689
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.425,0.331,0.534
-Chronos-2,Drift,1.0,1.0,1.0,0.567,0.421,0.704
-TimesFM-2.5,Toto-1.0,0.3,0.1,0.5,-0.028,-0.078,0.02
-TimesFM-2.5,Chronos-2,0.3,0.1,0.5,-0.039,-0.077,-0.009
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TiRex,0.65,0.45,0.85,0.035,-0.0,0.077
-TimesFM-2.5,Moirai-2.0,0.9,0.75,1.0,0.073,0.035,0.115
-TimesFM-2.5,Sundial-Base,0.85,0.7,1.0,0.089,0.041,0.137
-TimesFM-2.5,Chronos-Bolt,0.85,0.65,1.0,0.136,0.068,0.199
-TimesFM-2.5,TabPFN-TS,0.75,0.55,0.9,0.126,0.059,0.207
-TimesFM-2.5,Stat. Ensemble,1.0,1.0,1.0,0.334,0.261,0.415
-TimesFM-2.5,AutoARIMA,1.0,1.0,1.0,0.328,0.254,0.415
-TimesFM-2.5,AutoTheta,1.0,1.0,1.0,0.359,0.283,0.436
-TimesFM-2.5,AutoETS,1.0,1.0,1.0,0.344,0.268,0.433
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.524,0.366,0.676
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.403,0.318,0.501
-TimesFM-2.5,Drift,1.0,1.0,1.0,0.55,0.402,0.69
-TiRex,Toto-1.0,0.15,0.0,0.3,-0.065,-0.129,-0.028
-TiRex,Chronos-2,0.25,0.05,0.45,-0.077,-0.146,-0.022
-TiRex,TimesFM-2.5,0.35,0.15,0.55,-0.036,-0.083,0.0
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,Moirai-2.0,0.8,0.6,0.95,0.039,0.014,0.065
-TiRex,Sundial-Base,0.85,0.7,1.0,0.056,-0.026,0.115
-TiRex,Chronos-Bolt,0.75,0.55,0.9,0.104,0.038,0.166
-TiRex,TabPFN-TS,0.7,0.5,0.9,0.095,0.018,0.172
-TiRex,Stat. Ensemble,1.0,1.0,1.0,0.31,0.233,0.392
-TiRex,AutoARIMA,1.0,1.0,1.0,0.303,0.231,0.382
-TiRex,AutoTheta,1.0,1.0,1.0,0.336,0.263,0.412
-TiRex,AutoETS,1.0,1.0,1.0,0.32,0.235,0.41
-TiRex,Naive,0.95,0.85,1.0,0.507,0.342,0.658
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.381,0.295,0.476
-TiRex,Drift,1.0,1.0,1.0,0.534,0.385,0.676
-Moirai-2.0,Toto-1.0,0.05,0.0,0.15,-0.109,-0.196,-0.056
-Moirai-2.0,Chronos-2,0.0,0.0,0.0,-0.121,-0.202,-0.056
-Moirai-2.0,TimesFM-2.5,0.1,0.0,0.25,-0.078,-0.13,-0.036
-Moirai-2.0,TiRex,0.2,0.05,0.4,-0.041,-0.07,-0.015
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Sundial-Base,0.8,0.6,0.95,0.017,-0.056,0.065
-Moirai-2.0,Chronos-Bolt,0.65,0.425,0.825,0.068,-0.002,0.135
-Moirai-2.0,TabPFN-TS,0.55,0.35,0.75,0.058,-0.02,0.138
-Moirai-2.0,Stat. Ensemble,0.95,0.85,1.0,0.282,0.201,0.366
-Moirai-2.0,AutoARIMA,0.95,0.85,1.0,0.275,0.203,0.354
-Moirai-2.0,AutoTheta,1.0,1.0,1.0,0.309,0.237,0.386
-Moirai-2.0,AutoETS,0.95,0.85,1.0,0.292,0.208,0.382
-Moirai-2.0,Naive,0.95,0.85,1.0,0.487,0.322,0.638
-Moirai-2.0,Seasonal Naive,0.95,0.85,1.0,0.356,0.268,0.451
-Moirai-2.0,Drift,1.0,1.0,1.0,0.515,0.369,0.657
-Sundial-Base,Toto-1.0,0.1,0.0,0.25,-0.128,-0.223,-0.038
-Sundial-Base,Chronos-2,0.1,0.0,0.25,-0.14,-0.222,-0.075
-Sundial-Base,TimesFM-2.5,0.15,0.0,0.3,-0.097,-0.159,-0.043
-Sundial-Base,TiRex,0.15,0.0,0.3,-0.059,-0.129,0.025
-Sundial-Base,Moirai-2.0,0.2,0.05,0.4,-0.018,-0.069,0.053
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Chronos-Bolt,0.5,0.25,0.7,0.051,-0.023,0.126
-Sundial-Base,TabPFN-TS,0.55,0.35,0.75,0.041,-0.034,0.11
-Sundial-Base,Stat. Ensemble,0.95,0.85,1.0,0.269,0.182,0.361
-Sundial-Base,AutoARIMA,0.95,0.85,1.0,0.262,0.175,0.353
-Sundial-Base,AutoTheta,1.0,1.0,1.0,0.296,0.22,0.377
-Sundial-Base,AutoETS,0.95,0.85,1.0,0.28,0.184,0.379
-Sundial-Base,Naive,1.0,1.0,1.0,0.478,0.322,0.626
-Sundial-Base,Seasonal Naive,0.95,0.85,1.0,0.344,0.246,0.453
-Sundial-Base,Drift,1.0,1.0,1.0,0.507,0.358,0.646
-Chronos-Bolt,Toto-1.0,0.1,0.0,0.25,-0.189,-0.288,-0.104
-Chronos-Bolt,Chronos-2,0.05,0.0,0.15,-0.202,-0.3,-0.112
-Chronos-Bolt,TimesFM-2.5,0.15,0.0,0.35,-0.157,-0.248,-0.073
-Chronos-Bolt,TiRex,0.25,0.1,0.45,-0.116,-0.198,-0.039
-Chronos-Bolt,Moirai-2.0,0.35,0.175,0.575,-0.073,-0.156,0.002
-Chronos-Bolt,Sundial-Base,0.5,0.3,0.75,-0.054,-0.144,0.022
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,TabPFN-TS,0.5,0.3,0.7,-0.011,-0.128,0.086
-Chronos-Bolt,Stat. Ensemble,0.9,0.75,1.0,0.23,0.124,0.336
-Chronos-Bolt,AutoARIMA,0.9,0.75,1.0,0.222,0.121,0.337
-Chronos-Bolt,AutoTheta,0.95,0.85,1.0,0.258,0.171,0.353
-Chronos-Bolt,AutoETS,0.85,0.7,1.0,0.24,0.131,0.358
-Chronos-Bolt,Naive,0.95,0.85,1.0,0.449,0.297,0.601
-Chronos-Bolt,Seasonal Naive,0.85,0.7,1.0,0.309,0.185,0.434
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.48,0.341,0.624
-TabPFN-TS,Toto-1.0,0.15,0.0,0.35,-0.176,-0.301,-0.081
-TabPFN-TS,Chronos-2,0.1,0.0,0.25,-0.189,-0.305,-0.102
-TabPFN-TS,TimesFM-2.5,0.25,0.1,0.45,-0.144,-0.261,-0.063
-TabPFN-TS,TiRex,0.3,0.1,0.5,-0.104,-0.208,-0.019
-TabPFN-TS,Moirai-2.0,0.45,0.25,0.65,-0.061,-0.161,0.019
-TabPFN-TS,Sundial-Base,0.45,0.25,0.65,-0.043,-0.123,0.033
-TabPFN-TS,Chronos-Bolt,0.5,0.3,0.7,0.011,-0.095,0.114
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Stat. Ensemble,0.8,0.6,0.95,0.238,0.095,0.36
-TabPFN-TS,AutoARIMA,0.8,0.6,0.95,0.231,0.096,0.351
-TabPFN-TS,AutoTheta,0.75,0.55,0.95,0.266,0.154,0.375
-TabPFN-TS,AutoETS,0.85,0.7,1.0,0.249,0.114,0.367
-TabPFN-TS,Naive,0.85,0.65,1.0,0.455,0.285,0.6
-TabPFN-TS,Seasonal Naive,0.9,0.75,1.0,0.316,0.178,0.443
-TabPFN-TS,Drift,0.95,0.85,1.0,0.485,0.326,0.621
-Stat. Ensemble,Toto-1.0,0.0,0.0,0.0,-0.544,-0.817,-0.362
-Stat. Ensemble,Chronos-2,0.0,0.0,0.0,-0.561,-0.833,-0.374
-Stat. Ensemble,TimesFM-2.5,0.0,0.0,0.0,-0.502,-0.711,-0.353
-Stat. Ensemble,TiRex,0.0,0.0,0.0,-0.449,-0.646,-0.304
-Stat. Ensemble,Moirai-2.0,0.05,0.0,0.15,-0.393,-0.578,-0.251
-Stat. Ensemble,Sundial-Base,0.05,0.0,0.15,-0.369,-0.564,-0.223
-Stat. Ensemble,Chronos-Bolt,0.1,0.0,0.25,-0.298,-0.505,-0.141
-Stat. Ensemble,TabPFN-TS,0.2,0.05,0.4,-0.312,-0.562,-0.106
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoARIMA,0.475,0.274,0.675,-0.01,-0.058,0.025
-Stat. Ensemble,AutoTheta,0.75,0.55,0.95,0.037,-0.013,0.087
-Stat. Ensemble,AutoETS,0.775,0.6,0.95,0.014,-0.091,0.087
-Stat. Ensemble,Naive,0.75,0.55,0.95,0.285,0.06,0.51
-Stat. Ensemble,Seasonal Naive,0.775,0.624,0.925,0.103,-0.009,0.19
-Stat. Ensemble,Drift,0.8,0.6,0.95,0.325,0.11,0.536
-AutoARIMA,Toto-1.0,0.0,0.0,0.0,-0.529,-0.811,-0.358
-AutoARIMA,Chronos-2,0.0,0.0,0.0,-0.546,-0.83,-0.363
-AutoARIMA,TimesFM-2.5,0.0,0.0,0.0,-0.487,-0.708,-0.341
-AutoARIMA,TiRex,0.0,0.0,0.0,-0.435,-0.619,-0.301
-AutoARIMA,Moirai-2.0,0.05,0.0,0.15,-0.379,-0.548,-0.255
-AutoARIMA,Sundial-Base,0.05,0.0,0.15,-0.355,-0.545,-0.212
-AutoARIMA,Chronos-Bolt,0.1,0.0,0.25,-0.286,-0.508,-0.137
-AutoARIMA,TabPFN-TS,0.2,0.05,0.4,-0.3,-0.541,-0.106
-AutoARIMA,Stat. Ensemble,0.525,0.325,0.726,0.01,-0.026,0.055
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoTheta,0.6,0.4,0.8,0.046,-0.017,0.107
-AutoARIMA,AutoETS,0.725,0.549,0.9,0.024,-0.086,0.103
-AutoARIMA,Naive,0.65,0.45,0.85,0.292,0.063,0.513
-AutoARIMA,Seasonal Naive,0.825,0.675,0.95,0.112,0.008,0.197
-AutoARIMA,Drift,0.8,0.6,0.95,0.331,0.115,0.536
-AutoTheta,Toto-1.0,0.0,0.0,0.0,-0.603,-0.881,-0.419
-AutoTheta,Chronos-2,0.0,0.0,0.0,-0.621,-0.887,-0.421
-AutoTheta,TimesFM-2.5,0.0,0.0,0.0,-0.56,-0.774,-0.394
-AutoTheta,TiRex,0.0,0.0,0.0,-0.505,-0.701,-0.356
-AutoTheta,Moirai-2.0,0.0,0.0,0.0,-0.446,-0.628,-0.31
-AutoTheta,Sundial-Base,0.0,0.0,0.0,-0.421,-0.606,-0.282
-AutoTheta,Chronos-Bolt,0.05,0.0,0.15,-0.348,-0.546,-0.206
-AutoTheta,TabPFN-TS,0.25,0.05,0.45,-0.363,-0.6,-0.182
-AutoTheta,Stat. Ensemble,0.25,0.05,0.45,-0.039,-0.096,0.013
-AutoTheta,AutoARIMA,0.4,0.2,0.6,-0.049,-0.12,0.017
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,AutoETS,0.55,0.3,0.75,-0.024,-0.139,0.055
-AutoTheta,Naive,0.7,0.5,0.9,0.258,0.05,0.468
-AutoTheta,Seasonal Naive,0.8,0.65,0.95,0.068,-0.06,0.171
-AutoTheta,Drift,0.85,0.7,1.0,0.299,0.104,0.491
-AutoETS,Toto-1.0,0.0,0.0,0.0,-0.566,-0.883,-0.364
-AutoETS,Chronos-2,0.0,0.0,0.0,-0.583,-0.881,-0.391
-AutoETS,TimesFM-2.5,0.0,0.0,0.0,-0.523,-0.762,-0.366
-AutoETS,TiRex,0.0,0.0,0.0,-0.47,-0.695,-0.307
-AutoETS,Moirai-2.0,0.05,0.0,0.15,-0.412,-0.619,-0.262
-AutoETS,Sundial-Base,0.05,0.0,0.15,-0.388,-0.611,-0.225
-AutoETS,Chronos-Bolt,0.15,0.0,0.3,-0.317,-0.559,-0.151
-AutoETS,TabPFN-TS,0.15,0.0,0.3,-0.331,-0.581,-0.129
-AutoETS,Stat. Ensemble,0.225,0.05,0.4,-0.014,-0.096,0.083
-AutoETS,AutoARIMA,0.275,0.1,0.451,-0.024,-0.115,0.079
-AutoETS,AutoTheta,0.45,0.25,0.7,0.023,-0.058,0.122
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Naive,0.55,0.3,0.75,0.275,0.032,0.5
-AutoETS,Seasonal Naive,0.725,0.55,0.9,0.09,0.026,0.154
-AutoETS,Drift,0.75,0.55,0.9,0.315,0.081,0.528
-Naive,Toto-1.0,0.0,0.0,0.0,-1.16,-2.211,-0.604
-Naive,Chronos-2,0.0,0.0,0.0,-1.183,-2.214,-0.628
-Naive,TimesFM-2.5,0.0,0.0,0.0,-1.101,-2.085,-0.578
-Naive,TiRex,0.05,0.0,0.15,-1.027,-1.923,-0.52
-Naive,Moirai-2.0,0.05,0.0,0.15,-0.948,-1.762,-0.475
-Naive,Sundial-Base,0.0,0.0,0.0,-0.914,-1.673,-0.476
-Naive,Chronos-Bolt,0.05,0.0,0.15,-0.816,-1.505,-0.423
-Naive,TabPFN-TS,0.15,0.0,0.35,-0.836,-1.501,-0.399
-Naive,Stat. Ensemble,0.25,0.05,0.45,-0.399,-1.041,-0.063
-Naive,AutoARIMA,0.35,0.15,0.55,-0.413,-1.052,-0.067
-Naive,AutoTheta,0.3,0.1,0.5,-0.347,-0.881,-0.053
-Naive,AutoETS,0.45,0.25,0.7,-0.379,-1.0,-0.033
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Seasonal Naive,0.6,0.425,0.775,-0.255,-0.874,0.087
-Naive,Drift,1.0,1.0,1.0,0.055,0.031,0.085
-Seasonal Naive,Toto-1.0,0.0,0.0,0.0,-0.721,-1.122,-0.477
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-0.74,-1.148,-0.496
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-0.674,-1.003,-0.466
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.615,-0.909,-0.418
-Seasonal Naive,Moirai-2.0,0.05,0.0,0.15,-0.552,-0.822,-0.365
-Seasonal Naive,Sundial-Base,0.05,0.0,0.15,-0.525,-0.83,-0.326
-Seasonal Naive,Chronos-Bolt,0.15,0.0,0.3,-0.447,-0.766,-0.228
-Seasonal Naive,TabPFN-TS,0.1,0.0,0.25,-0.463,-0.796,-0.216
-Seasonal Naive,Stat. Ensemble,0.225,0.075,0.376,-0.115,-0.235,0.009
-Seasonal Naive,AutoARIMA,0.175,0.05,0.325,-0.126,-0.245,-0.008
-Seasonal Naive,AutoTheta,0.2,0.05,0.35,-0.073,-0.206,0.057
-Seasonal Naive,AutoETS,0.275,0.1,0.45,-0.099,-0.181,-0.027
-Seasonal Naive,Naive,0.4,0.225,0.575,0.203,-0.096,0.466
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Drift,0.6,0.35,0.8,0.247,-0.04,0.497
-Drift,Toto-1.0,0.0,0.0,0.0,-1.286,-2.359,-0.705
-Drift,Chronos-2,0.0,0.0,0.0,-1.311,-2.381,-0.728
-Drift,TimesFM-2.5,0.0,0.0,0.0,-1.224,-2.223,-0.673
-Drift,TiRex,0.0,0.0,0.0,-1.146,-2.086,-0.627
-Drift,Moirai-2.0,0.0,0.0,0.0,-1.062,-1.913,-0.584
-Drift,Sundial-Base,0.0,0.0,0.0,-1.027,-1.828,-0.559
-Drift,Chronos-Bolt,0.0,0.0,0.0,-0.922,-1.659,-0.517
-Drift,TabPFN-TS,0.05,0.0,0.15,-0.943,-1.639,-0.484
-Drift,Stat. Ensemble,0.2,0.05,0.4,-0.481,-1.157,-0.124
-Drift,AutoARIMA,0.2,0.05,0.4,-0.495,-1.156,-0.13
-Drift,AutoTheta,0.15,0.0,0.3,-0.426,-0.966,-0.116
-Drift,AutoETS,0.25,0.1,0.45,-0.46,-1.12,-0.088
-Drift,Naive,0.0,0.0,0.0,-0.059,-0.093,-0.032
-Drift,Seasonal Naive,0.4,0.2,0.65,-0.329,-0.989,0.038
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/domain_cloud/pairwise_SQL.csv b/tables/domain_cloud/pairwise_SQL.csv
deleted file mode 100644
index 7b9b57f258953de62b81deef979e11ae38ad66da..0000000000000000000000000000000000000000
--- a/tables/domain_cloud/pairwise_SQL.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,Chronos-2,0.6,0.4,0.8,-0.024,-0.08,0.018
-Toto-1.0,TimesFM-2.5,0.75,0.55,0.95,0.028,-0.024,0.076
-Toto-1.0,TiRex,0.8,0.6,0.95,0.056,0.022,0.104
-Toto-1.0,Moirai-2.0,0.95,0.85,1.0,0.112,0.064,0.169
-Toto-1.0,Sundial-Base,0.95,0.85,1.0,0.148,0.071,0.211
-Toto-1.0,Chronos-Bolt,0.95,0.85,1.0,0.182,0.124,0.236
-Toto-1.0,TabPFN-TS,0.85,0.65,1.0,0.213,0.131,0.291
-Toto-1.0,AutoARIMA,1.0,1.0,1.0,0.452,0.369,0.537
-Toto-1.0,Stat. Ensemble,1.0,1.0,1.0,0.538,0.448,0.619
-Toto-1.0,AutoETS,1.0,1.0,1.0,0.666,0.482,0.815
-Toto-1.0,AutoTheta,1.0,1.0,1.0,0.638,0.54,0.72
-Toto-1.0,Seasonal Naive,1.0,1.0,1.0,0.631,0.521,0.73
-Toto-1.0,Naive,1.0,1.0,1.0,0.817,0.735,0.877
-Toto-1.0,Drift,1.0,1.0,1.0,0.824,0.744,0.882
-Chronos-2,Toto-1.0,0.4,0.2,0.6,0.024,-0.018,0.074
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TimesFM-2.5,0.75,0.55,0.9,0.051,0.017,0.09
-Chronos-2,TiRex,0.75,0.55,0.9,0.078,0.024,0.139
-Chronos-2,Moirai-2.0,1.0,1.0,1.0,0.133,0.069,0.2
-Chronos-2,Sundial-Base,0.95,0.85,1.0,0.168,0.118,0.222
-Chronos-2,Chronos-Bolt,1.0,1.0,1.0,0.201,0.134,0.261
-Chronos-2,TabPFN-TS,0.95,0.85,1.0,0.232,0.162,0.3
-Chronos-2,AutoARIMA,1.0,1.0,1.0,0.465,0.381,0.55
-Chronos-2,Stat. Ensemble,1.0,1.0,1.0,0.549,0.47,0.623
-Chronos-2,AutoETS,1.0,1.0,1.0,0.674,0.501,0.819
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.647,0.555,0.727
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.639,0.533,0.735
-Chronos-2,Naive,1.0,1.0,1.0,0.822,0.746,0.879
-Chronos-2,Drift,1.0,1.0,1.0,0.828,0.756,0.883
-TimesFM-2.5,Toto-1.0,0.25,0.05,0.45,-0.029,-0.082,0.024
-TimesFM-2.5,Chronos-2,0.25,0.1,0.45,-0.054,-0.099,-0.017
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TiRex,0.6,0.4,0.8,0.028,-0.014,0.08
-TimesFM-2.5,Moirai-2.0,0.9,0.75,1.0,0.086,0.038,0.143
-TimesFM-2.5,Sundial-Base,0.95,0.85,1.0,0.123,0.079,0.165
-TimesFM-2.5,Chronos-Bolt,0.9,0.75,1.0,0.158,0.095,0.217
-TimesFM-2.5,TabPFN-TS,0.85,0.7,1.0,0.19,0.124,0.257
-TimesFM-2.5,AutoARIMA,1.0,1.0,1.0,0.436,0.367,0.511
-TimesFM-2.5,Stat. Ensemble,1.0,1.0,1.0,0.524,0.451,0.594
-TimesFM-2.5,AutoETS,1.0,1.0,1.0,0.657,0.476,0.811
-TimesFM-2.5,AutoTheta,1.0,1.0,1.0,0.628,0.534,0.71
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.62,0.519,0.713
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.812,0.731,0.872
-TimesFM-2.5,Drift,1.0,1.0,1.0,0.819,0.742,0.877
-TiRex,Toto-1.0,0.2,0.05,0.4,-0.059,-0.116,-0.023
-TiRex,Chronos-2,0.25,0.1,0.45,-0.085,-0.162,-0.025
-TiRex,TimesFM-2.5,0.4,0.2,0.6,-0.029,-0.086,0.013
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,Moirai-2.0,0.85,0.7,1.0,0.059,0.03,0.09
-TiRex,Sundial-Base,0.95,0.85,1.0,0.097,0.013,0.151
-TiRex,Chronos-Bolt,0.9,0.75,1.0,0.133,0.073,0.186
-TiRex,TabPFN-TS,0.75,0.55,0.95,0.166,0.079,0.247
-TiRex,AutoARIMA,1.0,1.0,1.0,0.42,0.343,0.497
-TiRex,Stat. Ensemble,1.0,1.0,1.0,0.51,0.425,0.585
-TiRex,AutoETS,1.0,1.0,1.0,0.647,0.453,0.808
-TiRex,AutoTheta,1.0,1.0,1.0,0.617,0.513,0.698
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.609,0.499,0.709
-TiRex,Naive,0.95,0.85,1.0,0.806,0.72,0.869
-TiRex,Drift,1.0,1.0,1.0,0.814,0.729,0.874
-Moirai-2.0,Toto-1.0,0.05,0.0,0.15,-0.126,-0.203,-0.068
-Moirai-2.0,Chronos-2,0.0,0.0,0.0,-0.153,-0.249,-0.074
-Moirai-2.0,TimesFM-2.5,0.1,0.0,0.25,-0.094,-0.167,-0.039
-Moirai-2.0,TiRex,0.15,0.0,0.3,-0.063,-0.099,-0.03
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Sundial-Base,0.9,0.75,1.0,0.041,-0.045,0.091
-Moirai-2.0,Chronos-Bolt,0.8,0.6,0.95,0.079,0.017,0.14
-Moirai-2.0,TabPFN-TS,0.75,0.55,0.901,0.114,0.03,0.194
-Moirai-2.0,AutoARIMA,1.0,1.0,1.0,0.383,0.305,0.459
-Moirai-2.0,Stat. Ensemble,0.95,0.85,1.0,0.48,0.391,0.559
-Moirai-2.0,AutoETS,0.95,0.85,1.0,0.628,0.423,0.798
-Moirai-2.0,AutoTheta,0.95,0.85,1.0,0.593,0.49,0.673
-Moirai-2.0,Seasonal Naive,1.0,1.0,1.0,0.584,0.469,0.689
-Moirai-2.0,Naive,0.95,0.85,1.0,0.794,0.704,0.859
-Moirai-2.0,Drift,1.0,1.0,1.0,0.802,0.716,0.864
-Sundial-Base,Toto-1.0,0.05,0.0,0.15,-0.174,-0.268,-0.077
-Sundial-Base,Chronos-2,0.05,0.0,0.15,-0.202,-0.285,-0.134
-Sundial-Base,TimesFM-2.5,0.05,0.0,0.15,-0.14,-0.198,-0.085
-Sundial-Base,TiRex,0.05,0.0,0.15,-0.108,-0.178,-0.013
-Sundial-Base,Moirai-2.0,0.1,0.0,0.25,-0.043,-0.1,0.043
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Chronos-Bolt,0.4,0.2,0.6,0.04,-0.037,0.117
-Sundial-Base,TabPFN-TS,0.65,0.45,0.85,0.076,0.006,0.138
-Sundial-Base,AutoARIMA,1.0,1.0,1.0,0.357,0.281,0.436
-Sundial-Base,Stat. Ensemble,1.0,1.0,1.0,0.457,0.378,0.534
-Sundial-Base,AutoETS,1.0,1.0,1.0,0.615,0.404,0.793
-Sundial-Base,AutoTheta,1.0,1.0,1.0,0.575,0.487,0.657
-Sundial-Base,Seasonal Naive,1.0,1.0,1.0,0.566,0.454,0.668
-Sundial-Base,Naive,1.0,1.0,1.0,0.786,0.704,0.848
-Sundial-Base,Drift,1.0,1.0,1.0,0.794,0.716,0.854
-Chronos-Bolt,Toto-1.0,0.05,0.0,0.15,-0.222,-0.31,-0.142
-Chronos-Bolt,Chronos-2,0.0,0.0,0.0,-0.251,-0.352,-0.155
-Chronos-Bolt,TimesFM-2.5,0.1,0.0,0.25,-0.187,-0.277,-0.105
-Chronos-Bolt,TiRex,0.1,0.0,0.25,-0.154,-0.229,-0.079
-Chronos-Bolt,Moirai-2.0,0.2,0.05,0.4,-0.086,-0.162,-0.017
-Chronos-Bolt,Sundial-Base,0.6,0.4,0.8,-0.041,-0.133,0.036
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,TabPFN-TS,0.7,0.5,0.851,0.038,-0.082,0.139
-Chronos-Bolt,AutoARIMA,0.9,0.75,1.0,0.33,0.236,0.434
-Chronos-Bolt,Stat. Ensemble,0.85,0.7,1.0,0.435,0.328,0.531
-Chronos-Bolt,AutoETS,0.9,0.75,1.0,0.597,0.372,0.786
-Chronos-Bolt,AutoTheta,0.95,0.85,1.0,0.558,0.453,0.645
-Chronos-Bolt,Seasonal Naive,0.9,0.75,1.0,0.549,0.413,0.67
-Chronos-Bolt,Naive,0.95,0.85,1.0,0.777,0.686,0.844
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.785,0.7,0.851
-TabPFN-TS,Toto-1.0,0.15,0.0,0.35,-0.271,-0.41,-0.151
-TabPFN-TS,Chronos-2,0.05,0.0,0.15,-0.301,-0.429,-0.193
-TabPFN-TS,TimesFM-2.5,0.15,0.0,0.3,-0.235,-0.346,-0.141
-TabPFN-TS,TiRex,0.25,0.05,0.45,-0.2,-0.328,-0.086
-TabPFN-TS,Moirai-2.0,0.25,0.099,0.45,-0.129,-0.24,-0.03
-TabPFN-TS,Sundial-Base,0.35,0.15,0.55,-0.083,-0.161,-0.006
-TabPFN-TS,Chronos-Bolt,0.3,0.149,0.5,-0.04,-0.162,0.076
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,AutoARIMA,0.9,0.75,1.0,0.304,0.205,0.404
-TabPFN-TS,Stat. Ensemble,0.9,0.75,1.0,0.412,0.312,0.505
-TabPFN-TS,AutoETS,0.85,0.7,1.0,0.586,0.354,0.779
-TabPFN-TS,AutoTheta,0.95,0.85,1.0,0.54,0.433,0.639
-TabPFN-TS,Seasonal Naive,0.95,0.85,1.0,0.531,0.407,0.643
-TabPFN-TS,Naive,1.0,1.0,1.0,0.768,0.681,0.835
-TabPFN-TS,Drift,1.0,1.0,1.0,0.777,0.696,0.841
-AutoARIMA,Toto-1.0,0.0,0.0,0.0,-0.825,-1.161,-0.584
-AutoARIMA,Chronos-2,0.0,0.0,0.0,-0.869,-1.222,-0.615
-AutoARIMA,TimesFM-2.5,0.0,0.0,0.0,-0.773,-1.043,-0.58
-AutoARIMA,TiRex,0.0,0.0,0.0,-0.723,-0.989,-0.521
-AutoARIMA,Moirai-2.0,0.0,0.0,0.0,-0.621,-0.848,-0.438
-AutoARIMA,Sundial-Base,0.0,0.0,0.0,-0.555,-0.773,-0.392
-AutoARIMA,Chronos-Bolt,0.1,0.0,0.25,-0.493,-0.768,-0.309
-AutoARIMA,TabPFN-TS,0.1,0.0,0.25,-0.436,-0.677,-0.258
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,Stat. Ensemble,0.725,0.525,0.875,0.156,0.073,0.244
-AutoARIMA,AutoETS,0.775,0.6,0.95,0.434,0.08,0.713
-AutoARIMA,AutoTheta,0.85,0.7,1.0,0.34,0.203,0.476
-AutoARIMA,Seasonal Naive,0.875,0.75,0.975,0.326,0.18,0.457
-AutoARIMA,Naive,0.95,0.85,1.0,0.667,0.521,0.764
-AutoARIMA,Drift,0.95,0.85,1.0,0.679,0.545,0.773
-Stat. Ensemble,Toto-1.0,0.0,0.0,0.0,-1.163,-1.625,-0.811
-Stat. Ensemble,Chronos-2,0.0,0.0,0.0,-1.215,-1.654,-0.887
-Stat. Ensemble,TimesFM-2.5,0.0,0.0,0.0,-1.102,-1.466,-0.82
-Stat. Ensemble,TiRex,0.0,0.0,0.0,-1.042,-1.411,-0.739
-Stat. Ensemble,Moirai-2.0,0.05,0.0,0.15,-0.921,-1.267,-0.642
-Stat. Ensemble,Sundial-Base,0.0,0.0,0.0,-0.843,-1.145,-0.609
-Stat. Ensemble,Chronos-Bolt,0.15,0.0,0.3,-0.77,-1.134,-0.488
-Stat. Ensemble,TabPFN-TS,0.1,0.0,0.25,-0.702,-1.019,-0.454
-Stat. Ensemble,AutoARIMA,0.275,0.125,0.475,-0.185,-0.323,-0.078
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoETS,0.725,0.55,0.9,0.363,-0.063,0.684
-Stat. Ensemble,AutoTheta,0.9,0.75,1.0,0.218,0.089,0.375
-Stat. Ensemble,Seasonal Naive,0.725,0.525,0.9,0.201,-0.013,0.369
-Stat. Ensemble,Naive,0.95,0.85,1.0,0.605,0.443,0.725
-Stat. Ensemble,Drift,1.0,1.0,1.0,0.62,0.465,0.735
-AutoETS,Toto-1.0,0.0,0.0,0.0,-1.991,-4.394,-0.932
-AutoETS,Chronos-2,0.0,0.0,0.0,-2.072,-4.534,-1.004
-AutoETS,TimesFM-2.5,0.0,0.0,0.0,-1.92,-4.291,-0.907
-AutoETS,TiRex,0.0,0.0,0.0,-1.837,-4.196,-0.83
-AutoETS,Moirai-2.0,0.05,0.0,0.15,-1.688,-3.95,-0.734
-AutoETS,Sundial-Base,0.0,0.0,0.0,-1.595,-3.825,-0.677
-AutoETS,Chronos-Bolt,0.1,0.0,0.25,-1.484,-3.678,-0.591
-AutoETS,TabPFN-TS,0.15,0.0,0.3,-1.414,-3.528,-0.549
-AutoETS,AutoARIMA,0.225,0.05,0.4,-0.767,-2.48,-0.087
-AutoETS,Stat. Ensemble,0.275,0.1,0.45,-0.569,-2.162,0.059
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,AutoTheta,0.75,0.55,0.9,-0.25,-1.708,0.289
-AutoETS,Seasonal Naive,0.725,0.525,0.875,-0.269,-1.702,0.285
-AutoETS,Naive,0.8,0.6,0.95,0.34,-0.612,0.679
-AutoETS,Drift,0.85,0.65,1.0,0.363,-0.555,0.692
-AutoTheta,Toto-1.0,0.0,0.0,0.0,-1.764,-2.575,-1.173
-AutoTheta,Chronos-2,0.0,0.0,0.0,-1.831,-2.661,-1.245
-AutoTheta,TimesFM-2.5,0.0,0.0,0.0,-1.686,-2.451,-1.145
-AutoTheta,TiRex,0.0,0.0,0.0,-1.61,-2.316,-1.054
-AutoTheta,Moirai-2.0,0.05,0.0,0.15,-1.456,-2.054,-0.962
-AutoTheta,Sundial-Base,0.0,0.0,0.0,-1.355,-1.914,-0.951
-AutoTheta,Chronos-Bolt,0.05,0.0,0.15,-1.262,-1.821,-0.828
-AutoTheta,TabPFN-TS,0.05,0.0,0.15,-1.175,-1.772,-0.765
-AutoTheta,AutoARIMA,0.15,0.0,0.3,-0.515,-0.908,-0.255
-AutoTheta,Stat. Ensemble,0.1,0.0,0.25,-0.278,-0.6,-0.097
-AutoTheta,AutoETS,0.25,0.1,0.45,0.2,-0.407,0.631
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Seasonal Naive,0.7,0.5,0.9,-0.021,-0.413,0.245
-AutoTheta,Naive,0.85,0.65,1.0,0.495,0.359,0.605
-AutoTheta,Drift,0.9,0.75,1.0,0.514,0.382,0.62
-Seasonal Naive,Toto-1.0,0.0,0.0,0.0,-1.707,-2.709,-1.086
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-1.772,-2.77,-1.139
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-1.631,-2.486,-1.077
-Seasonal Naive,TiRex,0.0,0.0,0.0,-1.556,-2.437,-0.997
-Seasonal Naive,Moirai-2.0,0.0,0.0,0.0,-1.405,-2.214,-0.883
-Seasonal Naive,Sundial-Base,0.0,0.0,0.0,-1.307,-2.016,-0.832
-Seasonal Naive,Chronos-Bolt,0.1,0.0,0.25,-1.215,-2.027,-0.704
-Seasonal Naive,TabPFN-TS,0.05,0.0,0.15,-1.13,-1.801,-0.687
-Seasonal Naive,AutoARIMA,0.125,0.025,0.25,-0.483,-0.841,-0.219
-Seasonal Naive,Stat. Ensemble,0.275,0.1,0.475,-0.252,-0.585,0.013
-Seasonal Naive,AutoETS,0.275,0.125,0.475,0.212,-0.398,0.63
-Seasonal Naive,AutoTheta,0.3,0.1,0.5,0.021,-0.325,0.292
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Naive,0.7,0.525,0.85,0.505,0.274,0.671
-Seasonal Naive,Drift,0.85,0.65,1.0,0.524,0.302,0.688
-Naive,Toto-1.0,0.0,0.0,0.0,-4.472,-7.119,-2.772
-Naive,Chronos-2,0.0,0.0,0.0,-4.604,-7.24,-2.94
-Naive,TimesFM-2.5,0.0,0.0,0.0,-4.318,-6.839,-2.721
-Naive,TiRex,0.05,0.0,0.15,-4.166,-6.661,-2.569
-Naive,Moirai-2.0,0.05,0.0,0.15,-3.861,-6.072,-2.376
-Naive,Sundial-Base,0.0,0.0,0.0,-3.663,-5.597,-2.374
-Naive,Chronos-Bolt,0.05,0.0,0.15,-3.478,-5.427,-2.188
-Naive,TabPFN-TS,0.0,0.0,0.0,-3.306,-5.057,-2.139
-Naive,AutoARIMA,0.05,0.0,0.15,-1.999,-3.24,-1.086
-Naive,Stat. Ensemble,0.05,0.0,0.15,-1.53,-2.642,-0.795
-Naive,AutoETS,0.2,0.05,0.4,-0.516,-2.117,0.38
-Naive,AutoTheta,0.15,0.0,0.35,-0.98,-1.531,-0.56
-Naive,Seasonal Naive,0.3,0.15,0.475,-1.021,-2.041,-0.378
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,1.0,1.0,1.0,0.039,0.023,0.057
-Drift,Toto-1.0,0.0,0.0,0.0,-4.691,-7.48,-2.9
-Drift,Chronos-2,0.0,0.0,0.0,-4.828,-7.54,-3.102
-Drift,TimesFM-2.5,0.0,0.0,0.0,-4.531,-7.137,-2.871
-Drift,TiRex,0.0,0.0,0.0,-4.373,-6.957,-2.696
-Drift,Moirai-2.0,0.0,0.0,0.0,-4.056,-6.361,-2.518
-Drift,Sundial-Base,0.0,0.0,0.0,-3.85,-5.831,-2.522
-Drift,Chronos-Bolt,0.0,0.0,0.0,-3.658,-5.689,-2.332
-Drift,TabPFN-TS,0.0,0.0,0.0,-3.479,-5.272,-2.287
-Drift,AutoARIMA,0.05,0.0,0.15,-2.119,-3.399,-1.198
-Drift,Stat. Ensemble,0.0,0.0,0.0,-1.632,-2.779,-0.87
-Drift,AutoETS,0.15,0.0,0.35,-0.569,-2.25,0.357
-Drift,AutoTheta,0.1,0.0,0.25,-1.059,-1.634,-0.617
-Drift,Seasonal Naive,0.15,0.0,0.35,-1.102,-2.206,-0.433
-Drift,Naive,0.0,0.0,0.0,-0.04,-0.061,-0.024
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/domain_cloud/pairwise_WAPE.csv b/tables/domain_cloud/pairwise_WAPE.csv
deleted file mode 100644
index 23a326d9739a05f6b7af9995b6ff438fc5e46b0f..0000000000000000000000000000000000000000
--- a/tables/domain_cloud/pairwise_WAPE.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,Toto-1.0,0.35,0.15,0.55,0.065,-0.014,0.173
-Chronos-2,TimesFM-2.5,0.75,0.55,0.9,0.08,0.03,0.14
-Chronos-2,TiRex,0.8,0.6,0.95,0.109,0.032,0.209
-Chronos-2,Moirai-2.0,1.0,1.0,1.0,0.136,0.059,0.226
-Chronos-2,TabPFN-TS,0.95,0.85,1.0,0.129,0.084,0.186
-Chronos-2,Chronos-Bolt,1.0,1.0,1.0,0.178,0.103,0.259
-Chronos-2,Sundial-Base,1.0,1.0,1.0,0.148,0.099,0.198
-Chronos-2,Stat. Ensemble,1.0,1.0,1.0,0.415,0.319,0.51
-Chronos-2,AutoARIMA,1.0,1.0,1.0,0.421,0.312,0.531
-Chronos-2,AutoETS,1.0,1.0,1.0,0.476,0.341,0.599
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.434,0.333,0.532
-Chronos-2,Naive,1.0,1.0,1.0,0.482,0.382,0.572
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.506,0.388,0.617
-Chronos-2,Drift,1.0,1.0,1.0,0.514,0.42,0.599
-Toto-1.0,Chronos-2,0.65,0.45,0.85,-0.07,-0.21,0.014
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,TimesFM-2.5,0.8,0.6,0.95,0.016,-0.048,0.069
-Toto-1.0,TiRex,0.75,0.55,0.9,0.047,-0.0,0.1
-Toto-1.0,Moirai-2.0,0.9,0.75,1.0,0.076,0.017,0.14
-Toto-1.0,TabPFN-TS,0.8,0.6,0.95,0.069,-0.015,0.137
-Toto-1.0,Chronos-Bolt,0.95,0.85,1.0,0.12,0.053,0.182
-Toto-1.0,Sundial-Base,0.9,0.75,1.0,0.089,-0.011,0.164
-Toto-1.0,Stat. Ensemble,1.0,1.0,1.0,0.374,0.288,0.473
-Toto-1.0,AutoARIMA,1.0,1.0,1.0,0.38,0.29,0.482
-Toto-1.0,AutoETS,1.0,1.0,1.0,0.439,0.315,0.574
-Toto-1.0,AutoTheta,1.0,1.0,1.0,0.395,0.314,0.488
-Toto-1.0,Naive,1.0,1.0,1.0,0.446,0.353,0.545
-Toto-1.0,Seasonal Naive,1.0,1.0,1.0,0.471,0.37,0.581
-Toto-1.0,Drift,1.0,1.0,1.0,0.48,0.397,0.565
-TimesFM-2.5,Chronos-2,0.25,0.1,0.45,-0.088,-0.162,-0.031
-TimesFM-2.5,Toto-1.0,0.2,0.05,0.4,-0.017,-0.074,0.046
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TiRex,0.6,0.4,0.8,0.031,-0.009,0.083
-TimesFM-2.5,Moirai-2.0,0.85,0.65,1.0,0.06,0.024,0.101
-TimesFM-2.5,TabPFN-TS,0.7,0.5,0.9,0.053,0.014,0.094
-TimesFM-2.5,Chronos-Bolt,0.9,0.75,1.0,0.106,0.065,0.148
-TimesFM-2.5,Sundial-Base,0.9,0.75,1.0,0.074,0.024,0.112
-TimesFM-2.5,Stat. Ensemble,1.0,1.0,1.0,0.363,0.285,0.453
-TimesFM-2.5,AutoARIMA,1.0,1.0,1.0,0.37,0.28,0.472
-TimesFM-2.5,AutoETS,1.0,1.0,1.0,0.43,0.307,0.558
-TimesFM-2.5,AutoTheta,1.0,1.0,1.0,0.385,0.303,0.473
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.437,0.35,0.527
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.462,0.364,0.568
-TimesFM-2.5,Drift,1.0,1.0,1.0,0.472,0.391,0.548
-TiRex,Chronos-2,0.2,0.05,0.4,-0.122,-0.264,-0.033
-TiRex,Toto-1.0,0.25,0.1,0.45,-0.049,-0.111,0.0
-TiRex,TimesFM-2.5,0.4,0.2,0.6,-0.032,-0.091,0.009
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,Moirai-2.0,0.75,0.55,0.9,0.03,0.004,0.056
-TiRex,TabPFN-TS,0.7,0.5,0.9,0.023,-0.05,0.081
-TiRex,Chronos-Bolt,0.85,0.65,1.0,0.077,0.03,0.124
-TiRex,Sundial-Base,0.85,0.7,0.95,0.044,-0.063,0.112
-TiRex,Stat. Ensemble,0.95,0.85,1.0,0.343,0.258,0.427
-TiRex,AutoARIMA,1.0,1.0,1.0,0.35,0.265,0.443
-TiRex,AutoETS,0.95,0.85,1.0,0.412,0.283,0.547
-TiRex,AutoTheta,1.0,1.0,1.0,0.365,0.286,0.45
-TiRex,Naive,0.95,0.85,1.0,0.419,0.321,0.511
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.445,0.35,0.545
-TiRex,Drift,1.0,1.0,1.0,0.455,0.377,0.533
-Moirai-2.0,Chronos-2,0.0,0.0,0.0,-0.157,-0.292,-0.062
-Moirai-2.0,Toto-1.0,0.1,0.0,0.25,-0.082,-0.162,-0.017
-Moirai-2.0,TimesFM-2.5,0.15,0.0,0.35,-0.064,-0.112,-0.025
-Moirai-2.0,TiRex,0.25,0.1,0.45,-0.031,-0.06,-0.004
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,TabPFN-TS,0.5,0.3,0.75,-0.008,-0.075,0.05
-Moirai-2.0,Chronos-Bolt,0.75,0.55,0.9,0.048,0.003,0.096
-Moirai-2.0,Sundial-Base,0.75,0.55,0.9,0.014,-0.074,0.068
-Moirai-2.0,Stat. Ensemble,1.0,1.0,1.0,0.322,0.239,0.411
-Moirai-2.0,AutoARIMA,1.0,1.0,1.0,0.33,0.244,0.426
-Moirai-2.0,AutoETS,1.0,1.0,1.0,0.394,0.265,0.533
-Moirai-2.0,AutoTheta,1.0,1.0,1.0,0.345,0.268,0.435
-Moirai-2.0,Naive,0.95,0.85,1.0,0.401,0.311,0.491
-Moirai-2.0,Seasonal Naive,1.0,1.0,1.0,0.428,0.333,0.532
-Moirai-2.0,Drift,1.0,1.0,1.0,0.438,0.36,0.513
-TabPFN-TS,Chronos-2,0.05,0.0,0.15,-0.149,-0.229,-0.091
-TabPFN-TS,Toto-1.0,0.2,0.05,0.4,-0.074,-0.159,0.015
-TabPFN-TS,TimesFM-2.5,0.3,0.1,0.5,-0.056,-0.103,-0.015
-TabPFN-TS,TiRex,0.3,0.1,0.5,-0.023,-0.089,0.048
-TabPFN-TS,Moirai-2.0,0.5,0.25,0.7,0.008,-0.053,0.07
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Chronos-Bolt,0.6,0.4,0.8,0.055,-0.022,0.125
-TabPFN-TS,Sundial-Base,0.5,0.3,0.7,0.022,-0.044,0.083
-TabPFN-TS,Stat. Ensemble,1.0,1.0,1.0,0.327,0.226,0.427
-TabPFN-TS,AutoARIMA,1.0,1.0,1.0,0.335,0.224,0.447
-TabPFN-TS,AutoETS,0.95,0.85,1.0,0.398,0.258,0.535
-TabPFN-TS,AutoTheta,0.95,0.85,1.0,0.35,0.246,0.448
-TabPFN-TS,Naive,1.0,1.0,1.0,0.405,0.295,0.51
-TabPFN-TS,Seasonal Naive,1.0,1.0,1.0,0.432,0.311,0.55
-TabPFN-TS,Drift,1.0,1.0,1.0,0.442,0.337,0.534
-Chronos-Bolt,Chronos-2,0.0,0.0,0.0,-0.216,-0.349,-0.115
-Chronos-Bolt,Toto-1.0,0.05,0.0,0.15,-0.137,-0.223,-0.056
-Chronos-Bolt,TimesFM-2.5,0.1,0.0,0.25,-0.118,-0.174,-0.069
-Chronos-Bolt,TiRex,0.15,0.0,0.35,-0.083,-0.141,-0.031
-Chronos-Bolt,Moirai-2.0,0.25,0.1,0.45,-0.051,-0.106,-0.003
-Chronos-Bolt,TabPFN-TS,0.4,0.2,0.6,-0.059,-0.143,0.022
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Sundial-Base,0.6,0.4,0.8,-0.036,-0.131,0.028
-Chronos-Bolt,Stat. Ensemble,1.0,1.0,1.0,0.288,0.207,0.384
-Chronos-Bolt,AutoARIMA,1.0,1.0,1.0,0.296,0.204,0.41
-Chronos-Bolt,AutoETS,1.0,1.0,1.0,0.363,0.23,0.509
-Chronos-Bolt,AutoTheta,1.0,1.0,1.0,0.312,0.234,0.407
-Chronos-Bolt,Naive,0.95,0.85,1.0,0.371,0.282,0.464
-Chronos-Bolt,Seasonal Naive,1.0,1.0,1.0,0.399,0.295,0.512
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.409,0.333,0.49
-Sundial-Base,Chronos-2,0.0,0.0,0.0,-0.174,-0.247,-0.11
-Sundial-Base,Toto-1.0,0.1,0.0,0.25,-0.097,-0.196,0.011
-Sundial-Base,TimesFM-2.5,0.1,0.0,0.25,-0.08,-0.126,-0.024
-Sundial-Base,TiRex,0.15,0.05,0.3,-0.046,-0.126,0.059
-Sundial-Base,Moirai-2.0,0.25,0.1,0.45,-0.014,-0.073,0.069
-Sundial-Base,TabPFN-TS,0.5,0.3,0.7,-0.022,-0.09,0.042
-Sundial-Base,Chronos-Bolt,0.4,0.2,0.6,0.034,-0.029,0.116
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Stat. Ensemble,1.0,1.0,1.0,0.313,0.227,0.408
-Sundial-Base,AutoARIMA,1.0,1.0,1.0,0.32,0.224,0.423
-Sundial-Base,AutoETS,1.0,1.0,1.0,0.385,0.251,0.518
-Sundial-Base,AutoTheta,1.0,1.0,1.0,0.336,0.245,0.426
-Sundial-Base,Naive,1.0,1.0,1.0,0.392,0.306,0.478
-Sundial-Base,Seasonal Naive,1.0,1.0,1.0,0.42,0.312,0.53
-Sundial-Base,Drift,1.0,1.0,1.0,0.43,0.347,0.507
-Stat. Ensemble,Chronos-2,0.0,0.0,0.0,-0.708,-1.042,-0.469
-Stat. Ensemble,Toto-1.0,0.0,0.0,0.0,-0.596,-0.898,-0.404
-Stat. Ensemble,TimesFM-2.5,0.0,0.0,0.0,-0.571,-0.828,-0.398
-Stat. Ensemble,TiRex,0.05,0.0,0.15,-0.522,-0.746,-0.348
-Stat. Ensemble,Moirai-2.0,0.0,0.0,0.0,-0.476,-0.699,-0.314
-Stat. Ensemble,TabPFN-TS,0.0,0.0,0.0,-0.487,-0.746,-0.292
-Stat. Ensemble,Chronos-Bolt,0.0,0.0,0.0,-0.405,-0.624,-0.261
-Stat. Ensemble,Sundial-Base,0.0,0.0,0.0,-0.455,-0.688,-0.293
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoARIMA,0.525,0.325,0.725,0.011,-0.045,0.063
-Stat. Ensemble,AutoETS,0.725,0.525,0.9,0.105,-0.033,0.285
-Stat. Ensemble,AutoTheta,0.85,0.7,1.0,0.033,-0.007,0.072
-Stat. Ensemble,Naive,0.7,0.5,0.9,0.116,0.037,0.193
-Stat. Ensemble,Seasonal Naive,0.875,0.75,0.975,0.156,0.072,0.236
-Stat. Ensemble,Drift,0.8,0.6,0.95,0.17,0.096,0.237
-AutoARIMA,Chronos-2,0.0,0.0,0.0,-0.727,-1.133,-0.453
-AutoARIMA,Toto-1.0,0.0,0.0,0.0,-0.614,-0.93,-0.408
-AutoARIMA,TimesFM-2.5,0.0,0.0,0.0,-0.588,-0.895,-0.389
-AutoARIMA,TiRex,0.0,0.0,0.0,-0.539,-0.797,-0.361
-AutoARIMA,Moirai-2.0,0.0,0.0,0.0,-0.492,-0.744,-0.323
-AutoARIMA,TabPFN-TS,0.0,0.0,0.0,-0.503,-0.808,-0.289
-AutoARIMA,Chronos-Bolt,0.0,0.0,0.0,-0.42,-0.694,-0.256
-AutoARIMA,Sundial-Base,0.0,0.0,0.0,-0.471,-0.734,-0.288
-AutoARIMA,Stat. Ensemble,0.475,0.275,0.675,-0.011,-0.067,0.043
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoETS,0.625,0.425,0.825,0.095,-0.068,0.276
-AutoARIMA,AutoTheta,0.65,0.4,0.85,0.023,-0.039,0.083
-AutoARIMA,Naive,0.6,0.399,0.8,0.106,-0.005,0.204
-AutoARIMA,Seasonal Naive,0.875,0.75,0.975,0.146,0.061,0.226
-AutoARIMA,Drift,0.75,0.55,0.95,0.161,0.062,0.25
-AutoETS,Chronos-2,0.0,0.0,0.0,-0.909,-1.495,-0.517
-AutoETS,Toto-1.0,0.0,0.0,0.0,-0.784,-1.345,-0.461
-AutoETS,TimesFM-2.5,0.0,0.0,0.0,-0.755,-1.264,-0.444
-AutoETS,TiRex,0.05,0.0,0.15,-0.7,-1.21,-0.394
-AutoETS,Moirai-2.0,0.0,0.0,0.0,-0.649,-1.141,-0.36
-AutoETS,TabPFN-TS,0.05,0.0,0.15,-0.662,-1.151,-0.347
-AutoETS,Chronos-Bolt,0.0,0.0,0.0,-0.57,-1.035,-0.299
-AutoETS,Sundial-Base,0.0,0.0,0.0,-0.626,-1.074,-0.334
-AutoETS,Stat. Ensemble,0.275,0.1,0.475,-0.117,-0.399,0.032
-AutoETS,AutoARIMA,0.375,0.175,0.575,-0.105,-0.381,0.063
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,AutoTheta,0.6,0.4,0.8,-0.08,-0.32,0.051
-AutoETS,Naive,0.5,0.3,0.7,0.012,-0.2,0.142
-AutoETS,Seasonal Naive,0.725,0.55,0.9,0.057,-0.196,0.202
-AutoETS,Drift,0.75,0.55,0.9,0.073,-0.137,0.197
-AutoTheta,Chronos-2,0.0,0.0,0.0,-0.767,-1.135,-0.5
-AutoTheta,Toto-1.0,0.0,0.0,0.0,-0.652,-0.955,-0.458
-AutoTheta,TimesFM-2.5,0.0,0.0,0.0,-0.625,-0.898,-0.434
-AutoTheta,TiRex,0.0,0.0,0.0,-0.574,-0.817,-0.401
-AutoTheta,Moirai-2.0,0.0,0.0,0.0,-0.527,-0.77,-0.366
-AutoTheta,TabPFN-TS,0.05,0.0,0.15,-0.538,-0.812,-0.326
-AutoTheta,Chronos-Bolt,0.0,0.0,0.0,-0.453,-0.687,-0.305
-AutoTheta,Sundial-Base,0.0,0.0,0.0,-0.505,-0.741,-0.324
-AutoTheta,Stat. Ensemble,0.15,0.0,0.3,-0.035,-0.077,0.007
-AutoTheta,AutoARIMA,0.35,0.15,0.6,-0.023,-0.09,0.037
-AutoTheta,AutoETS,0.4,0.2,0.6,0.074,-0.054,0.242
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Naive,0.7,0.5,0.9,0.085,0.008,0.16
-AutoTheta,Seasonal Naive,0.8,0.65,0.95,0.127,0.043,0.209
-AutoTheta,Drift,0.85,0.7,1.0,0.142,0.077,0.202
-Naive,Chronos-2,0.0,0.0,0.0,-0.932,-1.338,-0.617
-Naive,Toto-1.0,0.0,0.0,0.0,-0.806,-1.198,-0.545
-Naive,TimesFM-2.5,0.0,0.0,0.0,-0.777,-1.112,-0.538
-Naive,TiRex,0.05,0.0,0.15,-0.721,-1.045,-0.472
-Naive,Moirai-2.0,0.05,0.0,0.15,-0.669,-0.964,-0.452
-Naive,TabPFN-TS,0.0,0.0,0.0,-0.682,-1.039,-0.417
-Naive,Chronos-Bolt,0.05,0.0,0.15,-0.589,-0.866,-0.392
-Naive,Sundial-Base,0.0,0.0,0.0,-0.646,-0.915,-0.441
-Naive,Stat. Ensemble,0.3,0.1,0.5,-0.131,-0.239,-0.038
-Naive,AutoARIMA,0.4,0.2,0.601,-0.119,-0.256,0.005
-Naive,AutoETS,0.5,0.3,0.7,-0.012,-0.166,0.167
-Naive,AutoTheta,0.3,0.1,0.5,-0.093,-0.19,-0.008
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Seasonal Naive,0.6,0.425,0.775,0.045,-0.064,0.152
-Naive,Drift,1.0,1.0,1.0,0.061,0.032,0.1
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-1.023,-1.609,-0.634
-Seasonal Naive,Toto-1.0,0.0,0.0,0.0,-0.891,-1.385,-0.588
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-0.86,-1.313,-0.572
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.802,-1.198,-0.539
-Seasonal Naive,Moirai-2.0,0.0,0.0,0.0,-0.748,-1.138,-0.499
-Seasonal Naive,TabPFN-TS,0.0,0.0,0.0,-0.761,-1.22,-0.452
-Seasonal Naive,Chronos-Bolt,0.0,0.0,0.0,-0.664,-1.049,-0.418
-Seasonal Naive,Sundial-Base,0.0,0.0,0.0,-0.723,-1.13,-0.453
-Seasonal Naive,Stat. Ensemble,0.125,0.025,0.25,-0.185,-0.309,-0.078
-Seasonal Naive,AutoARIMA,0.125,0.025,0.25,-0.172,-0.293,-0.065
-Seasonal Naive,AutoETS,0.275,0.1,0.45,-0.06,-0.252,0.164
-Seasonal Naive,AutoTheta,0.2,0.05,0.35,-0.145,-0.264,-0.045
-Seasonal Naive,Naive,0.4,0.225,0.575,-0.047,-0.179,0.06
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Drift,0.6,0.35,0.8,0.017,-0.096,0.115
-Drift,Chronos-2,0.0,0.0,0.0,-1.059,-1.492,-0.723
-Drift,Toto-1.0,0.0,0.0,0.0,-0.924,-1.3,-0.659
-Drift,TimesFM-2.5,0.0,0.0,0.0,-0.893,-1.214,-0.641
-Drift,TiRex,0.0,0.0,0.0,-0.834,-1.143,-0.606
-Drift,Moirai-2.0,0.0,0.0,0.0,-0.779,-1.054,-0.562
-Drift,TabPFN-TS,0.0,0.0,0.0,-0.792,-1.147,-0.508
-Drift,Chronos-Bolt,0.0,0.0,0.0,-0.693,-0.96,-0.5
-Drift,Sundial-Base,0.0,0.0,0.0,-0.753,-1.028,-0.532
-Drift,Stat. Ensemble,0.2,0.05,0.4,-0.205,-0.311,-0.106
-Drift,AutoARIMA,0.25,0.05,0.45,-0.192,-0.333,-0.066
-Drift,AutoETS,0.25,0.1,0.45,-0.079,-0.245,0.12
-Drift,AutoTheta,0.15,0.0,0.3,-0.165,-0.253,-0.083
-Drift,Naive,0.0,0.0,0.0,-0.065,-0.111,-0.033
-Drift,Seasonal Naive,0.4,0.2,0.65,-0.018,-0.129,0.088
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/domain_cloud/pairwise_WQL.csv b/tables/domain_cloud/pairwise_WQL.csv
deleted file mode 100644
index faf977f75a96a53de0af8f206f61f2bc55c4d5d7..0000000000000000000000000000000000000000
--- a/tables/domain_cloud/pairwise_WQL.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,Toto-1.0,0.35,0.15,0.55,0.07,-0.014,0.185
-Chronos-2,TimesFM-2.5,0.75,0.55,0.9,0.088,0.033,0.155
-Chronos-2,TiRex,0.85,0.7,1.0,0.113,0.032,0.222
-Chronos-2,Moirai-2.0,1.0,1.0,1.0,0.151,0.066,0.248
-Chronos-2,TabPFN-TS,1.0,1.0,1.0,0.19,0.134,0.247
-Chronos-2,Chronos-Bolt,1.0,1.0,1.0,0.21,0.134,0.3
-Chronos-2,Sundial-Base,1.0,1.0,1.0,0.19,0.145,0.236
-Chronos-2,AutoARIMA,1.0,1.0,1.0,0.504,0.412,0.597
-Chronos-2,Stat. Ensemble,1.0,1.0,1.0,0.582,0.505,0.655
-Chronos-2,AutoETS,1.0,1.0,1.0,0.73,0.573,0.855
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.643,0.566,0.707
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.669,0.582,0.746
-Chronos-2,Naive,1.0,1.0,1.0,0.8,0.757,0.837
-Chronos-2,Drift,1.0,1.0,1.0,0.808,0.765,0.845
-Toto-1.0,Chronos-2,0.65,0.45,0.85,-0.075,-0.227,0.013
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,TimesFM-2.5,0.75,0.55,0.95,0.019,-0.047,0.073
-Toto-1.0,TiRex,0.75,0.55,0.9,0.046,0.0,0.095
-Toto-1.0,Moirai-2.0,0.85,0.7,1.0,0.087,0.03,0.145
-Toto-1.0,TabPFN-TS,0.8,0.6,0.95,0.129,0.024,0.218
-Toto-1.0,Chronos-Bolt,0.95,0.85,1.0,0.151,0.089,0.21
-Toto-1.0,Sundial-Base,0.9,0.75,1.0,0.129,0.024,0.201
-Toto-1.0,AutoARIMA,1.0,1.0,1.0,0.467,0.398,0.544
-Toto-1.0,Stat. Ensemble,1.0,1.0,1.0,0.551,0.473,0.628
-Toto-1.0,AutoETS,1.0,1.0,1.0,0.709,0.535,0.843
-Toto-1.0,AutoTheta,1.0,1.0,1.0,0.616,0.541,0.683
-Toto-1.0,Seasonal Naive,1.0,1.0,1.0,0.645,0.562,0.725
-Toto-1.0,Naive,1.0,1.0,1.0,0.785,0.726,0.829
-Toto-1.0,Drift,1.0,1.0,1.0,0.793,0.736,0.838
-TimesFM-2.5,Chronos-2,0.25,0.1,0.45,-0.097,-0.183,-0.034
-TimesFM-2.5,Toto-1.0,0.25,0.05,0.45,-0.02,-0.079,0.045
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TiRex,0.6,0.4,0.8,0.027,-0.018,0.086
-TimesFM-2.5,Moirai-2.0,0.85,0.65,1.0,0.069,0.028,0.116
-TimesFM-2.5,TabPFN-TS,0.7,0.5,0.9,0.112,0.044,0.188
-TimesFM-2.5,Chronos-Bolt,0.9,0.75,1.0,0.134,0.092,0.179
-TimesFM-2.5,Sundial-Base,0.95,0.85,1.0,0.111,0.06,0.148
-TimesFM-2.5,AutoARIMA,1.0,1.0,1.0,0.456,0.384,0.539
-TimesFM-2.5,Stat. Ensemble,1.0,1.0,1.0,0.542,0.468,0.619
-TimesFM-2.5,AutoETS,1.0,1.0,1.0,0.704,0.532,0.841
-TimesFM-2.5,AutoTheta,1.0,1.0,1.0,0.609,0.535,0.678
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.638,0.557,0.714
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.78,0.727,0.825
-TimesFM-2.5,Drift,1.0,1.0,1.0,0.789,0.739,0.832
-TiRex,Chronos-2,0.15,0.0,0.3,-0.127,-0.285,-0.033
-TiRex,Toto-1.0,0.25,0.1,0.45,-0.048,-0.105,-0.0
-TiRex,TimesFM-2.5,0.4,0.2,0.6,-0.028,-0.095,0.018
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,Moirai-2.0,0.9,0.75,1.0,0.043,0.019,0.07
-TiRex,TabPFN-TS,0.75,0.55,0.95,0.087,-0.014,0.174
-TiRex,Chronos-Bolt,0.9,0.75,1.0,0.11,0.064,0.155
-TiRex,Sundial-Base,0.95,0.85,1.0,0.087,-0.025,0.153
-TiRex,AutoARIMA,1.0,1.0,1.0,0.441,0.376,0.512
-TiRex,Stat. Ensemble,1.0,1.0,1.0,0.529,0.452,0.602
-TiRex,AutoETS,1.0,1.0,1.0,0.697,0.514,0.839
-TiRex,AutoTheta,1.0,1.0,1.0,0.598,0.521,0.663
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.627,0.54,0.71
-TiRex,Naive,1.0,1.0,1.0,0.774,0.712,0.821
-TiRex,Drift,1.0,1.0,1.0,0.783,0.724,0.829
-Moirai-2.0,Chronos-2,0.0,0.0,0.0,-0.177,-0.33,-0.071
-Moirai-2.0,Toto-1.0,0.15,0.0,0.3,-0.095,-0.169,-0.031
-Moirai-2.0,TimesFM-2.5,0.15,0.0,0.35,-0.074,-0.131,-0.029
-Moirai-2.0,TiRex,0.1,0.0,0.25,-0.044,-0.075,-0.02
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,TabPFN-TS,0.5,0.3,0.7,0.047,-0.055,0.137
-Moirai-2.0,Chronos-Bolt,0.85,0.699,0.975,0.07,0.023,0.118
-Moirai-2.0,Sundial-Base,0.9,0.75,1.0,0.046,-0.056,0.104
-Moirai-2.0,AutoARIMA,1.0,1.0,1.0,0.416,0.347,0.496
-Moirai-2.0,Stat. Ensemble,1.0,1.0,1.0,0.508,0.423,0.589
-Moirai-2.0,AutoETS,1.0,1.0,1.0,0.685,0.494,0.835
-Moirai-2.0,AutoTheta,1.0,1.0,1.0,0.58,0.498,0.651
-Moirai-2.0,Seasonal Naive,1.0,1.0,1.0,0.611,0.523,0.693
-Moirai-2.0,Naive,1.0,1.0,1.0,0.764,0.7,0.813
-Moirai-2.0,Drift,1.0,1.0,1.0,0.773,0.715,0.821
-TabPFN-TS,Chronos-2,0.0,0.0,0.0,-0.235,-0.329,-0.154
-TabPFN-TS,Toto-1.0,0.2,0.05,0.4,-0.149,-0.279,-0.025
-TabPFN-TS,TimesFM-2.5,0.3,0.1,0.5,-0.126,-0.232,-0.046
-TabPFN-TS,TiRex,0.25,0.05,0.45,-0.096,-0.211,0.014
-TabPFN-TS,Moirai-2.0,0.5,0.3,0.7,-0.049,-0.159,0.053
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Chronos-Bolt,0.5,0.3,0.7,0.024,-0.094,0.121
-TabPFN-TS,Sundial-Base,0.5,0.3,0.7,-0.001,-0.093,0.08
-TabPFN-TS,AutoARIMA,0.95,0.85,1.0,0.387,0.274,0.491
-TabPFN-TS,Stat. Ensemble,0.95,0.85,1.0,0.484,0.39,0.568
-TabPFN-TS,AutoETS,0.95,0.85,1.0,0.676,0.465,0.829
-TabPFN-TS,AutoTheta,1.0,1.0,1.0,0.559,0.468,0.641
-TabPFN-TS,Seasonal Naive,1.0,1.0,1.0,0.592,0.483,0.685
-TabPFN-TS,Naive,1.0,1.0,1.0,0.753,0.698,0.798
-TabPFN-TS,Drift,1.0,1.0,1.0,0.762,0.711,0.806
-Chronos-Bolt,Chronos-2,0.0,0.0,0.0,-0.266,-0.429,-0.154
-Chronos-Bolt,Toto-1.0,0.05,0.0,0.15,-0.177,-0.266,-0.097
-Chronos-Bolt,TimesFM-2.5,0.1,0.0,0.25,-0.154,-0.218,-0.101
-Chronos-Bolt,TiRex,0.1,0.0,0.25,-0.123,-0.183,-0.069
-Chronos-Bolt,Moirai-2.0,0.15,0.025,0.301,-0.075,-0.134,-0.024
-Chronos-Bolt,TabPFN-TS,0.5,0.3,0.7,-0.025,-0.137,0.086
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Sundial-Base,0.55,0.35,0.75,-0.026,-0.135,0.046
-Chronos-Bolt,AutoARIMA,1.0,1.0,1.0,0.372,0.287,0.466
-Chronos-Bolt,Stat. Ensemble,1.0,1.0,1.0,0.471,0.385,0.561
-Chronos-Bolt,AutoETS,1.0,1.0,1.0,0.664,0.456,0.823
-Chronos-Bolt,AutoTheta,1.0,1.0,1.0,0.548,0.464,0.625
-Chronos-Bolt,Seasonal Naive,1.0,1.0,1.0,0.582,0.486,0.675
-Chronos-Bolt,Naive,1.0,1.0,1.0,0.746,0.682,0.796
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.756,0.698,0.805
-Sundial-Base,Chronos-2,0.0,0.0,0.0,-0.234,-0.309,-0.169
-Sundial-Base,Toto-1.0,0.1,0.0,0.25,-0.148,-0.251,-0.025
-Sundial-Base,TimesFM-2.5,0.05,0.0,0.15,-0.125,-0.173,-0.063
-Sundial-Base,TiRex,0.05,0.0,0.15,-0.095,-0.18,0.025
-Sundial-Base,Moirai-2.0,0.1,0.0,0.25,-0.048,-0.116,0.053
-Sundial-Base,TabPFN-TS,0.5,0.3,0.7,0.001,-0.086,0.085
-Sundial-Base,Chronos-Bolt,0.45,0.25,0.65,0.025,-0.048,0.119
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,AutoARIMA,1.0,1.0,1.0,0.388,0.302,0.48
-Sundial-Base,Stat. Ensemble,1.0,1.0,1.0,0.485,0.404,0.566
-Sundial-Base,AutoETS,1.0,1.0,1.0,0.672,0.475,0.826
-Sundial-Base,AutoTheta,1.0,1.0,1.0,0.56,0.48,0.633
-Sundial-Base,Seasonal Naive,1.0,1.0,1.0,0.592,0.504,0.674
-Sundial-Base,Naive,1.0,1.0,1.0,0.753,0.702,0.798
-Sundial-Base,Drift,1.0,1.0,1.0,0.763,0.715,0.808
-AutoARIMA,Chronos-2,0.0,0.0,0.0,-1.016,-1.48,-0.701
-AutoARIMA,Toto-1.0,0.0,0.0,0.0,-0.875,-1.195,-0.66
-AutoARIMA,TimesFM-2.5,0.0,0.0,0.0,-0.839,-1.168,-0.623
-AutoARIMA,TiRex,0.0,0.0,0.0,-0.789,-1.05,-0.601
-AutoARIMA,Moirai-2.0,0.0,0.0,0.0,-0.713,-0.984,-0.532
-AutoARIMA,TabPFN-TS,0.05,0.0,0.15,-0.632,-0.965,-0.378
-AutoARIMA,Chronos-Bolt,0.0,0.0,0.0,-0.593,-0.873,-0.403
-AutoARIMA,Sundial-Base,0.0,0.0,0.0,-0.634,-0.922,-0.434
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,Stat. Ensemble,0.775,0.6,0.925,0.158,0.066,0.258
-AutoARIMA,AutoETS,0.775,0.6,0.95,0.493,0.136,0.747
-AutoARIMA,AutoTheta,0.8,0.6,0.95,0.281,0.178,0.381
-AutoARIMA,Seasonal Naive,0.875,0.75,0.975,0.334,0.206,0.456
-AutoARIMA,Naive,0.9,0.75,1.0,0.596,0.479,0.687
-AutoARIMA,Drift,0.9,0.75,1.0,0.612,0.496,0.7
-Stat. Ensemble,Chronos-2,0.0,0.0,0.0,-1.395,-1.901,-1.02
-Stat. Ensemble,Toto-1.0,0.0,0.0,0.0,-1.227,-1.689,-0.897
-Stat. Ensemble,TimesFM-2.5,0.0,0.0,0.0,-1.184,-1.624,-0.88
-Stat. Ensemble,TiRex,0.0,0.0,0.0,-1.125,-1.511,-0.826
-Stat. Ensemble,Moirai-2.0,0.0,0.0,0.0,-1.034,-1.432,-0.734
-Stat. Ensemble,TabPFN-TS,0.05,0.0,0.15,-0.939,-1.317,-0.639
-Stat. Ensemble,Chronos-Bolt,0.0,0.0,0.0,-0.892,-1.278,-0.626
-Stat. Ensemble,Sundial-Base,0.0,0.0,0.0,-0.941,-1.304,-0.678
-Stat. Ensemble,AutoARIMA,0.225,0.075,0.4,-0.188,-0.348,-0.07
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoETS,0.725,0.55,0.9,0.432,0.004,0.725
-Stat. Ensemble,AutoTheta,0.9,0.75,1.0,0.146,0.088,0.213
-Stat. Ensemble,Seasonal Naive,0.725,0.525,0.9,0.208,-0.0,0.366
-Stat. Ensemble,Naive,0.95,0.85,1.0,0.52,0.395,0.624
-Stat. Ensemble,Drift,1.0,1.0,1.0,0.539,0.421,0.64
-AutoETS,Chronos-2,0.0,0.0,0.0,-2.71,-5.874,-1.34
-AutoETS,Toto-1.0,0.0,0.0,0.0,-2.437,-5.367,-1.149
-AutoETS,TimesFM-2.5,0.0,0.0,0.0,-2.382,-5.287,-1.137
-AutoETS,TiRex,0.0,0.0,0.0,-2.298,-5.196,-1.056
-AutoETS,Moirai-2.0,0.0,0.0,0.0,-2.171,-5.048,-0.977
-AutoETS,TabPFN-TS,0.05,0.0,0.15,-2.09,-4.847,-0.87
-AutoETS,Chronos-Bolt,0.0,0.0,0.0,-1.974,-4.644,-0.837
-AutoETS,Sundial-Base,0.0,0.0,0.0,-2.046,-4.752,-0.906
-AutoETS,AutoARIMA,0.225,0.05,0.4,-0.971,-2.951,-0.157
-AutoETS,Stat. Ensemble,0.275,0.1,0.45,-0.759,-2.642,-0.004
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,AutoTheta,0.65,0.45,0.85,-0.532,-2.194,0.136
-AutoETS,Seasonal Naive,0.725,0.525,0.875,-0.4,-1.897,0.22
-AutoETS,Naive,0.75,0.55,0.95,0.097,-1.154,0.533
-AutoETS,Drift,0.8,0.6,0.95,0.128,-1.084,0.55
-AutoTheta,Chronos-2,0.0,0.0,0.0,-1.802,-2.419,-1.302
-AutoTheta,Toto-1.0,0.0,0.0,0.0,-1.606,-2.154,-1.18
-AutoTheta,TimesFM-2.5,0.0,0.0,0.0,-1.556,-2.107,-1.153
-AutoTheta,TiRex,0.0,0.0,0.0,-1.487,-1.971,-1.087
-AutoTheta,Moirai-2.0,0.0,0.0,0.0,-1.381,-1.863,-0.992
-AutoTheta,TabPFN-TS,0.0,0.0,0.0,-1.269,-1.786,-0.878
-AutoTheta,Chronos-Bolt,0.0,0.0,0.0,-1.214,-1.668,-0.867
-AutoTheta,Sundial-Base,0.0,0.0,0.0,-1.271,-1.728,-0.922
-AutoTheta,AutoARIMA,0.2,0.05,0.4,-0.39,-0.615,-0.216
-AutoTheta,Stat. Ensemble,0.1,0.0,0.25,-0.17,-0.271,-0.097
-AutoTheta,AutoETS,0.35,0.15,0.55,0.347,-0.157,0.687
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Seasonal Naive,0.7,0.5,0.9,0.074,-0.208,0.273
-AutoTheta,Naive,0.85,0.65,1.0,0.438,0.308,0.555
-AutoTheta,Drift,0.9,0.75,1.0,0.461,0.336,0.574
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-2.025,-2.936,-1.394
-Seasonal Naive,Toto-1.0,0.0,0.0,0.0,-1.813,-2.641,-1.285
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-1.759,-2.495,-1.259
-Seasonal Naive,TiRex,0.0,0.0,0.0,-1.684,-2.448,-1.175
-Seasonal Naive,Moirai-2.0,0.0,0.0,0.0,-1.57,-2.259,-1.095
-Seasonal Naive,TabPFN-TS,0.0,0.0,0.0,-1.449,-2.176,-0.936
-Seasonal Naive,Chronos-Bolt,0.0,0.0,0.0,-1.39,-2.073,-0.945
-Seasonal Naive,Sundial-Base,0.0,0.0,0.0,-1.452,-2.065,-1.017
-Seasonal Naive,AutoARIMA,0.125,0.025,0.25,-0.5,-0.839,-0.259
-Seasonal Naive,Stat. Ensemble,0.275,0.1,0.475,-0.263,-0.577,0.0
-Seasonal Naive,AutoETS,0.275,0.125,0.475,0.286,-0.282,0.655
-Seasonal Naive,AutoTheta,0.3,0.1,0.5,-0.079,-0.376,0.172
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Naive,0.7,0.525,0.85,0.394,0.19,0.555
-Seasonal Naive,Drift,0.85,0.65,1.0,0.418,0.219,0.575
-Naive,Chronos-2,0.0,0.0,0.0,-3.991,-5.118,-3.118
-Naive,Toto-1.0,0.0,0.0,0.0,-3.642,-4.863,-2.647
-Naive,TimesFM-2.5,0.0,0.0,0.0,-3.552,-4.721,-2.668
-Naive,TiRex,0.0,0.0,0.0,-3.428,-4.591,-2.469
-Naive,Moirai-2.0,0.0,0.0,0.0,-3.24,-4.339,-2.329
-Naive,TabPFN-TS,0.0,0.0,0.0,-3.041,-3.961,-2.314
-Naive,Chronos-Bolt,0.0,0.0,0.0,-2.943,-3.911,-2.141
-Naive,Sundial-Base,0.0,0.0,0.0,-3.045,-3.943,-2.361
-Naive,AutoARIMA,0.1,0.0,0.25,-1.475,-2.196,-0.918
-Naive,Stat. Ensemble,0.05,0.0,0.15,-1.084,-1.66,-0.654
-Naive,AutoETS,0.25,0.05,0.45,-0.107,-1.141,0.536
-Naive,AutoTheta,0.15,0.0,0.35,-0.781,-1.246,-0.445
-Naive,Seasonal Naive,0.3,0.15,0.475,-0.65,-1.249,-0.234
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,1.0,1.0,1.0,0.039,0.023,0.06
-Drift,Chronos-2,0.0,0.0,0.0,-4.196,-5.431,-3.251
-Drift,Toto-1.0,0.0,0.0,0.0,-3.832,-5.185,-2.788
-Drift,TimesFM-2.5,0.0,0.0,0.0,-3.738,-4.957,-2.832
-Drift,TiRex,0.0,0.0,0.0,-3.61,-4.86,-2.621
-Drift,Moirai-2.0,0.0,0.0,0.0,-3.414,-4.579,-2.506
-Drift,TabPFN-TS,0.0,0.0,0.0,-3.207,-4.157,-2.457
-Drift,Chronos-Bolt,0.0,0.0,0.0,-3.105,-4.13,-2.31
-Drift,Sundial-Base,0.0,0.0,0.0,-3.211,-4.217,-2.506
-Drift,AutoARIMA,0.1,0.0,0.25,-1.577,-2.334,-0.985
-Drift,Stat. Ensemble,0.0,0.0,0.0,-1.17,-1.781,-0.726
-Drift,AutoETS,0.2,0.05,0.4,-0.147,-1.224,0.52
-Drift,AutoTheta,0.1,0.0,0.25,-0.854,-1.347,-0.507
-Drift,Seasonal Naive,0.15,0.0,0.35,-0.717,-1.355,-0.28
-Drift,Naive,0.0,0.0,0.0,-0.041,-0.064,-0.024
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/domain_econ/leaderboard_MASE.csv b/tables/domain_econ/leaderboard_MASE.csv
deleted file mode 100644
index 515da64f17b35ad4ecad2c6b6e1609866e3f91e2..0000000000000000000000000000000000000000
--- a/tables/domain_econ/leaderboard_MASE.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Stat. Ensemble,86.30952380952381,38.477174892111854,0.0,74.63583592838711,0.0,0.0
-TiRex,75.5952380952381,36.87592043229662,0.0,0.1577310358200435,0.0,0.0
-Chronos-2,72.61904761904762,36.307128150625054,0.0,0.14296296275774828,0.0,0.0
-AutoETS,70.23809523809524,35.90887063284529,0.0,1.6644653908191018,0.0,0.0
-Toto-1.0,62.5,32.38399314015735,0.0,4.9976272313807435,0.16666666666666666,0.0
-AutoTheta,55.952380952380956,32.52926187728524,0.0,0.9511661320240354,0.0,0.0
-AutoARIMA,55.35714285714286,33.893658153503736,0.0,6.514016621697861,0.0,0.0
-Drift,54.76190476190476,29.639454010750132,0.0,0.41642842294117643,0.0,0.0
-TimesFM-2.5,50.5952380952381,32.83344752168508,0.0,0.3182864435592606,0.16666666666666666,0.0
-TabPFN-TS,44.04761904761905,28.784283550853363,0.0,19.382406450060035,0.0,0.0
-Chronos-Bolt,40.476190476190474,30.133730037212626,0.0,0.1589436945079739,0.0,0.0
-Moirai-2.0,39.285714285714285,28.236498726371508,0.0,0.2231920597172889,0.16666666666666666,0.0
-Sundial-Base,21.428571428571434,19.709514878708077,0.0,8.00438149490214,0.0,0.0
-Naive,13.69047619047619,15.593612409564518,0.0,0.43518170598039213,0.0,0.0
-Seasonal Naive,7.142857142857142,0.0,0.0,0.4101321087745098,0.0,0.0
diff --git a/tables/domain_econ/leaderboard_SQL.csv b/tables/domain_econ/leaderboard_SQL.csv
deleted file mode 100644
index 26bac4fb6c7604998bff6213ed6a2c881da42f08..0000000000000000000000000000000000000000
--- a/tables/domain_econ/leaderboard_SQL.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-TiRex,86.30952380952381,38.167872268859085,0.0,0.1577310358200435,0.0,0.0
-Chronos-2,85.11904761904762,37.73601239308477,0.0,0.14296296275774828,0.0,0.0
-Stat. Ensemble,78.57142857142858,37.11985318962454,0.0,74.63583592838711,0.0,0.0
-Toto-1.0,65.47619047619048,33.46942523050611,0.0,4.9976272313807435,0.16666666666666666,0.0
-AutoETS,62.5,29.185864234223647,0.0,1.6644653908191018,0.0,0.0
-TimesFM-2.5,54.761904761904766,32.77207032704751,0.0,0.3182864435592606,0.16666666666666666,0.0
-AutoARIMA,50.5952380952381,31.721452512923896,0.0,6.514016621697861,0.0,0.0
-TabPFN-TS,50.000000000000014,31.399100116246935,0.0,19.382406450060035,0.0,0.0
-Chronos-Bolt,50.0,31.818155351289157,0.0,0.1589436945079739,0.0,0.0
-Drift,43.45238095238095,25.58270358587049,0.0,0.41642842294117643,0.0,0.0
-Moirai-2.0,43.45238095238095,29.079628772649933,0.0,0.2231920597172889,0.16666666666666666,0.0
-AutoTheta,42.26190476190476,29.618968091908858,0.0,0.9511661320240354,0.0,0.0
-Sundial-Base,16.666666666666668,14.51026077809361,0.0,8.00438149490214,0.0,0.0
-Naive,13.69047619047619,11.510639986489046,0.0,0.43518170598039213,0.0,0.0
-Seasonal Naive,7.142857142857142,0.0,0.0,0.4101321087745098,0.0,0.0
diff --git a/tables/domain_econ/leaderboard_WAPE.csv b/tables/domain_econ/leaderboard_WAPE.csv
deleted file mode 100644
index 7a7abe93047aa3eccde63e89008ed80f0976daab..0000000000000000000000000000000000000000
--- a/tables/domain_econ/leaderboard_WAPE.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-TiRex,75.5952380952381,37.758720420324885,0.0,0.1577310358200435,0.0,0.0
-Stat. Ensemble,72.02380952380952,38.17771635240618,0.0,74.63583592838711,0.0,0.0
-Chronos-2,67.26190476190477,36.55873563764085,0.0,0.14296296275774828,0.0,0.0
-Toto-1.0,66.66666666666667,33.97027771884091,0.0,4.9976272313807435,0.16666666666666666,0.0
-TimesFM-2.5,63.09523809523808,35.892561173334556,0.0,0.3182864435592606,0.16666666666666666,0.0
-AutoETS,58.92857142857143,34.84116701303258,0.0,1.6644653908191018,0.0,0.0
-TabPFN-TS,58.333333333333336,34.28532719607597,0.0,19.382406450060035,0.0,0.0
-AutoARIMA,50.5952380952381,35.73217052389407,0.0,6.514016621697861,0.0,0.0
-Chronos-Bolt,49.404761904761905,30.47814442259772,0.0,0.1589436945079739,0.0,0.0
-Drift,48.214285714285715,28.435825322795704,0.0,0.41642842294117643,0.0,0.0
-Moirai-2.0,47.023809523809526,28.27751413794253,0.0,0.2231920597172889,0.16666666666666666,0.0
-AutoTheta,45.83333333333333,31.81292365948549,0.0,0.9511661320240354,0.0,0.0
-Naive,20.833333333333332,15.872311480991785,0.0,0.43518170598039213,0.0,0.0
-Sundial-Base,17.261904761904763,17.737236553561875,0.0,8.00438149490214,0.0,0.0
-Seasonal Naive,8.928571428571427,0.0,0.0,0.4101321087745098,0.0,0.0
diff --git a/tables/domain_econ/leaderboard_WQL.csv b/tables/domain_econ/leaderboard_WQL.csv
deleted file mode 100644
index a887713caa7d8583136f60bb22ec5ed1cb01c858..0000000000000000000000000000000000000000
--- a/tables/domain_econ/leaderboard_WQL.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-TiRex,83.33333333333334,42.09146585989647,0.0,0.1577310358200435,0.0,0.0
-Chronos-2,76.78571428571426,40.960757226189024,0.0,0.14296296275774828,0.0,0.0
-Toto-1.0,70.83333333333334,38.07263005492061,0.0,4.9976272313807435,0.16666666666666666,0.0
-TimesFM-2.5,66.07142857142857,39.26649292250398,0.0,0.3182864435592606,0.16666666666666666,0.0
-TabPFN-TS,62.5,38.29459805551885,0.0,19.382406450060035,0.0,0.0
-Stat. Ensemble,61.9047619047619,37.99224244127147,0.0,74.63583592838711,0.0,0.0
-Chronos-Bolt,58.33333333333333,35.53495230927829,0.0,0.1589436945079739,0.0,0.0
-AutoETS,55.35714285714286,36.76571975679717,0.0,1.6644653908191018,0.0,0.0
-Moirai-2.0,52.976190476190474,32.793225134905136,0.0,0.2231920597172889,0.16666666666666666,0.0
-AutoARIMA,46.42857142857143,34.4461529963365,0.0,6.514016621697861,0.0,0.0
-AutoTheta,36.90476190476191,29.146207716766202,0.0,0.9511661320240354,0.0,0.0
-Drift,33.92857142857143,23.82864899904751,0.0,0.41642842294117643,0.0,0.0
-Sundial-Base,19.642857142857142,17.532849713917752,0.0,8.00438149490214,0.0,0.0
-Naive,15.47619047619048,11.37195841028552,0.0,0.43518170598039213,0.0,0.0
-Seasonal Naive,9.523809523809524,0.0,0.0,0.4101321087745098,0.0,0.0
diff --git a/tables/domain_econ/pairwise_MASE.csv b/tables/domain_econ/pairwise_MASE.csv
deleted file mode 100644
index 283475720c5aa1ca288473e6da03053c9c9b4363..0000000000000000000000000000000000000000
--- a/tables/domain_econ/pairwise_MASE.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,TiRex,0.75,0.5,1.0,0.025,-0.023,0.072
-Stat. Ensemble,Chronos-2,0.75,0.5,1.0,0.034,-0.014,0.087
-Stat. Ensemble,AutoETS,0.75,0.5,1.0,0.04,0.016,0.067
-Stat. Ensemble,Toto-1.0,0.75,0.417,1.0,0.09,0.025,0.15
-Stat. Ensemble,AutoTheta,0.917,0.75,1.0,0.088,0.053,0.126
-Stat. Ensemble,AutoARIMA,0.833,0.583,1.0,0.069,0.021,0.135
-Stat. Ensemble,Drift,0.917,0.75,1.0,0.126,0.051,0.221
-Stat. Ensemble,TimesFM-2.5,0.833,0.583,1.0,0.084,0.03,0.143
-Stat. Ensemble,TabPFN-TS,0.833,0.583,1.0,0.136,0.054,0.213
-Stat. Ensemble,Chronos-Bolt,0.917,0.75,1.0,0.119,0.068,0.168
-Stat. Ensemble,Moirai-2.0,0.917,0.75,1.0,0.143,0.081,0.197
-Stat. Ensemble,Sundial-Base,0.917,0.75,1.0,0.234,0.156,0.302
-Stat. Ensemble,Naive,1.0,1.0,1.0,0.271,0.195,0.346
-Stat. Ensemble,Seasonal Naive,1.0,1.0,1.0,0.385,0.289,0.476
-TiRex,Stat. Ensemble,0.25,0.0,0.5,-0.026,-0.078,0.023
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,Chronos-2,0.583,0.333,0.833,0.009,-0.026,0.043
-TiRex,AutoETS,0.5,0.25,0.75,0.015,-0.013,0.045
-TiRex,Toto-1.0,0.583,0.333,0.833,0.066,-0.018,0.15
-TiRex,AutoTheta,0.833,0.583,1.0,0.064,-0.009,0.126
-TiRex,AutoARIMA,0.667,0.417,0.917,0.045,-0.033,0.133
-TiRex,Drift,0.75,0.5,1.0,0.103,-0.002,0.214
-TiRex,TimesFM-2.5,0.833,0.583,1.0,0.06,0.02,0.109
-TiRex,TabPFN-TS,0.833,0.583,1.0,0.114,0.033,0.194
-TiRex,Chronos-Bolt,0.917,0.75,1.0,0.097,0.05,0.149
-TiRex,Moirai-2.0,0.917,0.75,1.0,0.12,0.05,0.194
-TiRex,Sundial-Base,0.917,0.75,1.0,0.214,0.149,0.271
-TiRex,Naive,1.0,1.0,1.0,0.252,0.163,0.335
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.369,0.261,0.466
-Chronos-2,Stat. Ensemble,0.25,0.0,0.5,-0.035,-0.095,0.014
-Chronos-2,TiRex,0.417,0.167,0.667,-0.009,-0.045,0.026
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,AutoETS,0.5,0.25,0.75,0.006,-0.027,0.041
-Chronos-2,Toto-1.0,0.583,0.333,0.833,0.058,-0.037,0.145
-Chronos-2,AutoTheta,0.583,0.333,0.833,0.056,-0.023,0.124
-Chronos-2,AutoARIMA,0.667,0.417,0.917,0.037,-0.046,0.122
-Chronos-2,Drift,0.583,0.333,0.833,0.095,-0.024,0.22
-Chronos-2,TimesFM-2.5,0.75,0.5,1.0,0.052,0.004,0.099
-Chronos-2,TabPFN-TS,0.833,0.583,1.0,0.106,0.025,0.194
-Chronos-2,Chronos-Bolt,1.0,1.0,1.0,0.088,0.044,0.143
-Chronos-2,Moirai-2.0,1.0,1.0,1.0,0.112,0.045,0.186
-Chronos-2,Sundial-Base,1.0,1.0,1.0,0.207,0.156,0.255
-Chronos-2,Naive,1.0,1.0,1.0,0.245,0.159,0.328
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.363,0.264,0.451
-AutoETS,Stat. Ensemble,0.25,0.0,0.5,-0.042,-0.072,-0.016
-AutoETS,TiRex,0.5,0.25,0.75,-0.015,-0.047,0.013
-AutoETS,Chronos-2,0.5,0.25,0.75,-0.006,-0.043,0.026
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Toto-1.0,0.583,0.333,0.833,0.052,-0.025,0.122
-AutoETS,AutoTheta,0.667,0.417,0.917,0.05,-0.003,0.1
-AutoETS,AutoARIMA,0.667,0.417,0.917,0.03,-0.036,0.112
-AutoETS,Drift,0.667,0.417,0.917,0.089,-0.005,0.196
-AutoETS,TimesFM-2.5,0.75,0.5,1.0,0.046,-0.003,0.098
-AutoETS,TabPFN-TS,0.667,0.417,0.917,0.1,0.02,0.183
-AutoETS,Chronos-Bolt,0.833,0.583,1.0,0.083,0.041,0.127
-AutoETS,Moirai-2.0,0.833,0.583,1.0,0.107,0.05,0.164
-AutoETS,Sundial-Base,0.917,0.75,1.0,0.202,0.132,0.262
-AutoETS,Naive,1.0,1.0,1.0,0.241,0.162,0.316
-AutoETS,Seasonal Naive,1.0,1.0,1.0,0.359,0.256,0.456
-Toto-1.0,Stat. Ensemble,0.25,0.0,0.583,-0.099,-0.177,-0.025
-Toto-1.0,TiRex,0.417,0.167,0.667,-0.071,-0.176,0.018
-Toto-1.0,Chronos-2,0.417,0.167,0.667,-0.062,-0.17,0.035
-Toto-1.0,AutoETS,0.417,0.167,0.667,-0.055,-0.139,0.024
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,AutoTheta,0.417,0.167,0.75,-0.002,-0.089,0.077
-Toto-1.0,AutoARIMA,0.583,0.333,0.833,-0.023,-0.108,0.048
-Toto-1.0,Drift,0.5,0.25,0.75,0.039,-0.065,0.133
-Toto-1.0,TimesFM-2.5,0.75,0.5,0.958,-0.007,-0.103,0.063
-Toto-1.0,TabPFN-TS,0.667,0.417,0.917,0.051,-0.107,0.186
-Toto-1.0,Chronos-Bolt,0.75,0.5,0.958,0.032,-0.034,0.096
-Toto-1.0,Moirai-2.0,0.833,0.625,0.958,0.058,0.018,0.106
-Toto-1.0,Sundial-Base,0.833,0.583,1.0,0.158,0.042,0.265
-Toto-1.0,Naive,1.0,1.0,1.0,0.199,0.116,0.285
-Toto-1.0,Seasonal Naive,0.917,0.75,1.0,0.324,0.199,0.433
-AutoTheta,Stat. Ensemble,0.083,0.0,0.25,-0.097,-0.144,-0.056
-AutoTheta,TiRex,0.167,0.0,0.417,-0.069,-0.144,0.009
-AutoTheta,Chronos-2,0.417,0.167,0.667,-0.059,-0.142,0.022
-AutoTheta,AutoETS,0.333,0.083,0.583,-0.053,-0.111,0.003
-AutoTheta,Toto-1.0,0.583,0.25,0.833,0.002,-0.083,0.082
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,AutoARIMA,0.5,0.25,0.75,-0.021,-0.102,0.059
-AutoTheta,Drift,0.333,0.083,0.583,0.041,-0.014,0.136
-AutoTheta,TimesFM-2.5,0.5,0.25,0.75,-0.005,-0.086,0.079
-AutoTheta,TabPFN-TS,0.583,0.25,0.833,0.053,-0.043,0.132
-AutoTheta,Chronos-Bolt,0.667,0.417,0.917,0.034,-0.034,0.1
-AutoTheta,Moirai-2.0,0.75,0.5,1.0,0.06,-0.011,0.123
-AutoTheta,Sundial-Base,0.917,0.75,1.0,0.16,0.076,0.236
-AutoTheta,Naive,1.0,1.0,1.0,0.201,0.136,0.266
-AutoTheta,Seasonal Naive,1.0,1.0,1.0,0.325,0.231,0.412
-AutoARIMA,Stat. Ensemble,0.167,0.0,0.417,-0.075,-0.156,-0.022
-AutoARIMA,TiRex,0.333,0.083,0.583,-0.047,-0.154,0.032
-AutoARIMA,Chronos-2,0.333,0.083,0.583,-0.038,-0.139,0.044
-AutoARIMA,AutoETS,0.333,0.083,0.583,-0.031,-0.126,0.035
-AutoARIMA,Toto-1.0,0.417,0.167,0.667,0.022,-0.051,0.097
-AutoARIMA,AutoTheta,0.5,0.25,0.75,0.02,-0.063,0.093
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,Drift,0.5,0.25,0.75,0.06,-0.052,0.172
-AutoARIMA,TimesFM-2.5,0.583,0.25,0.833,0.016,-0.047,0.078
-AutoARIMA,TabPFN-TS,0.667,0.333,0.917,0.072,-0.036,0.171
-AutoARIMA,Chronos-Bolt,0.667,0.417,0.917,0.054,-0.009,0.113
-AutoARIMA,Moirai-2.0,0.583,0.333,0.833,0.079,-0.006,0.156
-AutoARIMA,Sundial-Base,0.75,0.5,1.0,0.177,0.068,0.264
-AutoARIMA,Naive,0.917,0.75,1.0,0.217,0.128,0.295
-AutoARIMA,Seasonal Naive,1.0,1.0,1.0,0.339,0.256,0.422
-Drift,Stat. Ensemble,0.083,0.0,0.25,-0.144,-0.284,-0.054
-Drift,TiRex,0.25,0.0,0.5,-0.115,-0.273,0.002
-Drift,Chronos-2,0.417,0.167,0.667,-0.105,-0.282,0.024
-Drift,AutoETS,0.333,0.083,0.583,-0.098,-0.244,0.005
-Drift,Toto-1.0,0.5,0.25,0.75,-0.041,-0.153,0.061
-Drift,AutoTheta,0.667,0.417,0.917,-0.043,-0.158,0.014
-Drift,AutoARIMA,0.5,0.25,0.75,-0.064,-0.208,0.05
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
-Drift,TimesFM-2.5,0.417,0.167,0.667,-0.048,-0.227,0.071
-Drift,TabPFN-TS,0.583,0.25,0.833,0.012,-0.193,0.142
-Drift,Chronos-Bolt,0.583,0.333,0.833,-0.007,-0.119,0.086
-Drift,Moirai-2.0,0.667,0.417,0.917,0.02,-0.09,0.108
-Drift,Sundial-Base,0.833,0.583,1.0,0.124,-0.064,0.234
-Drift,Naive,0.917,0.75,1.0,0.166,0.089,0.241
-Drift,Seasonal Naive,0.917,0.75,1.0,0.296,0.127,0.41
-TimesFM-2.5,Stat. Ensemble,0.167,0.0,0.417,-0.092,-0.167,-0.031
-TimesFM-2.5,TiRex,0.167,0.0,0.417,-0.064,-0.122,-0.02
-TimesFM-2.5,Chronos-2,0.25,0.0,0.5,-0.055,-0.11,-0.004
-TimesFM-2.5,AutoETS,0.25,0.0,0.5,-0.048,-0.109,0.003
-TimesFM-2.5,Toto-1.0,0.25,0.042,0.5,0.007,-0.067,0.093
-TimesFM-2.5,AutoTheta,0.5,0.25,0.75,0.005,-0.086,0.079
-TimesFM-2.5,AutoARIMA,0.417,0.167,0.75,-0.016,-0.085,0.045
-TimesFM-2.5,Drift,0.583,0.333,0.833,0.045,-0.076,0.185
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TabPFN-TS,0.5,0.25,0.75,0.057,-0.034,0.15
-TimesFM-2.5,Chronos-Bolt,0.583,0.333,0.833,0.039,-0.007,0.091
-TimesFM-2.5,Moirai-2.0,0.667,0.417,0.917,0.064,-0.008,0.143
-TimesFM-2.5,Sundial-Base,0.917,0.75,1.0,0.163,0.095,0.228
-TimesFM-2.5,Naive,0.917,0.75,1.0,0.204,0.109,0.293
-TimesFM-2.5,Seasonal Naive,0.917,0.75,1.0,0.328,0.226,0.415
-TabPFN-TS,Stat. Ensemble,0.167,0.0,0.417,-0.158,-0.271,-0.057
-TabPFN-TS,TiRex,0.167,0.0,0.417,-0.128,-0.241,-0.034
-TabPFN-TS,Chronos-2,0.167,0.0,0.417,-0.118,-0.241,-0.026
-TabPFN-TS,AutoETS,0.333,0.083,0.583,-0.111,-0.224,-0.02
-TabPFN-TS,Toto-1.0,0.333,0.083,0.583,-0.053,-0.228,0.097
-TabPFN-TS,AutoTheta,0.417,0.167,0.75,-0.056,-0.153,0.042
-TabPFN-TS,AutoARIMA,0.333,0.083,0.667,-0.077,-0.207,0.035
-TabPFN-TS,Drift,0.417,0.167,0.75,-0.012,-0.165,0.162
-TabPFN-TS,TimesFM-2.5,0.5,0.25,0.75,-0.06,-0.177,0.033
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Chronos-Bolt,0.5,0.25,0.75,-0.019,-0.156,0.089
-TabPFN-TS,Moirai-2.0,0.5,0.25,0.75,0.008,-0.146,0.14
-TabPFN-TS,Sundial-Base,0.667,0.417,0.917,0.113,0.02,0.191
-TabPFN-TS,Naive,0.667,0.417,0.917,0.156,0.023,0.274
-TabPFN-TS,Seasonal Naive,1.0,1.0,1.0,0.288,0.181,0.389
-Chronos-Bolt,Stat. Ensemble,0.083,0.0,0.25,-0.136,-0.202,-0.073
-Chronos-Bolt,TiRex,0.083,0.0,0.25,-0.107,-0.175,-0.053
-Chronos-Bolt,Chronos-2,0.0,0.0,0.0,-0.097,-0.167,-0.046
-Chronos-Bolt,AutoETS,0.167,0.0,0.417,-0.09,-0.145,-0.043
-Chronos-Bolt,Toto-1.0,0.25,0.042,0.5,-0.033,-0.107,0.033
-Chronos-Bolt,AutoTheta,0.333,0.083,0.583,-0.036,-0.112,0.033
-Chronos-Bolt,AutoARIMA,0.333,0.083,0.583,-0.057,-0.128,0.009
-Chronos-Bolt,Drift,0.417,0.167,0.667,0.007,-0.094,0.106
-Chronos-Bolt,TimesFM-2.5,0.417,0.167,0.667,-0.04,-0.1,0.007
-Chronos-Bolt,TabPFN-TS,0.5,0.25,0.75,0.019,-0.097,0.135
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Moirai-2.0,0.417,0.167,0.667,0.026,-0.016,0.079
-Chronos-Bolt,Sundial-Base,0.917,0.75,1.0,0.13,0.036,0.202
-Chronos-Bolt,Naive,0.917,0.75,1.0,0.172,0.107,0.235
-Chronos-Bolt,Seasonal Naive,0.833,0.583,1.0,0.301,0.198,0.389
-Moirai-2.0,Stat. Ensemble,0.083,0.0,0.25,-0.166,-0.245,-0.088
-Moirai-2.0,TiRex,0.083,0.0,0.25,-0.137,-0.24,-0.053
-Moirai-2.0,Chronos-2,0.0,0.0,0.0,-0.127,-0.229,-0.048
-Moirai-2.0,AutoETS,0.167,0.0,0.417,-0.12,-0.196,-0.053
-Moirai-2.0,Toto-1.0,0.167,0.042,0.375,-0.061,-0.118,-0.018
-Moirai-2.0,AutoTheta,0.25,0.0,0.5,-0.064,-0.141,0.011
-Moirai-2.0,AutoARIMA,0.417,0.167,0.667,-0.086,-0.185,0.006
-Moirai-2.0,Drift,0.333,0.083,0.583,-0.02,-0.121,0.083
-Moirai-2.0,TimesFM-2.5,0.333,0.083,0.583,-0.068,-0.166,0.008
-Moirai-2.0,TabPFN-TS,0.5,0.25,0.75,-0.008,-0.163,0.127
-Moirai-2.0,Chronos-Bolt,0.583,0.333,0.833,-0.027,-0.086,0.015
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Sundial-Base,0.833,0.583,1.0,0.106,-0.0,0.194
-Moirai-2.0,Naive,0.917,0.75,1.0,0.15,0.086,0.21
-Moirai-2.0,Seasonal Naive,0.833,0.583,1.0,0.282,0.162,0.388
-Sundial-Base,Stat. Ensemble,0.083,0.0,0.25,-0.305,-0.434,-0.185
-Sundial-Base,TiRex,0.083,0.0,0.25,-0.272,-0.372,-0.176
-Sundial-Base,Chronos-2,0.0,0.0,0.0,-0.261,-0.342,-0.184
-Sundial-Base,AutoETS,0.083,0.0,0.25,-0.253,-0.356,-0.153
-Sundial-Base,Toto-1.0,0.167,0.0,0.417,-0.187,-0.361,-0.044
-Sundial-Base,AutoTheta,0.083,0.0,0.25,-0.19,-0.309,-0.083
-Sundial-Base,AutoARIMA,0.25,0.0,0.5,-0.215,-0.358,-0.073
-Sundial-Base,Drift,0.167,0.0,0.417,-0.141,-0.305,0.06
-Sundial-Base,TimesFM-2.5,0.083,0.0,0.25,-0.195,-0.296,-0.104
-Sundial-Base,TabPFN-TS,0.333,0.083,0.583,-0.127,-0.237,-0.021
-Sundial-Base,Chronos-Bolt,0.083,0.0,0.25,-0.149,-0.254,-0.037
-Sundial-Base,Moirai-2.0,0.167,0.0,0.417,-0.119,-0.24,0.0
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Naive,0.583,0.333,0.833,0.049,-0.051,0.164
-Sundial-Base,Seasonal Naive,0.833,0.583,1.0,0.197,0.082,0.299
-Naive,Stat. Ensemble,0.0,0.0,0.0,-0.372,-0.529,-0.242
-Naive,TiRex,0.0,0.0,0.0,-0.337,-0.504,-0.194
-Naive,Chronos-2,0.0,0.0,0.0,-0.325,-0.488,-0.189
-Naive,AutoETS,0.0,0.0,0.0,-0.317,-0.462,-0.193
-Naive,Toto-1.0,0.0,0.0,0.0,-0.248,-0.398,-0.131
-Naive,AutoTheta,0.0,0.0,0.0,-0.251,-0.362,-0.157
-Naive,AutoARIMA,0.083,0.0,0.25,-0.277,-0.419,-0.147
-Naive,Drift,0.083,0.0,0.25,-0.2,-0.318,-0.098
-Naive,TimesFM-2.5,0.083,0.0,0.25,-0.257,-0.415,-0.122
-Naive,TabPFN-TS,0.333,0.083,0.583,-0.185,-0.377,-0.024
-Naive,Chronos-Bolt,0.083,0.0,0.25,-0.208,-0.307,-0.119
-Naive,Moirai-2.0,0.083,0.0,0.25,-0.176,-0.265,-0.094
-Naive,Sundial-Base,0.417,0.167,0.667,-0.051,-0.197,0.049
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Seasonal Naive,0.75,0.542,0.917,0.156,0.021,0.261
-Seasonal Naive,Stat. Ensemble,0.0,0.0,0.0,-0.625,-0.907,-0.407
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.584,-0.872,-0.353
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-0.57,-0.821,-0.358
-Seasonal Naive,AutoETS,0.0,0.0,0.0,-0.56,-0.837,-0.345
-Seasonal Naive,Toto-1.0,0.083,0.0,0.25,-0.479,-0.763,-0.248
-Seasonal Naive,AutoTheta,0.0,0.0,0.0,-0.482,-0.7,-0.301
-Seasonal Naive,AutoARIMA,0.0,0.0,0.0,-0.513,-0.73,-0.344
-Seasonal Naive,Drift,0.083,0.0,0.25,-0.421,-0.694,-0.146
-Seasonal Naive,TimesFM-2.5,0.083,0.0,0.25,-0.489,-0.709,-0.292
-Seasonal Naive,TabPFN-TS,0.0,0.0,0.0,-0.404,-0.637,-0.222
-Seasonal Naive,Chronos-Bolt,0.167,0.0,0.417,-0.431,-0.638,-0.246
-Seasonal Naive,Moirai-2.0,0.167,0.0,0.417,-0.393,-0.634,-0.193
-Seasonal Naive,Sundial-Base,0.167,0.0,0.417,-0.245,-0.427,-0.09
-Seasonal Naive,Naive,0.25,0.083,0.458,-0.185,-0.353,-0.022
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/domain_econ/pairwise_SQL.csv b/tables/domain_econ/pairwise_SQL.csv
deleted file mode 100644
index 8375cb48b5a40499437894864f4c74ca2af9eb12..0000000000000000000000000000000000000000
--- a/tables/domain_econ/pairwise_SQL.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,Chronos-2,0.667,0.417,0.917,0.007,-0.028,0.036
-TiRex,Stat. Ensemble,0.75,0.5,1.0,0.017,-0.034,0.06
-TiRex,Toto-1.0,0.667,0.333,0.917,0.071,-0.005,0.143
-TiRex,AutoETS,0.75,0.5,1.0,0.127,0.025,0.268
-TiRex,TimesFM-2.5,0.917,0.75,1.0,0.08,0.038,0.122
-TiRex,AutoARIMA,0.833,0.583,1.0,0.094,0.019,0.181
-TiRex,Chronos-Bolt,0.917,0.75,1.0,0.093,0.05,0.141
-TiRex,TabPFN-TS,0.833,0.583,1.0,0.099,0.031,0.166
-TiRex,Moirai-2.0,0.917,0.75,1.0,0.128,0.063,0.197
-TiRex,Drift,0.917,0.75,1.0,0.169,0.055,0.293
-TiRex,AutoTheta,0.917,0.75,1.0,0.121,0.053,0.185
-TiRex,Sundial-Base,1.0,1.0,1.0,0.277,0.209,0.334
-TiRex,Naive,1.0,1.0,1.0,0.301,0.213,0.382
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.382,0.282,0.467
-Chronos-2,TiRex,0.333,0.083,0.583,-0.007,-0.037,0.027
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,Stat. Ensemble,0.833,0.583,1.0,0.01,-0.042,0.051
-Chronos-2,Toto-1.0,0.667,0.333,0.917,0.064,-0.02,0.141
-Chronos-2,AutoETS,0.75,0.5,1.0,0.121,0.02,0.261
-Chronos-2,TimesFM-2.5,0.917,0.75,1.0,0.074,0.039,0.111
-Chronos-2,AutoARIMA,0.75,0.5,1.0,0.088,0.009,0.174
-Chronos-2,Chronos-Bolt,1.0,1.0,1.0,0.087,0.043,0.142
-Chronos-2,TabPFN-TS,0.833,0.583,1.0,0.092,0.031,0.161
-Chronos-2,Moirai-2.0,1.0,1.0,1.0,0.122,0.059,0.192
-Chronos-2,Drift,0.917,0.75,1.0,0.163,0.036,0.303
-Chronos-2,AutoTheta,0.917,0.75,1.0,0.115,0.046,0.178
-Chronos-2,Sundial-Base,1.0,1.0,1.0,0.272,0.215,0.324
-Chronos-2,Naive,1.0,1.0,1.0,0.296,0.202,0.388
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.377,0.286,0.457
-Stat. Ensemble,TiRex,0.25,0.0,0.5,-0.017,-0.064,0.033
-Stat. Ensemble,Chronos-2,0.167,0.0,0.417,-0.01,-0.053,0.04
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,Toto-1.0,0.667,0.333,0.917,0.055,-0.011,0.117
-Stat. Ensemble,AutoETS,0.667,0.417,0.917,0.112,0.011,0.257
-Stat. Ensemble,TimesFM-2.5,0.833,0.583,1.0,0.065,0.013,0.121
-Stat. Ensemble,AutoARIMA,0.833,0.583,1.0,0.079,0.03,0.146
-Stat. Ensemble,Chronos-Bolt,0.917,0.75,1.0,0.078,0.024,0.131
-Stat. Ensemble,TabPFN-TS,0.833,0.583,1.0,0.083,0.023,0.143
-Stat. Ensemble,Moirai-2.0,0.917,0.75,1.0,0.113,0.048,0.171
-Stat. Ensemble,Drift,0.917,0.75,1.0,0.155,0.061,0.279
-Stat. Ensemble,AutoTheta,1.0,1.0,1.0,0.107,0.07,0.148
-Stat. Ensemble,Sundial-Base,1.0,1.0,1.0,0.264,0.191,0.329
-Stat. Ensemble,Naive,1.0,1.0,1.0,0.289,0.206,0.375
-Stat. Ensemble,Seasonal Naive,1.0,1.0,1.0,0.371,0.288,0.452
-Toto-1.0,TiRex,0.333,0.083,0.667,-0.076,-0.167,0.005
-Toto-1.0,Chronos-2,0.333,0.083,0.667,-0.069,-0.164,0.019
-Toto-1.0,Stat. Ensemble,0.333,0.083,0.667,-0.058,-0.133,0.011
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,AutoETS,0.5,0.25,0.752,0.06,-0.086,0.229
-Toto-1.0,TimesFM-2.5,0.75,0.5,0.958,0.01,-0.075,0.075
-Toto-1.0,AutoARIMA,0.667,0.417,0.917,0.026,-0.06,0.101
-Toto-1.0,Chronos-Bolt,0.667,0.417,0.875,0.024,-0.031,0.081
-Toto-1.0,TabPFN-TS,0.667,0.417,0.917,0.03,-0.103,0.146
-Toto-1.0,Moirai-2.0,0.833,0.625,0.958,0.062,0.022,0.109
-Toto-1.0,Drift,0.75,0.5,1.0,0.106,-0.014,0.216
-Toto-1.0,AutoTheta,0.667,0.417,0.917,0.055,-0.028,0.135
-Toto-1.0,Sundial-Base,0.833,0.583,1.0,0.222,0.115,0.321
-Toto-1.0,Naive,0.917,0.75,1.0,0.248,0.157,0.335
-Toto-1.0,Seasonal Naive,0.917,0.75,1.0,0.335,0.216,0.435
-AutoETS,TiRex,0.25,0.0,0.5,-0.145,-0.367,-0.025
-AutoETS,Chronos-2,0.25,0.0,0.5,-0.137,-0.354,-0.02
-AutoETS,Stat. Ensemble,0.333,0.083,0.583,-0.126,-0.345,-0.012
-AutoETS,Toto-1.0,0.5,0.248,0.75,-0.064,-0.297,0.08
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,TimesFM-2.5,0.5,0.25,0.75,-0.053,-0.259,0.072
-AutoETS,AutoARIMA,0.5,0.167,0.75,-0.037,-0.271,0.112
-AutoETS,Chronos-Bolt,0.75,0.5,1.0,-0.039,-0.251,0.086
-AutoETS,TabPFN-TS,0.667,0.417,0.917,-0.032,-0.263,0.102
-AutoETS,Moirai-2.0,0.75,0.5,1.0,0.001,-0.211,0.131
-AutoETS,Drift,0.75,0.5,1.0,0.048,-0.2,0.237
-AutoETS,AutoTheta,0.75,0.5,1.0,-0.006,-0.228,0.119
-AutoETS,Sundial-Base,0.917,0.75,1.0,0.172,0.002,0.286
-AutoETS,Naive,0.917,0.75,1.0,0.2,0.001,0.337
-AutoETS,Seasonal Naive,0.917,0.75,1.0,0.292,0.084,0.43
-TimesFM-2.5,TiRex,0.083,0.0,0.25,-0.087,-0.139,-0.039
-TimesFM-2.5,Chronos-2,0.083,0.0,0.25,-0.08,-0.124,-0.041
-TimesFM-2.5,Stat. Ensemble,0.167,0.0,0.417,-0.069,-0.137,-0.014
-TimesFM-2.5,Toto-1.0,0.25,0.042,0.5,-0.01,-0.081,0.07
-TimesFM-2.5,AutoETS,0.5,0.25,0.75,0.051,-0.077,0.205
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,AutoARIMA,0.583,0.333,0.833,0.015,-0.066,0.089
-TimesFM-2.5,Chronos-Bolt,0.583,0.333,0.833,0.014,-0.034,0.072
-TimesFM-2.5,TabPFN-TS,0.5,0.25,0.75,0.02,-0.059,0.098
-TimesFM-2.5,Moirai-2.0,0.583,0.333,0.833,0.052,-0.014,0.127
-TimesFM-2.5,Drift,0.75,0.5,1.0,0.097,-0.046,0.255
-TimesFM-2.5,AutoTheta,0.75,0.5,1.0,0.045,-0.043,0.116
-TimesFM-2.5,Sundial-Base,1.0,1.0,1.0,0.214,0.15,0.272
-TimesFM-2.5,Naive,0.917,0.75,1.0,0.24,0.136,0.34
-TimesFM-2.5,Seasonal Naive,0.917,0.75,1.0,0.328,0.224,0.407
-AutoARIMA,TiRex,0.167,0.0,0.417,-0.104,-0.221,-0.019
-AutoARIMA,Chronos-2,0.25,0.0,0.5,-0.097,-0.21,-0.009
-AutoARIMA,Stat. Ensemble,0.167,0.0,0.417,-0.086,-0.171,-0.031
-AutoARIMA,Toto-1.0,0.333,0.083,0.583,-0.026,-0.112,0.056
-AutoARIMA,AutoETS,0.5,0.25,0.833,0.036,-0.126,0.213
-AutoARIMA,TimesFM-2.5,0.417,0.167,0.667,-0.016,-0.097,0.062
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,Chronos-Bolt,0.417,0.167,0.667,-0.001,-0.08,0.069
-AutoARIMA,TabPFN-TS,0.5,0.167,0.75,0.005,-0.101,0.09
-AutoARIMA,Moirai-2.0,0.5,0.25,0.75,0.037,-0.064,0.125
-AutoARIMA,Drift,0.583,0.333,0.833,0.082,-0.049,0.224
-AutoARIMA,AutoTheta,0.583,0.25,0.833,0.03,-0.058,0.107
-AutoARIMA,Sundial-Base,0.75,0.5,1.0,0.201,0.09,0.294
-AutoARIMA,Naive,0.917,0.75,1.0,0.228,0.128,0.322
-AutoARIMA,Seasonal Naive,1.0,1.0,1.0,0.317,0.242,0.396
-Chronos-Bolt,TiRex,0.083,0.0,0.25,-0.103,-0.164,-0.052
-Chronos-Bolt,Chronos-2,0.0,0.0,0.0,-0.095,-0.165,-0.044
-Chronos-Bolt,Stat. Ensemble,0.083,0.0,0.25,-0.084,-0.151,-0.024
-Chronos-Bolt,Toto-1.0,0.333,0.125,0.583,-0.025,-0.088,0.03
-Chronos-Bolt,AutoETS,0.25,0.0,0.5,0.037,-0.094,0.201
-Chronos-Bolt,TimesFM-2.5,0.417,0.167,0.667,-0.014,-0.077,0.032
-Chronos-Bolt,AutoARIMA,0.583,0.333,0.833,0.001,-0.074,0.074
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,TabPFN-TS,0.5,0.25,0.75,0.006,-0.093,0.108
-Chronos-Bolt,Moirai-2.0,0.5,0.25,0.75,0.039,-0.001,0.09
-Chronos-Bolt,Drift,0.75,0.5,1.0,0.084,-0.028,0.199
-Chronos-Bolt,AutoTheta,0.667,0.417,0.917,0.031,-0.044,0.102
-Chronos-Bolt,Sundial-Base,0.917,0.75,1.0,0.202,0.109,0.273
-Chronos-Bolt,Naive,1.0,1.0,1.0,0.229,0.158,0.296
-Chronos-Bolt,Seasonal Naive,0.917,0.75,1.0,0.318,0.219,0.402
-TabPFN-TS,TiRex,0.167,0.0,0.417,-0.109,-0.2,-0.031
-TabPFN-TS,Chronos-2,0.167,0.0,0.417,-0.102,-0.192,-0.032
-TabPFN-TS,Stat. Ensemble,0.167,0.0,0.417,-0.091,-0.167,-0.023
-TabPFN-TS,Toto-1.0,0.333,0.083,0.583,-0.031,-0.171,0.093
-TabPFN-TS,AutoETS,0.333,0.083,0.583,0.031,-0.114,0.208
-TabPFN-TS,TimesFM-2.5,0.5,0.25,0.75,-0.02,-0.109,0.056
-TabPFN-TS,AutoARIMA,0.5,0.25,0.833,-0.005,-0.099,0.092
-TabPFN-TS,Chronos-Bolt,0.5,0.25,0.75,-0.006,-0.121,0.085
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Moirai-2.0,0.583,0.331,0.833,0.033,-0.089,0.147
-TabPFN-TS,Drift,0.5,0.25,0.833,0.078,-0.057,0.251
-TabPFN-TS,AutoTheta,0.5,0.25,0.833,0.025,-0.038,0.091
-TabPFN-TS,Sundial-Base,0.917,0.75,1.0,0.198,0.122,0.263
-TabPFN-TS,Naive,0.833,0.583,1.0,0.225,0.109,0.337
-TabPFN-TS,Seasonal Naive,1.0,1.0,1.0,0.314,0.229,0.401
-Moirai-2.0,TiRex,0.083,0.0,0.25,-0.147,-0.245,-0.067
-Moirai-2.0,Chronos-2,0.0,0.0,0.0,-0.139,-0.237,-0.063
-Moirai-2.0,Stat. Ensemble,0.083,0.0,0.25,-0.128,-0.206,-0.05
-Moirai-2.0,Toto-1.0,0.167,0.042,0.375,-0.066,-0.123,-0.022
-Moirai-2.0,AutoETS,0.25,0.0,0.5,-0.002,-0.151,0.175
-Moirai-2.0,TimesFM-2.5,0.417,0.167,0.667,-0.055,-0.145,0.014
-Moirai-2.0,AutoARIMA,0.5,0.25,0.75,-0.039,-0.142,0.06
-Moirai-2.0,Chronos-Bolt,0.5,0.25,0.75,-0.04,-0.099,0.001
-Moirai-2.0,TabPFN-TS,0.417,0.167,0.669,-0.034,-0.173,0.082
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Drift,0.583,0.333,0.833,0.047,-0.076,0.17
-Moirai-2.0,AutoTheta,0.5,0.25,0.75,-0.008,-0.087,0.069
-Moirai-2.0,Sundial-Base,0.833,0.583,1.0,0.17,0.072,0.253
-Moirai-2.0,Naive,0.917,0.75,1.0,0.199,0.12,0.272
-Moirai-2.0,Seasonal Naive,0.833,0.583,1.0,0.291,0.176,0.391
-Drift,TiRex,0.083,0.0,0.25,-0.204,-0.414,-0.058
-Drift,Chronos-2,0.083,0.0,0.25,-0.195,-0.435,-0.037
-Drift,Stat. Ensemble,0.083,0.0,0.25,-0.183,-0.386,-0.065
-Drift,Toto-1.0,0.25,0.0,0.5,-0.119,-0.276,0.014
-Drift,AutoETS,0.25,0.0,0.5,-0.051,-0.31,0.166
-Drift,TimesFM-2.5,0.25,0.0,0.5,-0.107,-0.342,0.044
-Drift,AutoARIMA,0.417,0.167,0.667,-0.09,-0.289,0.047
-Drift,Chronos-Bolt,0.25,0.0,0.5,-0.091,-0.248,0.027
-Drift,TabPFN-TS,0.5,0.167,0.75,-0.085,-0.334,0.054
-Drift,Moirai-2.0,0.417,0.167,0.667,-0.049,-0.204,0.07
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
-Drift,AutoTheta,0.75,0.5,0.917,-0.057,-0.232,0.028
-Drift,Sundial-Base,0.917,0.75,1.0,0.13,-0.097,0.26
-Drift,Naive,0.917,0.75,1.0,0.159,0.082,0.234
-Drift,Seasonal Naive,0.917,0.75,1.0,0.256,0.054,0.378
-AutoTheta,TiRex,0.083,0.0,0.25,-0.138,-0.227,-0.056
-AutoTheta,Chronos-2,0.083,0.0,0.25,-0.13,-0.217,-0.048
-AutoTheta,Stat. Ensemble,0.0,0.0,0.0,-0.119,-0.173,-0.075
-AutoTheta,Toto-1.0,0.333,0.083,0.583,-0.058,-0.156,0.027
-AutoTheta,AutoETS,0.25,0.0,0.5,0.006,-0.136,0.186
-AutoTheta,TimesFM-2.5,0.25,0.0,0.5,-0.047,-0.131,0.041
-AutoTheta,AutoARIMA,0.417,0.167,0.75,-0.031,-0.12,0.055
-AutoTheta,Chronos-Bolt,0.333,0.083,0.583,-0.032,-0.114,0.042
-AutoTheta,TabPFN-TS,0.5,0.167,0.75,-0.026,-0.101,0.037
-AutoTheta,Moirai-2.0,0.5,0.25,0.75,0.008,-0.075,0.08
-AutoTheta,Drift,0.25,0.083,0.5,0.054,-0.029,0.188
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Sundial-Base,0.917,0.75,1.0,0.177,0.099,0.254
-AutoTheta,Naive,1.0,1.0,1.0,0.205,0.128,0.291
-AutoTheta,Seasonal Naive,1.0,1.0,1.0,0.296,0.216,0.375
-Sundial-Base,TiRex,0.0,0.0,0.0,-0.383,-0.501,-0.264
-Sundial-Base,Chronos-2,0.0,0.0,0.0,-0.373,-0.48,-0.274
-Sundial-Base,Stat. Ensemble,0.0,0.0,0.0,-0.36,-0.49,-0.236
-Sundial-Base,Toto-1.0,0.167,0.0,0.417,-0.285,-0.472,-0.13
-Sundial-Base,AutoETS,0.083,0.0,0.25,-0.207,-0.401,-0.002
-Sundial-Base,TimesFM-2.5,0.0,0.0,0.0,-0.272,-0.374,-0.176
-Sundial-Base,AutoARIMA,0.25,0.0,0.5,-0.252,-0.417,-0.099
-Sundial-Base,Chronos-Bolt,0.083,0.0,0.25,-0.254,-0.376,-0.123
-Sundial-Base,TabPFN-TS,0.083,0.0,0.25,-0.246,-0.357,-0.139
-Sundial-Base,Moirai-2.0,0.167,0.0,0.417,-0.205,-0.339,-0.077
-Sundial-Base,Drift,0.083,0.0,0.25,-0.149,-0.351,0.088
-Sundial-Base,AutoTheta,0.083,0.0,0.25,-0.215,-0.341,-0.11
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Naive,0.5,0.25,0.75,0.034,-0.089,0.177
-Sundial-Base,Seasonal Naive,0.833,0.583,1.0,0.145,0.018,0.25
-Naive,TiRex,0.0,0.0,0.0,-0.431,-0.619,-0.27
-Naive,Chronos-2,0.0,0.0,0.0,-0.421,-0.633,-0.253
-Naive,Stat. Ensemble,0.0,0.0,0.0,-0.407,-0.6,-0.259
-Naive,Toto-1.0,0.083,0.0,0.25,-0.33,-0.503,-0.186
-Naive,AutoETS,0.083,0.0,0.25,-0.25,-0.508,-0.001
-Naive,TimesFM-2.5,0.083,0.0,0.25,-0.316,-0.515,-0.157
-Naive,AutoARIMA,0.083,0.0,0.25,-0.296,-0.475,-0.146
-Naive,Chronos-Bolt,0.0,0.0,0.0,-0.298,-0.42,-0.188
-Naive,TabPFN-TS,0.167,0.0,0.417,-0.29,-0.508,-0.122
-Naive,Moirai-2.0,0.083,0.0,0.25,-0.248,-0.374,-0.137
-Naive,Drift,0.083,0.0,0.25,-0.189,-0.305,-0.089
-Naive,AutoTheta,0.0,0.0,0.0,-0.257,-0.41,-0.146
-Naive,Sundial-Base,0.5,0.25,0.75,-0.035,-0.215,0.082
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Seasonal Naive,0.75,0.542,0.917,0.115,-0.055,0.229
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.617,-0.877,-0.392
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-0.606,-0.842,-0.401
-Seasonal Naive,Stat. Ensemble,0.0,0.0,0.0,-0.59,-0.824,-0.404
-Seasonal Naive,Toto-1.0,0.083,0.0,0.25,-0.503,-0.771,-0.275
-Seasonal Naive,AutoETS,0.083,0.0,0.25,-0.412,-0.755,-0.091
-Seasonal Naive,TimesFM-2.5,0.083,0.0,0.25,-0.487,-0.686,-0.288
-Seasonal Naive,AutoARIMA,0.0,0.0,0.0,-0.465,-0.656,-0.319
-Seasonal Naive,Chronos-Bolt,0.083,0.0,0.25,-0.467,-0.673,-0.28
-Seasonal Naive,TabPFN-TS,0.0,0.0,0.0,-0.458,-0.668,-0.296
-Seasonal Naive,Moirai-2.0,0.167,0.0,0.417,-0.41,-0.643,-0.214
-Seasonal Naive,Drift,0.083,0.0,0.25,-0.344,-0.607,-0.057
-Seasonal Naive,AutoTheta,0.0,0.0,0.0,-0.421,-0.599,-0.275
-Seasonal Naive,Sundial-Base,0.167,0.0,0.417,-0.17,-0.333,-0.019
-Seasonal Naive,Naive,0.25,0.083,0.458,-0.13,-0.297,0.052
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/domain_econ/pairwise_WAPE.csv b/tables/domain_econ/pairwise_WAPE.csv
deleted file mode 100644
index 5a672381746bc44ade14788e1e3feab93b0199db..0000000000000000000000000000000000000000
--- a/tables/domain_econ/pairwise_WAPE.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,Stat. Ensemble,0.583,0.333,0.833,-0.007,-0.118,0.073
-TiRex,Chronos-2,0.667,0.333,0.917,0.019,-0.026,0.055
-TiRex,Toto-1.0,0.5,0.25,0.833,0.057,-0.013,0.132
-TiRex,TimesFM-2.5,0.833,0.667,1.0,0.029,-0.01,0.066
-TiRex,AutoETS,0.667,0.417,0.917,0.045,-0.022,0.113
-TiRex,TabPFN-TS,0.75,0.5,1.0,0.053,-0.079,0.157
-TiRex,AutoARIMA,0.583,0.333,0.833,0.032,-0.075,0.116
-TiRex,Chronos-Bolt,0.917,0.75,1.0,0.105,0.043,0.176
-TiRex,Drift,0.75,0.5,1.0,0.13,-0.069,0.279
-TiRex,Moirai-2.0,0.917,0.75,1.0,0.132,0.04,0.235
-TiRex,AutoTheta,0.667,0.417,0.917,0.087,-0.092,0.23
-TiRex,Naive,0.917,0.75,1.0,0.26,0.135,0.394
-TiRex,Sundial-Base,0.917,0.75,1.0,0.243,0.154,0.322
-TiRex,Seasonal Naive,0.917,0.75,1.0,0.378,0.252,0.503
-Stat. Ensemble,TiRex,0.417,0.167,0.667,0.007,-0.079,0.105
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,Chronos-2,0.333,0.083,0.583,0.026,-0.052,0.124
-Stat. Ensemble,Toto-1.0,0.583,0.25,0.833,0.064,-0.026,0.153
-Stat. Ensemble,TimesFM-2.5,0.5,0.25,0.75,0.036,-0.044,0.138
-Stat. Ensemble,AutoETS,0.75,0.5,1.0,0.051,0.006,0.104
-Stat. Ensemble,TabPFN-TS,0.5,0.25,0.75,0.059,-0.02,0.135
-Stat. Ensemble,AutoARIMA,0.833,0.583,1.0,0.038,-0.015,0.077
-Stat. Ensemble,Chronos-Bolt,0.75,0.5,1.0,0.111,0.016,0.202
-Stat. Ensemble,Drift,0.833,0.583,1.0,0.136,0.017,0.263
-Stat. Ensemble,Moirai-2.0,0.667,0.333,0.917,0.138,0.035,0.235
-Stat. Ensemble,AutoTheta,0.917,0.75,1.0,0.093,0.006,0.186
-Stat. Ensemble,Naive,1.0,1.0,1.0,0.265,0.136,0.387
-Stat. Ensemble,Sundial-Base,1.0,1.0,1.0,0.248,0.146,0.339
-Stat. Ensemble,Seasonal Naive,1.0,1.0,1.0,0.382,0.284,0.478
-Chronos-2,TiRex,0.333,0.083,0.667,-0.019,-0.059,0.025
-Chronos-2,Stat. Ensemble,0.667,0.417,0.917,-0.026,-0.142,0.05
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,Toto-1.0,0.5,0.25,0.833,0.039,-0.05,0.132
-Chronos-2,TimesFM-2.5,0.5,0.167,0.75,0.01,-0.025,0.05
-Chronos-2,AutoETS,0.667,0.417,0.917,0.026,-0.04,0.085
-Chronos-2,TabPFN-TS,0.667,0.417,0.917,0.035,-0.112,0.148
-Chronos-2,AutoARIMA,0.583,0.333,0.833,0.013,-0.106,0.11
-Chronos-2,Chronos-Bolt,0.75,0.5,1.0,0.087,0.014,0.175
-Chronos-2,Drift,0.667,0.417,0.917,0.114,-0.101,0.291
-Chronos-2,Moirai-2.0,0.667,0.333,0.917,0.115,0.018,0.219
-Chronos-2,AutoTheta,0.667,0.417,0.917,0.07,-0.127,0.214
-Chronos-2,Naive,0.833,0.583,1.0,0.246,0.102,0.391
-Chronos-2,Sundial-Base,1.0,1.0,1.0,0.229,0.153,0.304
-Chronos-2,Seasonal Naive,0.917,0.75,1.0,0.366,0.237,0.489
-Toto-1.0,TiRex,0.5,0.167,0.75,-0.061,-0.152,0.013
-Toto-1.0,Stat. Ensemble,0.417,0.167,0.75,-0.068,-0.181,0.025
-Toto-1.0,Chronos-2,0.5,0.167,0.75,-0.041,-0.152,0.047
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,TimesFM-2.5,0.583,0.333,0.833,-0.03,-0.14,0.051
-Toto-1.0,AutoETS,0.5,0.25,0.75,-0.013,-0.1,0.063
-Toto-1.0,TabPFN-TS,0.583,0.333,0.833,-0.005,-0.164,0.134
-Toto-1.0,AutoARIMA,0.583,0.333,0.833,-0.027,-0.14,0.072
-Toto-1.0,Chronos-Bolt,0.75,0.542,0.958,0.05,0.006,0.092
-Toto-1.0,Drift,0.667,0.417,0.917,0.077,-0.097,0.197
-Toto-1.0,Moirai-2.0,0.833,0.625,1.0,0.079,0.026,0.142
-Toto-1.0,AutoTheta,0.667,0.417,0.917,0.032,-0.139,0.166
-Toto-1.0,Naive,1.0,1.0,1.0,0.215,0.104,0.331
-Toto-1.0,Sundial-Base,0.833,0.583,1.0,0.197,0.07,0.294
-Toto-1.0,Seasonal Naive,0.917,0.75,1.0,0.34,0.203,0.463
-TimesFM-2.5,TiRex,0.167,0.0,0.333,-0.03,-0.071,0.01
-TimesFM-2.5,Stat. Ensemble,0.5,0.25,0.75,-0.037,-0.161,0.042
-TimesFM-2.5,Chronos-2,0.5,0.25,0.833,-0.011,-0.052,0.025
-TimesFM-2.5,Toto-1.0,0.417,0.167,0.667,0.029,-0.054,0.123
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,AutoETS,0.583,0.331,0.833,0.016,-0.058,0.087
-TimesFM-2.5,TabPFN-TS,0.5,0.25,0.75,0.024,-0.121,0.142
-TimesFM-2.5,AutoARIMA,0.667,0.417,0.917,0.002,-0.108,0.082
-TimesFM-2.5,Chronos-Bolt,0.667,0.417,0.875,0.078,0.002,0.167
-TimesFM-2.5,Drift,0.75,0.5,1.0,0.104,-0.116,0.272
-TimesFM-2.5,Moirai-2.0,0.583,0.333,0.833,0.106,0.001,0.216
-TimesFM-2.5,AutoTheta,0.75,0.5,1.0,0.06,-0.138,0.209
-TimesFM-2.5,Naive,0.833,0.583,1.0,0.238,0.088,0.384
-TimesFM-2.5,Sundial-Base,1.0,1.0,1.0,0.221,0.142,0.296
-TimesFM-2.5,Seasonal Naive,0.917,0.75,1.0,0.359,0.235,0.479
-AutoETS,TiRex,0.333,0.083,0.583,-0.047,-0.127,0.022
-AutoETS,Stat. Ensemble,0.25,0.0,0.5,-0.054,-0.115,-0.006
-AutoETS,Chronos-2,0.333,0.083,0.583,-0.027,-0.093,0.039
-AutoETS,Toto-1.0,0.5,0.25,0.75,0.013,-0.067,0.091
-AutoETS,TimesFM-2.5,0.417,0.167,0.669,-0.016,-0.095,0.055
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,TabPFN-TS,0.417,0.167,0.75,0.008,-0.094,0.112
-AutoETS,AutoARIMA,0.583,0.333,0.833,-0.014,-0.108,0.063
-AutoETS,Chronos-Bolt,0.667,0.333,0.917,0.063,-0.003,0.135
-AutoETS,Drift,0.583,0.333,0.833,0.09,-0.071,0.231
-AutoETS,Moirai-2.0,0.667,0.333,0.917,0.092,0.012,0.167
-AutoETS,AutoTheta,0.667,0.417,0.917,0.044,-0.086,0.148
-AutoETS,Naive,0.917,0.75,1.0,0.225,0.099,0.346
-AutoETS,Sundial-Base,0.917,0.75,1.0,0.208,0.127,0.279
-AutoETS,Seasonal Naive,1.0,1.0,1.0,0.348,0.248,0.455
-TabPFN-TS,TiRex,0.25,0.0,0.5,-0.056,-0.187,0.073
-TabPFN-TS,Stat. Ensemble,0.5,0.25,0.75,-0.063,-0.156,0.019
-TabPFN-TS,Chronos-2,0.333,0.083,0.583,-0.036,-0.174,0.101
-TabPFN-TS,Toto-1.0,0.417,0.167,0.667,0.005,-0.155,0.141
-TabPFN-TS,TimesFM-2.5,0.5,0.25,0.75,-0.025,-0.165,0.108
-TabPFN-TS,AutoETS,0.583,0.25,0.833,-0.009,-0.126,0.086
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,AutoARIMA,0.5,0.25,0.75,-0.023,-0.135,0.081
-TabPFN-TS,Chronos-Bolt,0.583,0.331,0.833,0.055,-0.107,0.185
-TabPFN-TS,Drift,0.583,0.333,0.833,0.082,-0.067,0.234
-TabPFN-TS,Moirai-2.0,0.583,0.331,0.833,0.084,-0.089,0.226
-TabPFN-TS,AutoTheta,0.583,0.333,0.833,0.036,-0.065,0.138
-TabPFN-TS,Naive,0.833,0.583,1.0,0.219,0.073,0.351
-TabPFN-TS,Sundial-Base,0.917,0.75,1.0,0.201,0.088,0.308
-TabPFN-TS,Seasonal Naive,1.0,1.0,1.0,0.343,0.242,0.437
-AutoARIMA,TiRex,0.417,0.167,0.667,-0.033,-0.131,0.07
-AutoARIMA,Stat. Ensemble,0.167,0.0,0.417,-0.04,-0.084,0.014
-AutoARIMA,Chronos-2,0.417,0.167,0.667,-0.013,-0.124,0.096
-AutoARIMA,Toto-1.0,0.417,0.167,0.667,0.027,-0.077,0.123
-AutoARIMA,TimesFM-2.5,0.333,0.083,0.583,-0.003,-0.089,0.098
-AutoARIMA,AutoETS,0.417,0.167,0.667,0.014,-0.067,0.097
-AutoARIMA,TabPFN-TS,0.5,0.25,0.75,0.022,-0.089,0.119
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,Chronos-Bolt,0.417,0.167,0.667,0.076,-0.037,0.184
-AutoARIMA,Drift,0.5,0.25,0.75,0.102,-0.037,0.249
-AutoARIMA,Moirai-2.0,0.5,0.25,0.75,0.104,-0.025,0.23
-AutoARIMA,AutoTheta,0.417,0.167,0.667,0.057,-0.064,0.19
-AutoARIMA,Naive,0.75,0.5,0.917,0.236,0.084,0.383
-AutoARIMA,Sundial-Base,0.833,0.583,1.0,0.219,0.084,0.33
-AutoARIMA,Seasonal Naive,1.0,1.0,1.0,0.357,0.24,0.471
-Chronos-Bolt,TiRex,0.083,0.0,0.25,-0.117,-0.213,-0.045
-Chronos-Bolt,Stat. Ensemble,0.25,0.0,0.5,-0.125,-0.253,-0.016
-Chronos-Bolt,Chronos-2,0.25,0.0,0.5,-0.096,-0.213,-0.014
-Chronos-Bolt,Toto-1.0,0.25,0.042,0.458,-0.053,-0.101,-0.006
-Chronos-Bolt,TimesFM-2.5,0.333,0.125,0.583,-0.084,-0.2,-0.002
-Chronos-Bolt,AutoETS,0.333,0.083,0.667,-0.067,-0.156,0.003
-Chronos-Bolt,TabPFN-TS,0.417,0.167,0.669,-0.058,-0.227,0.097
-Chronos-Bolt,AutoARIMA,0.583,0.333,0.833,-0.082,-0.226,0.035
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Drift,0.75,0.5,1.0,0.029,-0.15,0.149
-Chronos-Bolt,Moirai-2.0,0.417,0.167,0.667,0.031,-0.022,0.094
-Chronos-Bolt,AutoTheta,0.667,0.417,0.917,-0.02,-0.201,0.115
-Chronos-Bolt,Naive,0.833,0.583,1.0,0.174,0.068,0.284
-Chronos-Bolt,Sundial-Base,0.917,0.75,1.0,0.155,0.026,0.239
-Chronos-Bolt,Seasonal Naive,0.833,0.583,1.0,0.305,0.17,0.432
-Drift,TiRex,0.25,0.0,0.5,-0.15,-0.388,0.065
-Drift,Stat. Ensemble,0.167,0.0,0.417,-0.158,-0.356,-0.017
-Drift,Chronos-2,0.333,0.083,0.583,-0.128,-0.41,0.092
-Drift,Toto-1.0,0.333,0.083,0.583,-0.084,-0.246,0.088
-Drift,TimesFM-2.5,0.25,0.0,0.5,-0.116,-0.374,0.104
-Drift,AutoETS,0.417,0.167,0.667,-0.098,-0.3,0.066
-Drift,TabPFN-TS,0.417,0.167,0.667,-0.089,-0.305,0.063
-Drift,AutoARIMA,0.5,0.25,0.75,-0.114,-0.332,0.036
-Drift,Chronos-Bolt,0.25,0.0,0.5,-0.029,-0.175,0.13
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
-Drift,Moirai-2.0,0.417,0.167,0.667,0.002,-0.146,0.163
-Drift,AutoTheta,0.75,0.5,1.0,-0.05,-0.184,0.016
-Drift,Naive,0.917,0.75,1.0,0.149,0.045,0.251
-Drift,Sundial-Base,0.833,0.583,1.0,0.13,-0.09,0.296
-Drift,Seasonal Naive,0.917,0.75,1.0,0.284,0.11,0.391
-Moirai-2.0,TiRex,0.083,0.0,0.25,-0.152,-0.307,-0.042
-Moirai-2.0,Stat. Ensemble,0.333,0.083,0.667,-0.16,-0.308,-0.037
-Moirai-2.0,Chronos-2,0.333,0.083,0.667,-0.131,-0.281,-0.018
-Moirai-2.0,Toto-1.0,0.167,0.0,0.375,-0.086,-0.166,-0.027
-Moirai-2.0,TimesFM-2.5,0.417,0.167,0.667,-0.119,-0.275,-0.001
-Moirai-2.0,AutoETS,0.333,0.083,0.667,-0.101,-0.201,-0.012
-Moirai-2.0,TabPFN-TS,0.417,0.167,0.669,-0.091,-0.291,0.082
-Moirai-2.0,AutoARIMA,0.5,0.25,0.75,-0.116,-0.299,0.024
-Moirai-2.0,Chronos-Bolt,0.583,0.333,0.833,-0.032,-0.104,0.022
-Moirai-2.0,Drift,0.583,0.333,0.833,-0.002,-0.195,0.127
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,AutoTheta,0.5,0.25,0.75,-0.052,-0.228,0.084
-Moirai-2.0,Naive,0.75,0.5,1.0,0.147,0.051,0.248
-Moirai-2.0,Sundial-Base,0.833,0.583,1.0,0.128,-0.003,0.227
-Moirai-2.0,Seasonal Naive,0.75,0.5,1.0,0.283,0.152,0.405
-AutoTheta,TiRex,0.333,0.083,0.583,-0.096,-0.299,0.084
-AutoTheta,Stat. Ensemble,0.083,0.0,0.25,-0.103,-0.229,-0.006
-AutoTheta,Chronos-2,0.333,0.083,0.583,-0.075,-0.273,0.113
-AutoTheta,Toto-1.0,0.333,0.083,0.583,-0.033,-0.199,0.122
-AutoTheta,TimesFM-2.5,0.25,0.0,0.5,-0.064,-0.263,0.122
-AutoTheta,AutoETS,0.333,0.083,0.583,-0.046,-0.174,0.079
-AutoTheta,TabPFN-TS,0.417,0.167,0.667,-0.038,-0.16,0.061
-AutoTheta,AutoARIMA,0.583,0.333,0.833,-0.061,-0.235,0.061
-AutoTheta,Chronos-Bolt,0.333,0.083,0.583,0.019,-0.13,0.167
-AutoTheta,Drift,0.25,0.0,0.5,0.047,-0.016,0.156
-AutoTheta,Moirai-2.0,0.5,0.25,0.75,0.049,-0.092,0.186
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Naive,0.833,0.583,1.0,0.189,0.084,0.29
-AutoTheta,Sundial-Base,0.833,0.583,1.0,0.171,0.057,0.303
-AutoTheta,Seasonal Naive,1.0,1.0,1.0,0.318,0.237,0.391
-Naive,TiRex,0.083,0.0,0.25,-0.352,-0.649,-0.156
-Naive,Stat. Ensemble,0.0,0.0,0.0,-0.361,-0.631,-0.157
-Naive,Chronos-2,0.167,0.0,0.417,-0.326,-0.642,-0.113
-Naive,Toto-1.0,0.0,0.0,0.0,-0.274,-0.494,-0.116
-Naive,TimesFM-2.5,0.167,0.0,0.417,-0.312,-0.623,-0.097
-Naive,AutoETS,0.083,0.0,0.25,-0.291,-0.53,-0.11
-Naive,TabPFN-TS,0.167,0.0,0.417,-0.28,-0.54,-0.079
-Naive,AutoARIMA,0.25,0.083,0.5,-0.309,-0.62,-0.092
-Naive,Chronos-Bolt,0.167,0.0,0.417,-0.21,-0.396,-0.073
-Naive,Drift,0.083,0.0,0.25,-0.176,-0.335,-0.047
-Naive,Moirai-2.0,0.25,0.0,0.5,-0.173,-0.33,-0.053
-Naive,AutoTheta,0.167,0.0,0.417,-0.234,-0.408,-0.092
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Sundial-Base,0.583,0.333,0.833,-0.023,-0.218,0.11
-Naive,Seasonal Naive,0.75,0.542,0.917,0.159,0.001,0.281
-Sundial-Base,TiRex,0.083,0.0,0.25,-0.322,-0.476,-0.182
-Sundial-Base,Stat. Ensemble,0.0,0.0,0.0,-0.331,-0.513,-0.171
-Sundial-Base,Chronos-2,0.0,0.0,0.0,-0.297,-0.436,-0.181
-Sundial-Base,Toto-1.0,0.167,0.0,0.417,-0.246,-0.416,-0.075
-Sundial-Base,TimesFM-2.5,0.0,0.0,0.0,-0.283,-0.421,-0.165
-Sundial-Base,AutoETS,0.083,0.0,0.25,-0.262,-0.386,-0.145
-Sundial-Base,TabPFN-TS,0.083,0.0,0.25,-0.252,-0.445,-0.097
-Sundial-Base,AutoARIMA,0.167,0.0,0.417,-0.28,-0.493,-0.091
-Sundial-Base,Chronos-Bolt,0.083,0.0,0.25,-0.183,-0.315,-0.026
-Sundial-Base,Drift,0.167,0.0,0.417,-0.149,-0.421,0.082
-Sundial-Base,Moirai-2.0,0.167,0.0,0.417,-0.147,-0.294,0.002
-Sundial-Base,AutoTheta,0.167,0.0,0.417,-0.206,-0.435,-0.061
-Sundial-Base,Naive,0.417,0.167,0.667,0.022,-0.123,0.179
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Seasonal Naive,0.833,0.583,1.0,0.177,0.057,0.284
-Seasonal Naive,TiRex,0.083,0.0,0.25,-0.607,-1.014,-0.337
-Seasonal Naive,Stat. Ensemble,0.0,0.0,0.0,-0.618,-0.915,-0.396
-Seasonal Naive,Chronos-2,0.083,0.0,0.25,-0.576,-0.957,-0.311
-Seasonal Naive,Toto-1.0,0.083,0.0,0.25,-0.514,-0.863,-0.255
-Seasonal Naive,TimesFM-2.5,0.083,0.0,0.25,-0.56,-0.92,-0.308
-Seasonal Naive,AutoETS,0.0,0.0,0.0,-0.535,-0.834,-0.33
-Seasonal Naive,TabPFN-TS,0.0,0.0,0.0,-0.522,-0.775,-0.319
-Seasonal Naive,AutoARIMA,0.0,0.0,0.0,-0.556,-0.891,-0.315
-Seasonal Naive,Chronos-Bolt,0.167,0.0,0.417,-0.438,-0.76,-0.205
-Seasonal Naive,Drift,0.083,0.0,0.25,-0.397,-0.643,-0.124
-Seasonal Naive,Moirai-2.0,0.25,0.0,0.5,-0.394,-0.681,-0.179
-Seasonal Naive,AutoTheta,0.0,0.0,0.0,-0.467,-0.643,-0.311
-Seasonal Naive,Naive,0.25,0.083,0.458,-0.189,-0.391,-0.001
-Seasonal Naive,Sundial-Base,0.167,0.0,0.417,-0.216,-0.396,-0.06
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/domain_econ/pairwise_WQL.csv b/tables/domain_econ/pairwise_WQL.csv
deleted file mode 100644
index aacab92ade6d42a196177723655f8cd48184593f..0000000000000000000000000000000000000000
--- a/tables/domain_econ/pairwise_WQL.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,Chronos-2,0.583,0.333,0.833,0.019,-0.029,0.058
-TiRex,Toto-1.0,0.667,0.333,0.917,0.065,0.009,0.127
-TiRex,TimesFM-2.5,0.833,0.667,1.0,0.047,0.005,0.084
-TiRex,TabPFN-TS,0.833,0.583,1.0,0.062,-0.038,0.149
-TiRex,Stat. Ensemble,0.75,0.5,1.0,0.066,-0.055,0.161
-TiRex,Chronos-Bolt,0.917,0.75,1.0,0.102,0.047,0.167
-TiRex,AutoETS,0.833,0.583,1.0,0.084,0.017,0.145
-TiRex,Moirai-2.0,0.833,0.583,1.0,0.138,0.051,0.236
-TiRex,AutoARIMA,0.75,0.5,1.0,0.117,-0.008,0.227
-TiRex,AutoTheta,0.833,0.583,1.0,0.183,0.017,0.322
-TiRex,Drift,0.917,0.75,1.0,0.24,0.039,0.386
-TiRex,Sundial-Base,0.917,0.75,1.0,0.298,0.205,0.38
-TiRex,Naive,1.0,1.0,1.0,0.347,0.221,0.471
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.421,0.287,0.546
-Chronos-2,TiRex,0.417,0.167,0.667,-0.02,-0.062,0.028
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,Toto-1.0,0.5,0.25,0.833,0.047,-0.03,0.132
-Chronos-2,TimesFM-2.5,0.667,0.333,0.917,0.028,-0.008,0.061
-Chronos-2,TabPFN-TS,0.667,0.417,0.917,0.043,-0.066,0.134
-Chronos-2,Stat. Ensemble,0.833,0.583,1.0,0.048,-0.082,0.141
-Chronos-2,Chronos-Bolt,0.667,0.417,0.917,0.084,0.014,0.167
-Chronos-2,AutoETS,0.917,0.75,1.0,0.066,0.004,0.112
-Chronos-2,Moirai-2.0,0.667,0.333,0.917,0.122,0.031,0.22
-Chronos-2,AutoARIMA,0.75,0.5,1.0,0.099,-0.035,0.22
-Chronos-2,AutoTheta,0.917,0.75,1.0,0.167,-0.006,0.299
-Chronos-2,Drift,0.917,0.75,1.0,0.225,0.01,0.391
-Chronos-2,Sundial-Base,1.0,1.0,1.0,0.284,0.209,0.358
-Chronos-2,Naive,0.917,0.75,1.0,0.334,0.191,0.471
-Chronos-2,Seasonal Naive,0.917,0.75,1.0,0.41,0.281,0.527
-Toto-1.0,TiRex,0.333,0.083,0.667,-0.069,-0.145,-0.009
-Toto-1.0,Chronos-2,0.5,0.167,0.75,-0.049,-0.152,0.029
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,TimesFM-2.5,0.583,0.333,0.833,-0.02,-0.115,0.049
-Toto-1.0,TabPFN-TS,0.583,0.333,0.833,-0.004,-0.135,0.114
-Toto-1.0,Stat. Ensemble,0.583,0.333,0.833,0.001,-0.133,0.109
-Toto-1.0,Chronos-Bolt,0.833,0.667,1.0,0.039,0.004,0.074
-Toto-1.0,AutoETS,0.667,0.417,0.917,0.021,-0.071,0.095
-Toto-1.0,Moirai-2.0,0.917,0.792,1.0,0.079,0.025,0.148
-Toto-1.0,AutoARIMA,0.583,0.333,0.833,0.055,-0.086,0.182
-Toto-1.0,AutoTheta,0.75,0.5,1.0,0.126,-0.046,0.264
-Toto-1.0,Drift,0.917,0.75,1.0,0.187,-0.005,0.316
-Toto-1.0,Sundial-Base,0.917,0.75,1.0,0.249,0.132,0.337
-Toto-1.0,Naive,0.917,0.75,1.0,0.301,0.189,0.415
-Toto-1.0,Seasonal Naive,0.833,0.583,1.0,0.381,0.238,0.505
-TimesFM-2.5,TiRex,0.167,0.0,0.333,-0.049,-0.092,-0.005
-TimesFM-2.5,Chronos-2,0.333,0.083,0.667,-0.029,-0.064,0.008
-TimesFM-2.5,Toto-1.0,0.417,0.167,0.667,0.019,-0.052,0.103
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TabPFN-TS,0.5,0.25,0.75,0.016,-0.106,0.118
-TimesFM-2.5,Stat. Ensemble,0.667,0.417,0.917,0.021,-0.12,0.113
-TimesFM-2.5,Chronos-Bolt,0.583,0.333,0.833,0.058,-0.015,0.143
-TimesFM-2.5,AutoETS,0.75,0.5,1.0,0.04,-0.045,0.104
-TimesFM-2.5,Moirai-2.0,0.583,0.333,0.833,0.096,-0.002,0.206
-TimesFM-2.5,AutoARIMA,0.75,0.5,1.0,0.074,-0.073,0.186
-TimesFM-2.5,AutoTheta,0.833,0.583,1.0,0.143,-0.049,0.286
-TimesFM-2.5,Drift,0.833,0.583,1.0,0.203,-0.028,0.375
-TimesFM-2.5,Sundial-Base,1.0,1.0,1.0,0.264,0.182,0.346
-TimesFM-2.5,Naive,0.917,0.75,1.0,0.315,0.161,0.458
-TimesFM-2.5,Seasonal Naive,0.917,0.75,1.0,0.393,0.257,0.517
-TabPFN-TS,TiRex,0.167,0.0,0.417,-0.066,-0.175,0.037
-TabPFN-TS,Chronos-2,0.333,0.083,0.583,-0.045,-0.154,0.062
-TabPFN-TS,Toto-1.0,0.417,0.167,0.667,0.004,-0.129,0.119
-TabPFN-TS,TimesFM-2.5,0.5,0.25,0.75,-0.016,-0.134,0.096
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Stat. Ensemble,0.417,0.167,0.667,0.005,-0.084,0.091
-TabPFN-TS,Chronos-Bolt,0.583,0.331,0.833,0.043,-0.082,0.159
-TabPFN-TS,AutoETS,0.75,0.5,1.0,0.024,-0.064,0.095
-TabPFN-TS,Moirai-2.0,0.583,0.331,0.833,0.082,-0.067,0.207
-TabPFN-TS,AutoARIMA,0.5,0.25,0.833,0.059,-0.057,0.177
-TabPFN-TS,AutoTheta,0.833,0.583,1.0,0.129,0.023,0.236
-TabPFN-TS,Drift,0.75,0.5,1.0,0.19,0.03,0.353
-TabPFN-TS,Sundial-Base,1.0,1.0,1.0,0.252,0.154,0.347
-TabPFN-TS,Naive,0.917,0.75,1.0,0.304,0.18,0.427
-TabPFN-TS,Seasonal Naive,1.0,1.0,1.0,0.383,0.282,0.484
-Stat. Ensemble,TiRex,0.25,0.0,0.5,-0.071,-0.192,0.052
-Stat. Ensemble,Chronos-2,0.167,0.0,0.417,-0.05,-0.164,0.076
-Stat. Ensemble,Toto-1.0,0.417,0.167,0.667,-0.001,-0.123,0.117
-Stat. Ensemble,TimesFM-2.5,0.333,0.083,0.583,-0.021,-0.127,0.107
-Stat. Ensemble,TabPFN-TS,0.583,0.333,0.833,-0.005,-0.1,0.077
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,Chronos-Bolt,0.417,0.167,0.667,0.038,-0.083,0.155
-Stat. Ensemble,AutoETS,0.417,0.167,0.667,0.019,-0.068,0.095
-Stat. Ensemble,Moirai-2.0,0.5,0.25,0.75,0.077,-0.064,0.201
-Stat. Ensemble,AutoARIMA,0.917,0.75,1.0,0.054,-0.0,0.099
-Stat. Ensemble,AutoTheta,0.917,0.75,1.0,0.125,0.037,0.224
-Stat. Ensemble,Drift,0.917,0.75,1.0,0.186,0.041,0.338
-Stat. Ensemble,Sundial-Base,0.833,0.583,1.0,0.248,0.115,0.362
-Stat. Ensemble,Naive,1.0,1.0,1.0,0.3,0.159,0.433
-Stat. Ensemble,Seasonal Naive,1.0,1.0,1.0,0.38,0.283,0.482
-Chronos-Bolt,TiRex,0.083,0.0,0.25,-0.113,-0.2,-0.049
-Chronos-Bolt,Chronos-2,0.333,0.083,0.583,-0.092,-0.2,-0.014
-Chronos-Bolt,Toto-1.0,0.167,0.0,0.333,-0.041,-0.079,-0.004
-Chronos-Bolt,TimesFM-2.5,0.417,0.167,0.667,-0.061,-0.167,0.014
-Chronos-Bolt,TabPFN-TS,0.417,0.167,0.669,-0.045,-0.189,0.075
-Chronos-Bolt,Stat. Ensemble,0.583,0.333,0.833,-0.04,-0.184,0.077
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,AutoETS,0.583,0.333,0.833,-0.019,-0.125,0.057
-Chronos-Bolt,Moirai-2.0,0.5,0.25,0.75,0.041,-0.012,0.105
-Chronos-Bolt,AutoARIMA,0.667,0.417,0.917,0.017,-0.147,0.157
-Chronos-Bolt,AutoTheta,0.833,0.583,1.0,0.09,-0.083,0.223
-Chronos-Bolt,Drift,0.917,0.75,1.0,0.154,-0.033,0.28
-Chronos-Bolt,Sundial-Base,0.917,0.75,1.0,0.218,0.093,0.302
-Chronos-Bolt,Naive,0.917,0.75,1.0,0.273,0.167,0.374
-Chronos-Bolt,Seasonal Naive,0.833,0.583,1.0,0.355,0.212,0.48
-AutoETS,TiRex,0.167,0.0,0.417,-0.092,-0.169,-0.018
-AutoETS,Chronos-2,0.083,0.0,0.25,-0.071,-0.126,-0.004
-AutoETS,Toto-1.0,0.333,0.083,0.583,-0.021,-0.105,0.066
-AutoETS,TimesFM-2.5,0.25,0.0,0.5,-0.041,-0.116,0.043
-AutoETS,TabPFN-TS,0.25,0.0,0.5,-0.025,-0.104,0.06
-AutoETS,Stat. Ensemble,0.583,0.333,0.833,-0.02,-0.105,0.064
-AutoETS,Chronos-Bolt,0.417,0.167,0.667,0.019,-0.06,0.111
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Moirai-2.0,0.417,0.167,0.667,0.059,-0.034,0.15
-AutoETS,AutoARIMA,0.75,0.5,1.0,0.035,-0.082,0.151
-AutoETS,AutoTheta,0.833,0.583,1.0,0.108,-0.026,0.227
-AutoETS,Drift,0.833,0.583,1.0,0.17,-0.016,0.334
-AutoETS,Sundial-Base,1.0,1.0,1.0,0.233,0.138,0.322
-AutoETS,Naive,0.917,0.75,1.0,0.287,0.148,0.417
-AutoETS,Seasonal Naive,0.917,0.75,1.0,0.368,0.243,0.486
-Moirai-2.0,TiRex,0.167,0.0,0.417,-0.161,-0.309,-0.053
-Moirai-2.0,Chronos-2,0.333,0.083,0.667,-0.138,-0.282,-0.032
-Moirai-2.0,Toto-1.0,0.083,0.0,0.208,-0.085,-0.173,-0.026
-Moirai-2.0,TimesFM-2.5,0.417,0.167,0.667,-0.107,-0.259,0.002
-Moirai-2.0,TabPFN-TS,0.417,0.167,0.669,-0.089,-0.262,0.063
-Moirai-2.0,Stat. Ensemble,0.5,0.25,0.75,-0.084,-0.251,0.061
-Moirai-2.0,Chronos-Bolt,0.5,0.25,0.75,-0.043,-0.118,0.012
-Moirai-2.0,AutoETS,0.583,0.333,0.833,-0.063,-0.177,0.033
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,AutoARIMA,0.583,0.333,0.833,-0.025,-0.226,0.141
-Moirai-2.0,AutoTheta,0.667,0.417,0.917,0.051,-0.119,0.187
-Moirai-2.0,Drift,0.75,0.5,1.0,0.118,-0.083,0.257
-Moirai-2.0,Sundial-Base,0.833,0.583,1.0,0.185,0.061,0.279
-Moirai-2.0,Naive,0.833,0.583,1.0,0.242,0.127,0.337
-Moirai-2.0,Seasonal Naive,0.75,0.5,1.0,0.328,0.183,0.456
-AutoARIMA,TiRex,0.25,0.0,0.5,-0.132,-0.294,0.008
-AutoARIMA,Chronos-2,0.25,0.0,0.5,-0.11,-0.282,0.034
-AutoARIMA,Toto-1.0,0.417,0.167,0.667,-0.059,-0.222,0.079
-AutoARIMA,TimesFM-2.5,0.25,0.0,0.5,-0.079,-0.228,0.068
-AutoARIMA,TabPFN-TS,0.5,0.167,0.75,-0.062,-0.215,0.054
-AutoARIMA,Stat. Ensemble,0.083,0.0,0.25,-0.057,-0.109,0.0
-AutoARIMA,Chronos-Bolt,0.333,0.083,0.583,-0.017,-0.187,0.128
-AutoARIMA,AutoETS,0.25,0.0,0.5,-0.037,-0.178,0.076
-AutoARIMA,Moirai-2.0,0.417,0.167,0.667,0.025,-0.164,0.185
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoTheta,0.5,0.25,0.75,0.075,-0.043,0.214
-AutoARIMA,Drift,0.667,0.417,0.917,0.139,-0.024,0.304
-AutoARIMA,Sundial-Base,0.75,0.5,1.0,0.205,0.026,0.344
-AutoARIMA,Naive,0.833,0.583,1.0,0.26,0.092,0.423
-AutoARIMA,Seasonal Naive,1.0,1.0,1.0,0.344,0.225,0.467
-AutoTheta,TiRex,0.167,0.0,0.417,-0.224,-0.476,-0.017
-AutoTheta,Chronos-2,0.083,0.0,0.25,-0.2,-0.426,0.006
-AutoTheta,Toto-1.0,0.25,0.0,0.5,-0.144,-0.358,0.044
-AutoTheta,TimesFM-2.5,0.167,0.0,0.417,-0.167,-0.401,0.046
-AutoTheta,TabPFN-TS,0.167,0.0,0.417,-0.148,-0.309,-0.024
-AutoTheta,Stat. Ensemble,0.083,0.0,0.25,-0.143,-0.289,-0.038
-AutoTheta,Chronos-Bolt,0.167,0.0,0.417,-0.099,-0.286,0.076
-AutoTheta,AutoETS,0.167,0.0,0.417,-0.12,-0.293,0.025
-AutoTheta,Moirai-2.0,0.333,0.083,0.583,-0.054,-0.229,0.106
-AutoTheta,AutoARIMA,0.5,0.25,0.75,-0.081,-0.273,0.041
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Drift,0.333,0.083,0.583,0.07,-0.028,0.226
-AutoTheta,Sundial-Base,0.833,0.583,1.0,0.141,0.015,0.293
-AutoTheta,Naive,0.917,0.75,1.0,0.201,0.088,0.318
-AutoTheta,Seasonal Naive,1.0,1.0,1.0,0.291,0.222,0.357
-Drift,TiRex,0.083,0.0,0.25,-0.315,-0.628,-0.04
-Drift,Chronos-2,0.083,0.0,0.25,-0.29,-0.643,-0.01
-Drift,Toto-1.0,0.083,0.0,0.25,-0.23,-0.461,0.005
-Drift,TimesFM-2.5,0.167,0.0,0.417,-0.254,-0.6,0.027
-Drift,TabPFN-TS,0.25,0.0,0.5,-0.234,-0.546,-0.031
-Drift,Stat. Ensemble,0.083,0.0,0.25,-0.228,-0.511,-0.043
-Drift,Chronos-Bolt,0.083,0.0,0.25,-0.182,-0.389,0.032
-Drift,AutoETS,0.167,0.0,0.417,-0.205,-0.5,0.015
-Drift,Moirai-2.0,0.25,0.0,0.5,-0.133,-0.347,0.076
-Drift,AutoARIMA,0.333,0.083,0.583,-0.162,-0.437,0.023
-Drift,AutoTheta,0.667,0.417,0.917,-0.075,-0.292,0.027
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
-Drift,Sundial-Base,0.667,0.417,0.917,0.076,-0.217,0.284
-Drift,Naive,0.917,0.75,1.0,0.141,0.034,0.242
-Drift,Seasonal Naive,0.917,0.75,1.0,0.238,0.002,0.366
-Sundial-Base,TiRex,0.083,0.0,0.25,-0.424,-0.613,-0.258
-Sundial-Base,Chronos-2,0.0,0.0,0.0,-0.397,-0.557,-0.264
-Sundial-Base,Toto-1.0,0.083,0.0,0.25,-0.332,-0.509,-0.153
-Sundial-Base,TimesFM-2.5,0.0,0.0,0.0,-0.358,-0.528,-0.222
-Sundial-Base,TabPFN-TS,0.0,0.0,0.0,-0.336,-0.532,-0.181
-Sundial-Base,Stat. Ensemble,0.167,0.0,0.417,-0.33,-0.567,-0.13
-Sundial-Base,Chronos-Bolt,0.083,0.0,0.25,-0.279,-0.433,-0.103
-Sundial-Base,AutoETS,0.0,0.0,0.0,-0.304,-0.474,-0.159
-Sundial-Base,Moirai-2.0,0.167,0.0,0.417,-0.227,-0.387,-0.066
-Sundial-Base,AutoARIMA,0.25,0.0,0.5,-0.258,-0.524,-0.027
-Sundial-Base,AutoTheta,0.167,0.0,0.417,-0.164,-0.415,-0.015
-Sundial-Base,Drift,0.333,0.083,0.583,-0.083,-0.397,0.178
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Naive,0.583,0.333,0.833,0.07,-0.096,0.23
-Sundial-Base,Seasonal Naive,0.833,0.583,1.0,0.175,0.01,0.298
-Naive,TiRex,0.0,0.0,0.0,-0.53,-0.889,-0.283
-Naive,Chronos-2,0.083,0.0,0.25,-0.501,-0.89,-0.236
-Naive,Toto-1.0,0.083,0.0,0.25,-0.431,-0.708,-0.233
-Naive,TimesFM-2.5,0.083,0.0,0.25,-0.459,-0.846,-0.192
-Naive,TabPFN-TS,0.083,0.0,0.25,-0.436,-0.746,-0.219
-Naive,Stat. Ensemble,0.0,0.0,0.0,-0.429,-0.765,-0.19
-Naive,Chronos-Bolt,0.083,0.0,0.25,-0.375,-0.598,-0.2
-Naive,AutoETS,0.083,0.0,0.25,-0.402,-0.715,-0.174
-Naive,Moirai-2.0,0.167,0.0,0.417,-0.319,-0.508,-0.145
-Naive,AutoARIMA,0.167,0.0,0.417,-0.352,-0.732,-0.102
-Naive,AutoTheta,0.083,0.0,0.25,-0.251,-0.466,-0.096
-Naive,Drift,0.083,0.0,0.25,-0.164,-0.32,-0.035
-Naive,Sundial-Base,0.417,0.167,0.667,-0.075,-0.298,0.087
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Seasonal Naive,0.75,0.542,0.917,0.114,-0.095,0.248
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.727,-1.204,-0.402
-Seasonal Naive,Chronos-2,0.083,0.0,0.25,-0.694,-1.116,-0.391
-Seasonal Naive,Toto-1.0,0.167,0.0,0.417,-0.615,-1.022,-0.312
-Seasonal Naive,TimesFM-2.5,0.083,0.0,0.25,-0.647,-1.071,-0.346
-Seasonal Naive,TabPFN-TS,0.0,0.0,0.0,-0.621,-0.938,-0.393
-Seasonal Naive,Stat. Ensemble,0.0,0.0,0.0,-0.613,-0.931,-0.394
-Seasonal Naive,Chronos-Bolt,0.167,0.0,0.417,-0.551,-0.924,-0.269
-Seasonal Naive,AutoETS,0.083,0.0,0.25,-0.581,-0.947,-0.321
-Seasonal Naive,Moirai-2.0,0.25,0.0,0.5,-0.488,-0.838,-0.223
-Seasonal Naive,AutoARIMA,0.0,0.0,0.0,-0.525,-0.875,-0.291
-Seasonal Naive,AutoTheta,0.0,0.0,0.0,-0.411,-0.556,-0.286
-Seasonal Naive,Drift,0.083,0.0,0.25,-0.313,-0.578,-0.002
-Seasonal Naive,Sundial-Base,0.167,0.0,0.417,-0.213,-0.424,-0.01
-Seasonal Naive,Naive,0.25,0.083,0.458,-0.128,-0.33,0.087
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/domain_energy/leaderboard_MASE.csv b/tables/domain_energy/leaderboard_MASE.csv
deleted file mode 100644
index 6ec0eacdb59fdc9cf44f55ea5e2fabe8e2d2eef5..0000000000000000000000000000000000000000
--- a/tables/domain_energy/leaderboard_MASE.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,91.20879120879124,35.398352594765115,0.0,3.4626783322727275,0.0,0.0
-TiRex,75.41208791208793,25.111125985019022,0.0,1.3772318233333332,0.038461538461538464,0.0
-TimesFM-2.5,74.17582417582418,24.470577245081294,0.0,36.094269344715904,0.15384615384615385,0.0
-Chronos-Bolt,70.05494505494507,24.79493117234646,0.0,1.1812673024242424,0.0,0.0
-TabPFN-TS,67.03296703296704,28.931010322468566,0.0,213.1836282907102,0.0,0.0
-Moirai-2.0,65.65934065934066,23.276855755353097,0.0,2.6483478834375003,0.3076923076923077,0.0
-Sundial-Base,64.69780219780219,25.973734598235776,0.0,8.734264116875,0.038461538461538464,0.0
-Toto-1.0,64.56043956043956,22.175386726803193,0.0,64.5943206675,0.15384615384615385,0.0
-Stat. Ensemble,39.83516483516484,5.123802463450922,0.0,2087.2821065800895,0.0,15.384615384615385
-AutoARIMA,36.53846153846153,3.34881134283036,0.0,1914.2135565203125,0.0,15.384615384615385
-Seasonal Naive,30.35714285714285,0.0,0.0,1.0154424039285712,0.0,0.0
-AutoTheta,28.57142857142857,1.1815957493498508,0.0,6.5463739134469705,0.0,0.0
-AutoETS,17.857142857142858,-34.975498607867614,0.0,13.10401027465909,0.0,0.0
-Naive,17.44505494505494,-44.77392099300393,0.0,1.012792872857143,0.0,0.0
-Drift,6.593406593406594,-52.299123287549286,0.0,1.0261745340625001,0.0,0.0
diff --git a/tables/domain_energy/leaderboard_SQL.csv b/tables/domain_energy/leaderboard_SQL.csv
deleted file mode 100644
index 84ccc1761acab3972c52cef45aca2bfba115d56f..0000000000000000000000000000000000000000
--- a/tables/domain_energy/leaderboard_SQL.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,93.13186813186815,43.69603844728434,0.0,3.4626783322727275,0.0,0.0
-TiRex,82.28021978021978,34.44791487661235,0.0,1.3772318233333332,0.038461538461538464,0.0
-TimesFM-2.5,75.82417582417582,33.04019456805117,0.0,36.094269344715904,0.15384615384615385,0.0
-TabPFN-TS,73.62637362637363,38.076295973948326,0.0,213.1836282907102,0.0,0.0
-Chronos-Bolt,70.6043956043956,32.88168947733126,0.0,1.1812673024242424,0.0,0.0
-Moirai-2.0,68.13186813186815,31.522824785428526,0.0,2.6483478834375003,0.3076923076923077,0.0
-Toto-1.0,67.03296703296705,31.075422556050736,0.0,64.5943206675,0.15384615384615385,0.0
-Sundial-Base,55.35714285714286,28.52842382801387,0.0,8.734264116875,0.038461538461538464,0.0
-AutoARIMA,39.28571428571428,9.387893004882919,0.0,1914.2135565203125,0.0,15.384615384615385
-Stat. Ensemble,37.08791208791208,7.135433823240489,0.0,2087.2821065800895,0.0,15.384615384615385
-Seasonal Naive,25.96153846153846,0.0,0.0,1.0154424039285712,0.0,0.0
-AutoETS,24.725274725274723,-30.21022947475347,0.0,13.10401027465909,0.0,0.0
-AutoTheta,20.05494505494506,-10.643501735785609,0.0,6.5463739134469705,0.0,0.0
-Naive,13.873626373626374,-60.57154436477256,0.0,1.012792872857143,0.0,0.0
-Drift,3.0219780219780215,-67.3016516015588,0.0,1.0261745340625001,0.0,0.0
diff --git a/tables/domain_energy/leaderboard_WAPE.csv b/tables/domain_energy/leaderboard_WAPE.csv
deleted file mode 100644
index 6bd3b2b596675f7cce4a2390dcef7a77cbe20f70..0000000000000000000000000000000000000000
--- a/tables/domain_energy/leaderboard_WAPE.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,88.73626373626375,37.55790132014533,0.0,3.4626783322727275,0.0,0.0
-TimesFM-2.5,69.78021978021978,26.657949622489184,0.0,36.094269344715904,0.15384615384615385,0.0
-TiRex,69.36813186813188,27.32266216368823,0.0,1.3772318233333332,0.038461538461538464,0.0
-Chronos-Bolt,65.93406593406594,26.60685234340968,0.0,1.1812673024242424,0.0,0.0
-TabPFN-TS,65.38461538461539,30.329432122077236,0.0,213.1836282907102,0.0,0.0
-Moirai-2.0,64.01098901098902,25.999880752887982,0.0,2.6483478834375003,0.3076923076923077,0.0
-Sundial-Base,60.85164835164834,28.26554433861671,0.0,8.734264116875,0.038461538461538464,0.0
-Toto-1.0,58.79120879120878,24.17115830675096,0.0,64.5943206675,0.15384615384615385,0.0
-Stat. Ensemble,44.23076923076924,6.664281180112875,0.0,2087.2821065800895,0.0,15.384615384615385
-AutoARIMA,33.51648351648351,2.7340402546184417,0.0,1914.2135565203125,0.0,15.384615384615385
-AutoTheta,29.670329670329664,4.200265512517798,0.0,6.5463739134469705,0.0,0.0
-Naive,27.884615384615387,-29.595393684781012,0.0,1.012792872857143,0.0,0.0
-Seasonal Naive,27.609890109890113,0.0,0.0,1.0154424039285712,0.0,0.0
-AutoETS,27.472527472527474,-24.061974944434183,0.0,13.10401027465909,0.0,0.0
-Drift,16.75824175824176,-36.91555350097882,0.0,1.0261745340625001,0.0,0.0
diff --git a/tables/domain_energy/leaderboard_WQL.csv b/tables/domain_energy/leaderboard_WQL.csv
deleted file mode 100644
index 7f0c0a50509f00f728c10c6a8a4023cf7fcbec1b..0000000000000000000000000000000000000000
--- a/tables/domain_energy/leaderboard_WQL.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,93.6813186813187,45.99295406512989,0.0,3.4626783322727275,0.0,0.0
-TiRex,80.35714285714286,37.01592382634481,0.0,1.3772318233333332,0.038461538461538464,0.0
-TabPFN-TS,75.54945054945054,39.82364919499898,0.0,213.1836282907102,0.0,0.0
-TimesFM-2.5,75.27472527472527,35.74711031825937,0.0,36.094269344715904,0.15384615384615385,0.0
-Chronos-Bolt,69.78021978021978,35.346534617319236,0.0,1.1812673024242424,0.0,0.0
-Moirai-2.0,67.85714285714288,34.54029719816187,0.0,2.6483478834375003,0.3076923076923077,0.0
-Toto-1.0,65.10989010989012,33.6346956535905,0.0,64.5943206675,0.15384615384615385,0.0
-Sundial-Base,54.807692307692314,31.42058530075822,0.0,8.734264116875,0.038461538461538464,0.0
-Stat. Ensemble,40.10989010989011,9.81188536974501,0.0,2087.2821065800895,0.0,15.384615384615385
-AutoARIMA,38.18681318681318,9.717573374612886,0.0,1914.2135565203125,0.0,15.384615384615385
-AutoETS,23.626373626373624,-24.269495265740982,0.0,13.10401027465909,0.0,0.0
-Seasonal Naive,23.214285714285715,0.0,0.0,1.0154424039285712,0.0,0.0
-AutoTheta,21.7032967032967,-4.896832263246642,0.0,6.5463739134469705,0.0,0.0
-Naive,14.972527472527469,-50.97673020090387,0.0,1.012792872857143,0.0,0.0
-Drift,5.769230769230769,-57.44553174606462,0.0,1.0261745340625001,0.0,0.0
diff --git a/tables/domain_energy/pairwise_MASE.csv b/tables/domain_energy/pairwise_MASE.csv
deleted file mode 100644
index 8ed6e67c474041c4dcec50fa1623cfe48e17157a..0000000000000000000000000000000000000000
--- a/tables/domain_energy/pairwise_MASE.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TiRex,0.769,0.615,0.923,0.137,0.066,0.203
-Chronos-2,TimesFM-2.5,0.769,0.577,0.923,0.145,0.072,0.212
-Chronos-2,Chronos-Bolt,0.962,0.885,1.0,0.141,0.078,0.202
-Chronos-2,TabPFN-TS,0.808,0.654,0.962,0.091,0.047,0.134
-Chronos-2,Moirai-2.0,0.923,0.808,1.0,0.158,0.092,0.222
-Chronos-2,Sundial-Base,0.846,0.692,0.962,0.127,0.069,0.195
-Chronos-2,Toto-1.0,0.846,0.692,0.962,0.17,0.105,0.237
-Chronos-2,Stat. Ensemble,0.962,0.885,1.0,0.319,0.239,0.385
-Chronos-2,AutoARIMA,1.0,1.0,1.0,0.332,0.249,0.404
-Chronos-2,Seasonal Naive,0.962,0.885,1.0,0.354,0.278,0.422
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.346,0.278,0.408
-Chronos-2,AutoETS,0.962,0.885,1.0,0.521,0.418,0.612
-Chronos-2,Naive,0.962,0.885,1.0,0.554,0.468,0.626
-Chronos-2,Drift,1.0,1.0,1.0,0.576,0.494,0.643
-TiRex,Chronos-2,0.231,0.077,0.385,-0.159,-0.255,-0.07
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,TimesFM-2.5,0.519,0.327,0.731,0.008,-0.015,0.033
-TiRex,Chronos-Bolt,0.558,0.385,0.731,0.004,-0.021,0.032
-TiRex,TabPFN-TS,0.538,0.346,0.731,-0.054,-0.16,0.039
-TiRex,Moirai-2.0,0.558,0.365,0.731,0.024,-0.003,0.056
-TiRex,Sundial-Base,0.75,0.596,0.904,-0.012,-0.103,0.066
-TiRex,Toto-1.0,0.673,0.5,0.846,0.038,0.01,0.068
-TiRex,Stat. Ensemble,0.962,0.885,1.0,0.211,0.152,0.27
-TiRex,AutoARIMA,0.923,0.808,1.0,0.225,0.159,0.292
-TiRex,Seasonal Naive,0.923,0.808,1.0,0.251,0.191,0.308
-TiRex,AutoTheta,1.0,1.0,1.0,0.242,0.194,0.299
-TiRex,AutoETS,0.962,0.885,1.0,0.445,0.339,0.543
-TiRex,Naive,0.962,0.885,1.0,0.483,0.403,0.556
-TiRex,Drift,1.0,1.0,1.0,0.508,0.431,0.578
-TimesFM-2.5,Chronos-2,0.231,0.077,0.423,-0.169,-0.269,-0.077
-TimesFM-2.5,TiRex,0.481,0.269,0.673,-0.009,-0.034,0.014
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,Chronos-Bolt,0.577,0.404,0.769,-0.004,-0.033,0.024
-TimesFM-2.5,TabPFN-TS,0.538,0.346,0.731,-0.063,-0.171,0.028
-TimesFM-2.5,Moirai-2.0,0.615,0.442,0.808,0.016,-0.028,0.057
-TimesFM-2.5,Sundial-Base,0.596,0.423,0.788,-0.02,-0.113,0.062
-TimesFM-2.5,Toto-1.0,0.692,0.519,0.846,0.029,-0.006,0.071
-TimesFM-2.5,Stat. Ensemble,0.885,0.731,1.0,0.204,0.139,0.271
-TimesFM-2.5,AutoARIMA,0.923,0.808,1.0,0.219,0.146,0.291
-TimesFM-2.5,Seasonal Naive,0.923,0.808,1.0,0.245,0.182,0.306
-TimesFM-2.5,AutoTheta,1.0,1.0,1.0,0.236,0.18,0.299
-TimesFM-2.5,AutoETS,0.962,0.885,1.0,0.44,0.337,0.539
-TimesFM-2.5,Naive,0.962,0.885,1.0,0.478,0.392,0.555
-TimesFM-2.5,Drift,1.0,1.0,1.0,0.504,0.424,0.577
-Chronos-Bolt,Chronos-2,0.038,0.0,0.115,-0.164,-0.254,-0.085
-Chronos-Bolt,TiRex,0.442,0.269,0.615,-0.004,-0.034,0.02
-Chronos-Bolt,TimesFM-2.5,0.423,0.231,0.596,0.004,-0.025,0.032
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,TabPFN-TS,0.5,0.308,0.692,-0.058,-0.158,0.022
-Chronos-Bolt,Moirai-2.0,0.577,0.423,0.731,0.02,-0.022,0.064
-Chronos-Bolt,Sundial-Base,0.558,0.365,0.731,-0.016,-0.106,0.062
-Chronos-Bolt,Toto-1.0,0.577,0.404,0.75,0.034,-0.001,0.072
-Chronos-Bolt,Stat. Ensemble,0.885,0.731,1.0,0.207,0.148,0.271
-Chronos-Bolt,AutoARIMA,1.0,1.0,1.0,0.222,0.154,0.29
-Chronos-Bolt,Seasonal Naive,0.923,0.808,1.0,0.248,0.188,0.306
-Chronos-Bolt,AutoTheta,1.0,1.0,1.0,0.239,0.19,0.297
-Chronos-Bolt,AutoETS,0.923,0.808,1.0,0.443,0.333,0.545
-Chronos-Bolt,Naive,0.962,0.885,1.0,0.481,0.396,0.556
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.506,0.425,0.578
-TabPFN-TS,Chronos-2,0.192,0.038,0.346,-0.1,-0.155,-0.049
-TabPFN-TS,TiRex,0.462,0.269,0.654,0.051,-0.04,0.138
-TabPFN-TS,TimesFM-2.5,0.462,0.269,0.654,0.059,-0.029,0.146
-TabPFN-TS,Chronos-Bolt,0.5,0.308,0.692,0.055,-0.023,0.137
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Moirai-2.0,0.538,0.346,0.731,0.074,-0.012,0.16
-TabPFN-TS,Sundial-Base,0.462,0.269,0.654,0.04,-0.055,0.135
-TabPFN-TS,Toto-1.0,0.538,0.346,0.731,0.087,0.004,0.175
-TabPFN-TS,Stat. Ensemble,0.846,0.692,0.962,0.251,0.16,0.326
-TabPFN-TS,AutoARIMA,0.846,0.692,0.962,0.265,0.165,0.351
-TabPFN-TS,Seasonal Naive,0.885,0.731,1.0,0.289,0.198,0.368
-TabPFN-TS,AutoTheta,0.923,0.808,1.0,0.281,0.201,0.352
-TabPFN-TS,AutoETS,0.885,0.731,1.0,0.473,0.356,0.578
-TabPFN-TS,Naive,0.923,0.808,1.0,0.509,0.418,0.588
-TabPFN-TS,Drift,0.923,0.808,1.0,0.533,0.444,0.61
-Moirai-2.0,Chronos-2,0.077,0.0,0.192,-0.188,-0.285,-0.101
-Moirai-2.0,TiRex,0.442,0.269,0.635,-0.024,-0.059,0.003
-Moirai-2.0,TimesFM-2.5,0.385,0.192,0.558,-0.016,-0.061,0.027
-Moirai-2.0,Chronos-Bolt,0.423,0.269,0.577,-0.02,-0.068,0.021
-Moirai-2.0,TabPFN-TS,0.462,0.269,0.654,-0.08,-0.19,0.012
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Sundial-Base,0.635,0.462,0.789,-0.036,-0.136,0.048
-Moirai-2.0,Toto-1.0,0.615,0.462,0.788,0.014,-0.011,0.043
-Moirai-2.0,Stat. Ensemble,0.808,0.654,0.923,0.191,0.118,0.256
-Moirai-2.0,AutoARIMA,0.769,0.577,0.923,0.206,0.128,0.282
-Moirai-2.0,Seasonal Naive,0.808,0.654,0.924,0.233,0.167,0.293
-Moirai-2.0,AutoTheta,0.962,0.885,1.0,0.224,0.168,0.284
-Moirai-2.0,AutoETS,0.885,0.769,1.0,0.432,0.314,0.538
-Moirai-2.0,Naive,0.923,0.808,1.0,0.47,0.388,0.545
-Moirai-2.0,Drift,1.0,1.0,1.0,0.496,0.418,0.568
-Sundial-Base,Chronos-2,0.154,0.038,0.308,-0.146,-0.242,-0.074
-Sundial-Base,TiRex,0.25,0.096,0.404,0.012,-0.071,0.093
-Sundial-Base,TimesFM-2.5,0.404,0.212,0.577,0.02,-0.066,0.101
-Sundial-Base,Chronos-Bolt,0.442,0.269,0.635,0.016,-0.066,0.096
-Sundial-Base,TabPFN-TS,0.538,0.346,0.731,-0.042,-0.156,0.052
-Sundial-Base,Moirai-2.0,0.365,0.211,0.538,0.035,-0.051,0.119
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Toto-1.0,0.481,0.308,0.654,0.049,-0.032,0.129
-Sundial-Base,Stat. Ensemble,0.846,0.692,0.962,0.22,0.136,0.296
-Sundial-Base,AutoARIMA,0.846,0.692,0.962,0.234,0.147,0.311
-Sundial-Base,Seasonal Naive,0.885,0.731,1.0,0.26,0.177,0.334
-Sundial-Base,AutoTheta,0.962,0.885,1.0,0.251,0.176,0.319
-Sundial-Base,AutoETS,0.923,0.808,1.0,0.452,0.336,0.538
-Sundial-Base,Naive,0.962,0.885,1.0,0.489,0.393,0.575
-Sundial-Base,Drift,1.0,1.0,1.0,0.514,0.421,0.597
-Toto-1.0,Chronos-2,0.154,0.038,0.308,-0.205,-0.311,-0.117
-Toto-1.0,TiRex,0.327,0.154,0.5,-0.039,-0.073,-0.01
-Toto-1.0,TimesFM-2.5,0.308,0.154,0.481,-0.03,-0.077,0.006
-Toto-1.0,Chronos-Bolt,0.423,0.25,0.596,-0.035,-0.078,0.001
-Toto-1.0,TabPFN-TS,0.462,0.269,0.654,-0.095,-0.212,-0.004
-Toto-1.0,Moirai-2.0,0.385,0.212,0.538,-0.014,-0.045,0.011
-Toto-1.0,Sundial-Base,0.519,0.346,0.692,-0.051,-0.148,0.031
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,Stat. Ensemble,0.885,0.769,1.0,0.18,0.109,0.243
-Toto-1.0,AutoARIMA,0.885,0.769,1.0,0.195,0.122,0.268
-Toto-1.0,Seasonal Naive,0.885,0.731,1.0,0.222,0.159,0.279
-Toto-1.0,AutoTheta,0.923,0.808,1.0,0.212,0.153,0.276
-Toto-1.0,AutoETS,0.923,0.808,1.0,0.423,0.311,0.528
-Toto-1.0,Naive,0.962,0.885,1.0,0.462,0.385,0.537
-Toto-1.0,Drift,1.0,1.0,1.0,0.489,0.414,0.559
-Stat. Ensemble,Chronos-2,0.038,0.0,0.115,-0.469,-0.625,-0.314
-Stat. Ensemble,TiRex,0.038,0.0,0.115,-0.267,-0.369,-0.179
-Stat. Ensemble,TimesFM-2.5,0.115,0.0,0.269,-0.256,-0.371,-0.162
-Stat. Ensemble,Chronos-Bolt,0.115,0.0,0.269,-0.262,-0.372,-0.173
-Stat. Ensemble,TabPFN-TS,0.154,0.038,0.308,-0.335,-0.483,-0.19
-Stat. Ensemble,Moirai-2.0,0.192,0.077,0.346,-0.237,-0.345,-0.134
-Stat. Ensemble,Sundial-Base,0.154,0.038,0.308,-0.282,-0.419,-0.158
-Stat. Ensemble,Toto-1.0,0.115,0.0,0.231,-0.219,-0.322,-0.123
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoARIMA,0.615,0.442,0.788,0.018,-0.016,0.053
-Stat. Ensemble,Seasonal Naive,0.692,0.538,0.846,0.051,0.016,0.084
-Stat. Ensemble,AutoTheta,0.654,0.462,0.846,0.04,0.001,0.079
-Stat. Ensemble,AutoETS,0.846,0.692,0.962,0.297,0.19,0.407
-Stat. Ensemble,Naive,0.885,0.769,1.0,0.345,0.25,0.433
-Stat. Ensemble,Drift,0.962,0.885,1.0,0.377,0.289,0.468
-AutoARIMA,Chronos-2,0.0,0.0,0.0,-0.496,-0.679,-0.332
-AutoARIMA,TiRex,0.077,0.0,0.192,-0.291,-0.413,-0.189
-AutoARIMA,TimesFM-2.5,0.077,0.0,0.192,-0.28,-0.41,-0.171
-AutoARIMA,Chronos-Bolt,0.0,0.0,0.0,-0.285,-0.409,-0.182
-AutoARIMA,TabPFN-TS,0.154,0.038,0.308,-0.36,-0.541,-0.198
-AutoARIMA,Moirai-2.0,0.231,0.077,0.423,-0.26,-0.393,-0.147
-AutoARIMA,Sundial-Base,0.154,0.038,0.308,-0.306,-0.451,-0.172
-AutoARIMA,Toto-1.0,0.115,0.0,0.231,-0.242,-0.366,-0.139
-AutoARIMA,Stat. Ensemble,0.385,0.212,0.558,-0.019,-0.056,0.015
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,Seasonal Naive,0.654,0.481,0.808,0.033,0.006,0.059
-AutoARIMA,AutoTheta,0.654,0.462,0.808,0.022,-0.033,0.071
-AutoARIMA,AutoETS,0.769,0.577,0.923,0.284,0.172,0.395
-AutoARIMA,Naive,0.885,0.769,1.0,0.332,0.237,0.426
-AutoARIMA,Drift,0.962,0.885,1.0,0.365,0.272,0.453
-Seasonal Naive,Chronos-2,0.038,0.0,0.115,-0.548,-0.729,-0.384
-Seasonal Naive,TiRex,0.077,0.0,0.192,-0.335,-0.445,-0.237
-Seasonal Naive,TimesFM-2.5,0.077,0.0,0.192,-0.324,-0.441,-0.223
-Seasonal Naive,Chronos-Bolt,0.077,0.0,0.192,-0.33,-0.44,-0.232
-Seasonal Naive,TabPFN-TS,0.115,0.0,0.269,-0.407,-0.582,-0.246
-Seasonal Naive,Moirai-2.0,0.192,0.076,0.346,-0.303,-0.415,-0.201
-Seasonal Naive,Sundial-Base,0.115,0.0,0.269,-0.351,-0.501,-0.215
-Seasonal Naive,Toto-1.0,0.115,0.0,0.269,-0.285,-0.386,-0.189
-Seasonal Naive,Stat. Ensemble,0.308,0.154,0.462,-0.054,-0.092,-0.016
-Seasonal Naive,AutoARIMA,0.346,0.192,0.519,-0.035,-0.063,-0.006
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,AutoTheta,0.423,0.231,0.615,-0.012,-0.067,0.043
-Seasonal Naive,AutoETS,0.731,0.538,0.885,0.259,0.139,0.381
-Seasonal Naive,Naive,0.75,0.596,0.904,0.309,0.211,0.405
-Seasonal Naive,Drift,0.885,0.731,1.0,0.343,0.25,0.435
-AutoTheta,Chronos-2,0.0,0.0,0.0,-0.53,-0.689,-0.384
-AutoTheta,TiRex,0.0,0.0,0.0,-0.32,-0.427,-0.24
-AutoTheta,TimesFM-2.5,0.0,0.0,0.0,-0.308,-0.427,-0.22
-AutoTheta,Chronos-Bolt,0.0,0.0,0.0,-0.314,-0.423,-0.234
-AutoTheta,TabPFN-TS,0.077,0.0,0.192,-0.39,-0.542,-0.251
-AutoTheta,Moirai-2.0,0.038,0.0,0.115,-0.288,-0.396,-0.202
-AutoTheta,Sundial-Base,0.038,0.0,0.115,-0.335,-0.468,-0.214
-AutoTheta,Toto-1.0,0.077,0.0,0.192,-0.27,-0.38,-0.18
-AutoTheta,Stat. Ensemble,0.346,0.154,0.538,-0.042,-0.085,-0.001
-AutoTheta,AutoARIMA,0.346,0.192,0.538,-0.022,-0.077,0.032
-AutoTheta,Seasonal Naive,0.577,0.385,0.769,0.012,-0.045,0.062
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,AutoETS,0.769,0.577,0.923,0.268,0.146,0.396
-AutoTheta,Naive,0.808,0.654,0.962,0.317,0.221,0.409
-AutoTheta,Drift,0.923,0.808,1.0,0.351,0.259,0.44
-AutoETS,Chronos-2,0.038,0.0,0.115,-1.089,-1.579,-0.717
-AutoETS,TiRex,0.038,0.0,0.115,-0.802,-1.187,-0.513
-AutoETS,TimesFM-2.5,0.038,0.0,0.115,-0.787,-1.17,-0.507
-AutoETS,Chronos-Bolt,0.077,0.0,0.192,-0.795,-1.196,-0.5
-AutoETS,TabPFN-TS,0.115,0.0,0.269,-0.899,-1.372,-0.554
-AutoETS,Moirai-2.0,0.115,0.0,0.231,-0.759,-1.164,-0.458
-AutoETS,Sundial-Base,0.077,0.0,0.192,-0.823,-1.166,-0.506
-AutoETS,Toto-1.0,0.077,0.0,0.192,-0.734,-1.118,-0.451
-AutoETS,Stat. Ensemble,0.154,0.038,0.308,-0.423,-0.687,-0.234
-AutoETS,AutoARIMA,0.231,0.077,0.423,-0.397,-0.654,-0.208
-AutoETS,Seasonal Naive,0.269,0.115,0.462,-0.35,-0.615,-0.161
-AutoETS,AutoTheta,0.231,0.077,0.423,-0.366,-0.655,-0.17
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Naive,0.462,0.269,0.654,0.068,-0.078,0.212
-AutoETS,Drift,0.577,0.385,0.732,0.114,-0.03,0.253
-Naive,Chronos-2,0.038,0.0,0.115,-1.241,-1.671,-0.879
-Naive,TiRex,0.038,0.0,0.115,-0.933,-1.254,-0.676
-Naive,TimesFM-2.5,0.038,0.0,0.115,-0.917,-1.248,-0.645
-Naive,Chronos-Bolt,0.038,0.0,0.115,-0.925,-1.252,-0.656
-Naive,TabPFN-TS,0.077,0.0,0.192,-1.037,-1.429,-0.718
-Naive,Moirai-2.0,0.077,0.0,0.192,-0.887,-1.2,-0.635
-Naive,Sundial-Base,0.038,0.0,0.115,-0.956,-1.353,-0.646
-Naive,Toto-1.0,0.038,0.0,0.115,-0.86,-1.159,-0.625
-Naive,Stat. Ensemble,0.115,0.0,0.231,-0.526,-0.765,-0.333
-Naive,AutoARIMA,0.115,0.0,0.231,-0.498,-0.742,-0.31
-Naive,Seasonal Naive,0.25,0.096,0.404,-0.448,-0.68,-0.267
-Naive,AutoTheta,0.192,0.038,0.346,-0.465,-0.692,-0.283
-Naive,AutoETS,0.538,0.346,0.731,-0.073,-0.269,0.072
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,0.846,0.692,0.962,0.049,0.03,0.073
-Drift,Chronos-2,0.0,0.0,0.0,-1.358,-1.804,-0.976
-Drift,TiRex,0.0,0.0,0.0,-1.034,-1.369,-0.759
-Drift,TimesFM-2.5,0.0,0.0,0.0,-1.016,-1.363,-0.736
-Drift,Chronos-Bolt,0.0,0.0,0.0,-1.025,-1.372,-0.739
-Drift,TabPFN-TS,0.077,0.0,0.192,-1.143,-1.562,-0.797
-Drift,Moirai-2.0,0.0,0.0,0.0,-0.985,-1.317,-0.718
-Drift,Sundial-Base,0.0,0.0,0.0,-1.057,-1.483,-0.728
-Drift,Toto-1.0,0.0,0.0,0.0,-0.957,-1.265,-0.707
-Drift,Stat. Ensemble,0.038,0.0,0.115,-0.605,-0.879,-0.406
-Drift,AutoARIMA,0.038,0.0,0.115,-0.576,-0.828,-0.373
-Drift,Seasonal Naive,0.115,0.0,0.269,-0.523,-0.771,-0.333
-Drift,AutoTheta,0.077,0.0,0.192,-0.541,-0.784,-0.35
-Drift,AutoETS,0.423,0.268,0.615,-0.128,-0.339,0.029
-Drift,Naive,0.154,0.038,0.308,-0.052,-0.078,-0.031
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/domain_energy/pairwise_SQL.csv b/tables/domain_energy/pairwise_SQL.csv
deleted file mode 100644
index 9c064e79c5728318522af43c1213899cc0206df9..0000000000000000000000000000000000000000
--- a/tables/domain_energy/pairwise_SQL.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TiRex,0.731,0.538,0.885,0.141,0.072,0.204
-Chronos-2,TimesFM-2.5,0.769,0.577,0.923,0.159,0.083,0.225
-Chronos-2,TabPFN-TS,0.846,0.692,0.962,0.091,0.05,0.131
-Chronos-2,Chronos-Bolt,0.923,0.808,1.0,0.161,0.096,0.219
-Chronos-2,Moirai-2.0,0.923,0.808,1.0,0.178,0.111,0.242
-Chronos-2,Toto-1.0,0.885,0.731,1.0,0.183,0.115,0.25
-Chronos-2,Sundial-Base,0.962,0.885,1.0,0.212,0.157,0.275
-Chronos-2,AutoARIMA,1.0,1.0,1.0,0.379,0.297,0.45
-Chronos-2,Stat. Ensemble,1.0,1.0,1.0,0.394,0.317,0.461
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.437,0.368,0.497
-Chronos-2,AutoETS,1.0,1.0,1.0,0.568,0.468,0.65
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.491,0.407,0.574
-Chronos-2,Naive,1.0,1.0,1.0,0.649,0.573,0.716
-Chronos-2,Drift,1.0,1.0,1.0,0.663,0.591,0.728
-TiRex,Chronos-2,0.269,0.115,0.462,-0.164,-0.257,-0.078
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,TimesFM-2.5,0.673,0.481,0.846,0.021,-0.002,0.045
-TiRex,TabPFN-TS,0.577,0.385,0.769,-0.059,-0.164,0.029
-TiRex,Chronos-Bolt,0.75,0.577,0.885,0.023,-0.005,0.052
-TiRex,Moirai-2.0,0.788,0.615,0.923,0.043,0.014,0.075
-TiRex,Toto-1.0,0.788,0.615,0.923,0.049,0.024,0.077
-TiRex,Sundial-Base,0.788,0.635,0.923,0.083,0.009,0.153
-TiRex,AutoARIMA,0.962,0.885,1.0,0.277,0.21,0.351
-TiRex,Stat. Ensemble,0.962,0.885,1.0,0.294,0.229,0.365
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.344,0.286,0.404
-TiRex,AutoETS,0.962,0.885,1.0,0.497,0.4,0.581
-TiRex,AutoTheta,1.0,1.0,1.0,0.408,0.321,0.5
-TiRex,Naive,1.0,1.0,1.0,0.592,0.513,0.666
-TiRex,Drift,1.0,1.0,1.0,0.608,0.534,0.676
-TimesFM-2.5,Chronos-2,0.231,0.077,0.423,-0.189,-0.291,-0.09
-TimesFM-2.5,TiRex,0.327,0.154,0.519,-0.021,-0.047,0.002
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TabPFN-TS,0.538,0.346,0.731,-0.081,-0.195,0.009
-TimesFM-2.5,Chronos-Bolt,0.538,0.365,0.712,0.002,-0.028,0.029
-TimesFM-2.5,Moirai-2.0,0.615,0.442,0.808,0.022,-0.023,0.067
-TimesFM-2.5,Toto-1.0,0.654,0.462,0.808,0.029,-0.01,0.069
-TimesFM-2.5,Sundial-Base,0.788,0.635,0.923,0.063,-0.021,0.143
-TimesFM-2.5,AutoARIMA,1.0,1.0,1.0,0.261,0.191,0.336
-TimesFM-2.5,Stat. Ensemble,0.962,0.885,1.0,0.279,0.207,0.357
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.33,0.269,0.394
-TimesFM-2.5,AutoETS,0.962,0.885,1.0,0.486,0.387,0.574
-TimesFM-2.5,AutoTheta,1.0,1.0,1.0,0.395,0.304,0.497
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.583,0.5,0.659
-TimesFM-2.5,Drift,1.0,1.0,1.0,0.6,0.521,0.672
-TabPFN-TS,Chronos-2,0.154,0.038,0.308,-0.1,-0.15,-0.052
-TabPFN-TS,TiRex,0.423,0.231,0.615,0.055,-0.03,0.141
-TabPFN-TS,TimesFM-2.5,0.462,0.269,0.654,0.075,-0.009,0.163
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Chronos-Bolt,0.615,0.423,0.808,0.077,0.005,0.156
-TabPFN-TS,Moirai-2.0,0.538,0.346,0.731,0.096,0.014,0.181
-TabPFN-TS,Toto-1.0,0.577,0.385,0.769,0.102,0.017,0.189
-TabPFN-TS,Sundial-Base,0.769,0.577,0.923,0.134,0.048,0.222
-TabPFN-TS,AutoARIMA,0.923,0.808,1.0,0.317,0.222,0.406
-TabPFN-TS,Stat. Ensemble,0.923,0.808,1.0,0.333,0.243,0.417
-TabPFN-TS,Seasonal Naive,1.0,1.0,1.0,0.381,0.298,0.457
-TabPFN-TS,AutoETS,0.923,0.808,1.0,0.524,0.416,0.616
-TabPFN-TS,AutoTheta,1.0,1.0,1.0,0.44,0.342,0.539
-TabPFN-TS,Naive,1.0,1.0,1.0,0.614,0.529,0.691
-TabPFN-TS,Drift,1.0,1.0,1.0,0.63,0.547,0.702
-Chronos-Bolt,Chronos-2,0.077,0.0,0.192,-0.192,-0.28,-0.106
-Chronos-Bolt,TiRex,0.25,0.115,0.423,-0.024,-0.055,0.005
-Chronos-Bolt,TimesFM-2.5,0.462,0.288,0.635,-0.002,-0.03,0.027
-Chronos-Bolt,TabPFN-TS,0.385,0.192,0.577,-0.084,-0.185,-0.005
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Moirai-2.0,0.5,0.327,0.654,0.02,-0.025,0.07
-Chronos-Bolt,Toto-1.0,0.538,0.365,0.712,0.026,-0.012,0.068
-Chronos-Bolt,Sundial-Base,0.75,0.596,0.904,0.061,-0.024,0.136
-Chronos-Bolt,AutoARIMA,1.0,1.0,1.0,0.259,0.191,0.333
-Chronos-Bolt,Stat. Ensemble,0.962,0.885,1.0,0.277,0.211,0.349
-Chronos-Bolt,Seasonal Naive,1.0,1.0,1.0,0.329,0.273,0.388
-Chronos-Bolt,AutoETS,0.962,0.885,1.0,0.485,0.384,0.576
-Chronos-Bolt,AutoTheta,1.0,1.0,1.0,0.393,0.304,0.492
-Chronos-Bolt,Naive,1.0,1.0,1.0,0.582,0.5,0.654
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.599,0.52,0.667
-Moirai-2.0,Chronos-2,0.077,0.0,0.192,-0.216,-0.319,-0.125
-Moirai-2.0,TiRex,0.212,0.077,0.385,-0.045,-0.081,-0.014
-Moirai-2.0,TimesFM-2.5,0.385,0.192,0.558,-0.023,-0.071,0.023
-Moirai-2.0,TabPFN-TS,0.462,0.269,0.654,-0.106,-0.221,-0.014
-Moirai-2.0,Chronos-Bolt,0.5,0.346,0.673,-0.02,-0.075,0.025
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Toto-1.0,0.577,0.423,0.75,0.006,-0.016,0.035
-Moirai-2.0,Sundial-Base,0.75,0.596,0.904,0.042,-0.051,0.124
-Moirai-2.0,AutoARIMA,0.923,0.808,1.0,0.244,0.163,0.328
-Moirai-2.0,Stat. Ensemble,0.923,0.808,1.0,0.263,0.18,0.345
-Moirai-2.0,Seasonal Naive,0.923,0.808,1.0,0.315,0.249,0.385
-Moirai-2.0,AutoETS,0.923,0.808,1.0,0.474,0.366,0.571
-Moirai-2.0,AutoTheta,0.923,0.808,1.0,0.381,0.287,0.48
-Moirai-2.0,Naive,0.962,0.885,1.0,0.574,0.491,0.651
-Moirai-2.0,Drift,1.0,1.0,1.0,0.591,0.511,0.663
-Toto-1.0,Chronos-2,0.115,0.0,0.269,-0.224,-0.333,-0.13
-Toto-1.0,TiRex,0.212,0.077,0.385,-0.051,-0.084,-0.025
-Toto-1.0,TimesFM-2.5,0.346,0.192,0.538,-0.029,-0.075,0.01
-Toto-1.0,TabPFN-TS,0.423,0.231,0.615,-0.113,-0.232,-0.018
-Toto-1.0,Chronos-Bolt,0.462,0.288,0.635,-0.027,-0.073,0.012
-Toto-1.0,Moirai-2.0,0.423,0.25,0.577,-0.007,-0.036,0.016
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,Sundial-Base,0.75,0.596,0.904,0.036,-0.053,0.113
-Toto-1.0,AutoARIMA,0.923,0.808,1.0,0.239,0.163,0.318
-Toto-1.0,Stat. Ensemble,0.923,0.808,1.0,0.258,0.178,0.337
-Toto-1.0,Seasonal Naive,0.962,0.885,1.0,0.311,0.247,0.377
-Toto-1.0,AutoETS,0.923,0.808,1.0,0.471,0.366,0.564
-Toto-1.0,AutoTheta,0.923,0.808,1.0,0.377,0.277,0.477
-Toto-1.0,Naive,1.0,1.0,1.0,0.571,0.49,0.645
-Toto-1.0,Drift,1.0,1.0,1.0,0.588,0.51,0.658
-Sundial-Base,Chronos-2,0.038,0.0,0.115,-0.269,-0.379,-0.186
-Sundial-Base,TiRex,0.212,0.077,0.365,-0.09,-0.18,-0.009
-Sundial-Base,TimesFM-2.5,0.212,0.077,0.365,-0.067,-0.168,0.021
-Sundial-Base,TabPFN-TS,0.231,0.077,0.423,-0.154,-0.285,-0.05
-Sundial-Base,Chronos-Bolt,0.25,0.096,0.404,-0.065,-0.157,0.023
-Sundial-Base,Moirai-2.0,0.25,0.096,0.404,-0.044,-0.142,0.048
-Sundial-Base,Toto-1.0,0.25,0.096,0.404,-0.037,-0.127,0.05
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,AutoARIMA,0.769,0.577,0.923,0.211,0.119,0.291
-Sundial-Base,Stat. Ensemble,0.808,0.654,0.923,0.23,0.145,0.306
-Sundial-Base,Seasonal Naive,0.962,0.885,1.0,0.285,0.209,0.359
-Sundial-Base,AutoETS,0.846,0.692,0.962,0.451,0.336,0.535
-Sundial-Base,AutoTheta,0.923,0.808,1.0,0.354,0.246,0.448
-Sundial-Base,Naive,1.0,1.0,1.0,0.555,0.46,0.641
-Sundial-Base,Drift,1.0,1.0,1.0,0.573,0.482,0.653
-AutoARIMA,Chronos-2,0.0,0.0,0.0,-0.609,-0.817,-0.423
-AutoARIMA,TiRex,0.038,0.0,0.115,-0.382,-0.541,-0.266
-AutoARIMA,TimesFM-2.5,0.0,0.0,0.0,-0.353,-0.505,-0.237
-AutoARIMA,TabPFN-TS,0.077,0.0,0.192,-0.463,-0.683,-0.285
-AutoARIMA,Chronos-Bolt,0.0,0.0,0.0,-0.35,-0.499,-0.236
-AutoARIMA,Moirai-2.0,0.077,0.0,0.192,-0.323,-0.488,-0.195
-AutoARIMA,Toto-1.0,0.077,0.0,0.192,-0.315,-0.466,-0.195
-AutoARIMA,Sundial-Base,0.231,0.077,0.423,-0.268,-0.41,-0.135
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,Stat. Ensemble,0.615,0.423,0.788,0.024,-0.008,0.057
-AutoARIMA,Seasonal Naive,0.885,0.769,0.962,0.094,0.068,0.121
-AutoARIMA,AutoETS,0.731,0.538,0.885,0.304,0.194,0.406
-AutoARIMA,AutoTheta,0.885,0.731,1.0,0.181,0.078,0.284
-AutoARIMA,Naive,0.923,0.808,1.0,0.436,0.348,0.519
-AutoARIMA,Drift,0.962,0.885,1.0,0.458,0.375,0.539
-Stat. Ensemble,Chronos-2,0.0,0.0,0.0,-0.649,-0.854,-0.464
-Stat. Ensemble,TiRex,0.038,0.0,0.115,-0.417,-0.575,-0.297
-Stat. Ensemble,TimesFM-2.5,0.038,0.0,0.115,-0.387,-0.556,-0.262
-Stat. Ensemble,TabPFN-TS,0.077,0.0,0.192,-0.5,-0.715,-0.32
-Stat. Ensemble,Chronos-Bolt,0.038,0.0,0.115,-0.384,-0.536,-0.268
-Stat. Ensemble,Moirai-2.0,0.077,0.0,0.192,-0.356,-0.526,-0.219
-Stat. Ensemble,Toto-1.0,0.077,0.0,0.192,-0.347,-0.509,-0.217
-Stat. Ensemble,Sundial-Base,0.192,0.077,0.346,-0.299,-0.441,-0.169
-Stat. Ensemble,AutoARIMA,0.385,0.212,0.577,-0.025,-0.061,0.008
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,Seasonal Naive,0.731,0.577,0.865,0.071,0.03,0.11
-Stat. Ensemble,AutoETS,0.769,0.577,0.923,0.287,0.178,0.394
-Stat. Ensemble,AutoTheta,0.885,0.731,1.0,0.161,0.074,0.253
-Stat. Ensemble,Naive,0.923,0.808,1.0,0.422,0.329,0.507
-Stat. Ensemble,Drift,0.962,0.885,1.0,0.445,0.359,0.526
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-0.776,-0.987,-0.581
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.526,-0.679,-0.401
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-0.493,-0.65,-0.368
-Seasonal Naive,TabPFN-TS,0.0,0.0,0.0,-0.615,-0.841,-0.425
-Seasonal Naive,Chronos-Bolt,0.0,0.0,0.0,-0.49,-0.633,-0.376
-Seasonal Naive,Moirai-2.0,0.077,0.0,0.192,-0.46,-0.627,-0.331
-Seasonal Naive,Toto-1.0,0.038,0.0,0.115,-0.451,-0.605,-0.329
-Seasonal Naive,Sundial-Base,0.038,0.0,0.115,-0.399,-0.56,-0.264
-Seasonal Naive,AutoARIMA,0.115,0.038,0.231,-0.104,-0.138,-0.073
-Seasonal Naive,Stat. Ensemble,0.269,0.135,0.423,-0.077,-0.124,-0.031
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,AutoETS,0.615,0.423,0.77,0.232,0.1,0.359
-Seasonal Naive,AutoTheta,0.615,0.423,0.808,0.096,-0.022,0.215
-Seasonal Naive,Naive,0.865,0.75,0.962,0.377,0.284,0.463
-Seasonal Naive,Drift,1.0,1.0,1.0,0.402,0.311,0.485
-AutoETS,Chronos-2,0.0,0.0,0.0,-1.313,-1.857,-0.881
-AutoETS,TiRex,0.038,0.0,0.115,-0.986,-1.387,-0.666
-AutoETS,TimesFM-2.5,0.038,0.0,0.115,-0.945,-1.345,-0.631
-AutoETS,TabPFN-TS,0.077,0.0,0.192,-1.103,-1.606,-0.713
-AutoETS,Chronos-Bolt,0.038,0.0,0.115,-0.94,-1.357,-0.624
-AutoETS,Moirai-2.0,0.077,0.0,0.192,-0.902,-1.33,-0.578
-AutoETS,Toto-1.0,0.077,0.0,0.192,-0.889,-1.292,-0.576
-AutoETS,Sundial-Base,0.154,0.038,0.308,-0.822,-1.149,-0.507
-AutoETS,AutoARIMA,0.269,0.115,0.462,-0.437,-0.684,-0.241
-AutoETS,Stat. Ensemble,0.231,0.077,0.423,-0.402,-0.651,-0.217
-AutoETS,Seasonal Naive,0.385,0.23,0.577,-0.302,-0.559,-0.111
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,AutoTheta,0.5,0.308,0.692,-0.177,-0.448,0.013
-AutoETS,Naive,0.692,0.5,0.846,0.189,0.022,0.343
-AutoETS,Drift,0.885,0.731,1.0,0.222,0.059,0.368
-AutoTheta,Chronos-2,0.0,0.0,0.0,-0.965,-1.35,-0.685
-AutoTheta,TiRex,0.0,0.0,0.0,-0.688,-0.999,-0.474
-AutoTheta,TimesFM-2.5,0.0,0.0,0.0,-0.652,-0.988,-0.437
-AutoTheta,TabPFN-TS,0.0,0.0,0.0,-0.787,-1.168,-0.519
-AutoTheta,Chronos-Bolt,0.0,0.0,0.0,-0.648,-0.97,-0.437
-AutoTheta,Moirai-2.0,0.077,0.0,0.192,-0.616,-0.923,-0.402
-AutoTheta,Toto-1.0,0.077,0.0,0.192,-0.605,-0.913,-0.384
-AutoTheta,Sundial-Base,0.077,0.0,0.192,-0.548,-0.811,-0.327
-AutoTheta,AutoARIMA,0.115,0.0,0.269,-0.221,-0.397,-0.085
-AutoTheta,Stat. Ensemble,0.115,0.0,0.269,-0.191,-0.339,-0.08
-AutoTheta,Seasonal Naive,0.385,0.192,0.577,-0.106,-0.273,0.022
-AutoTheta,AutoETS,0.5,0.308,0.692,0.15,-0.013,0.309
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Naive,0.654,0.462,0.846,0.311,0.19,0.426
-AutoTheta,Drift,0.808,0.654,0.923,0.339,0.219,0.449
-Naive,Chronos-2,0.0,0.0,0.0,-1.852,-2.524,-1.341
-Naive,TiRex,0.0,0.0,0.0,-1.45,-1.993,-1.054
-Naive,TimesFM-2.5,0.0,0.0,0.0,-1.398,-1.932,-1.0
-Naive,TabPFN-TS,0.0,0.0,0.0,-1.593,-2.233,-1.123
-Naive,Chronos-Bolt,0.0,0.0,0.0,-1.392,-1.887,-1.001
-Naive,Moirai-2.0,0.038,0.0,0.115,-1.345,-1.866,-0.964
-Naive,Toto-1.0,0.0,0.0,0.0,-1.33,-1.815,-0.961
-Naive,Sundial-Base,0.0,0.0,0.0,-1.247,-1.782,-0.853
-Naive,AutoARIMA,0.077,0.0,0.192,-0.772,-1.079,-0.535
-Naive,Stat. Ensemble,0.077,0.0,0.192,-0.729,-1.027,-0.491
-Naive,Seasonal Naive,0.135,0.038,0.25,-0.606,-0.862,-0.397
-Naive,AutoETS,0.308,0.154,0.5,-0.233,-0.521,-0.023
-Naive,AutoTheta,0.346,0.154,0.538,-0.451,-0.743,-0.234
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,0.962,0.885,1.0,0.04,0.025,0.057
-Drift,Chronos-2,0.0,0.0,0.0,-1.971,-2.673,-1.447
-Drift,TiRex,0.0,0.0,0.0,-1.552,-2.088,-1.148
-Drift,TimesFM-2.5,0.0,0.0,0.0,-1.499,-2.051,-1.089
-Drift,TabPFN-TS,0.0,0.0,0.0,-1.702,-2.354,-1.208
-Drift,Chronos-Bolt,0.0,0.0,0.0,-1.493,-2.007,-1.085
-Drift,Moirai-2.0,0.0,0.0,0.0,-1.443,-1.963,-1.045
-Drift,Toto-1.0,0.0,0.0,0.0,-1.427,-1.926,-1.041
-Drift,Sundial-Base,0.0,0.0,0.0,-1.341,-1.884,-0.929
-Drift,AutoARIMA,0.038,0.0,0.115,-0.846,-1.169,-0.599
-Drift,Stat. Ensemble,0.038,0.0,0.115,-0.802,-1.111,-0.559
-Drift,Seasonal Naive,0.0,0.0,0.0,-0.673,-0.942,-0.452
-Drift,AutoETS,0.115,0.0,0.269,-0.285,-0.583,-0.063
-Drift,AutoTheta,0.192,0.077,0.346,-0.512,-0.816,-0.28
-Drift,Naive,0.038,0.0,0.115,-0.042,-0.06,-0.026
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/domain_energy/pairwise_WAPE.csv b/tables/domain_energy/pairwise_WAPE.csv
deleted file mode 100644
index 9f2f0fe670403de935d91b45332719fa203b54e1..0000000000000000000000000000000000000000
--- a/tables/domain_energy/pairwise_WAPE.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TimesFM-2.5,0.731,0.538,0.885,0.149,0.075,0.214
-Chronos-2,TiRex,0.846,0.692,0.962,0.141,0.074,0.204
-Chronos-2,Chronos-Bolt,0.923,0.808,1.0,0.149,0.081,0.219
-Chronos-2,TabPFN-TS,0.846,0.692,0.962,0.104,0.034,0.174
-Chronos-2,Moirai-2.0,0.885,0.731,1.0,0.156,0.089,0.221
-Chronos-2,Sundial-Base,0.846,0.692,0.962,0.13,0.071,0.194
-Chronos-2,Toto-1.0,0.846,0.692,0.962,0.177,0.109,0.245
-Chronos-2,Stat. Ensemble,0.962,0.885,1.0,0.331,0.242,0.409
-Chronos-2,AutoARIMA,0.962,0.885,1.0,0.358,0.267,0.438
-Chronos-2,AutoTheta,0.962,0.885,1.0,0.348,0.276,0.418
-Chronos-2,Naive,0.885,0.731,1.0,0.518,0.403,0.613
-Chronos-2,Seasonal Naive,0.923,0.808,1.0,0.376,0.282,0.449
-Chronos-2,AutoETS,0.885,0.731,1.0,0.497,0.365,0.605
-Chronos-2,Drift,0.923,0.808,1.0,0.544,0.439,0.636
-TimesFM-2.5,Chronos-2,0.269,0.115,0.462,-0.175,-0.273,-0.081
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TiRex,0.442,0.25,0.635,-0.009,-0.043,0.023
-TimesFM-2.5,Chronos-Bolt,0.5,0.327,0.674,0.001,-0.039,0.042
-TimesFM-2.5,TabPFN-TS,0.5,0.308,0.692,-0.053,-0.161,0.048
-TimesFM-2.5,Moirai-2.0,0.577,0.404,0.75,0.009,-0.046,0.062
-TimesFM-2.5,Sundial-Base,0.596,0.423,0.788,-0.022,-0.12,0.067
-TimesFM-2.5,Toto-1.0,0.654,0.481,0.808,0.033,-0.012,0.081
-TimesFM-2.5,Stat. Ensemble,0.808,0.615,0.962,0.214,0.126,0.294
-TimesFM-2.5,AutoARIMA,0.923,0.808,1.0,0.246,0.159,0.324
-TimesFM-2.5,AutoTheta,0.962,0.885,1.0,0.234,0.168,0.307
-TimesFM-2.5,Naive,0.885,0.731,1.0,0.434,0.317,0.538
-TimesFM-2.5,Seasonal Naive,0.923,0.808,1.0,0.267,0.184,0.338
-TimesFM-2.5,AutoETS,0.846,0.692,0.962,0.409,0.27,0.532
-TimesFM-2.5,Drift,0.885,0.731,1.0,0.464,0.352,0.562
-TiRex,Chronos-2,0.154,0.038,0.308,-0.164,-0.256,-0.08
-TiRex,TimesFM-2.5,0.558,0.365,0.75,0.009,-0.023,0.041
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,Chronos-Bolt,0.481,0.308,0.673,0.01,-0.028,0.06
-TiRex,TabPFN-TS,0.538,0.346,0.731,-0.043,-0.165,0.065
-TiRex,Moirai-2.0,0.442,0.269,0.615,0.018,-0.013,0.051
-TiRex,Sundial-Base,0.635,0.462,0.808,-0.013,-0.12,0.076
-TiRex,Toto-1.0,0.712,0.538,0.885,0.042,0.009,0.077
-TiRex,Stat. Ensemble,0.808,0.654,0.924,0.221,0.134,0.303
-TiRex,AutoARIMA,0.885,0.731,1.0,0.253,0.169,0.337
-TiRex,AutoTheta,1.0,1.0,1.0,0.241,0.179,0.313
-TiRex,Naive,0.885,0.731,1.0,0.439,0.321,0.545
-TiRex,Seasonal Naive,0.885,0.731,1.0,0.273,0.184,0.352
-TiRex,AutoETS,0.846,0.692,0.962,0.414,0.268,0.54
-TiRex,Drift,0.885,0.731,1.0,0.469,0.354,0.568
-Chronos-Bolt,Chronos-2,0.077,0.0,0.192,-0.175,-0.28,-0.089
-Chronos-Bolt,TimesFM-2.5,0.5,0.326,0.673,-0.001,-0.044,0.038
-Chronos-Bolt,TiRex,0.519,0.327,0.692,-0.01,-0.064,0.027
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,TabPFN-TS,0.462,0.269,0.654,-0.053,-0.157,0.036
-Chronos-Bolt,Moirai-2.0,0.577,0.404,0.731,0.008,-0.066,0.068
-Chronos-Bolt,Sundial-Base,0.519,0.327,0.692,-0.023,-0.128,0.067
-Chronos-Bolt,Toto-1.0,0.615,0.442,0.788,0.032,-0.022,0.081
-Chronos-Bolt,Stat. Ensemble,0.731,0.538,0.885,0.214,0.122,0.3
-Chronos-Bolt,AutoARIMA,0.846,0.692,0.962,0.245,0.16,0.331
-Chronos-Bolt,AutoTheta,0.962,0.885,1.0,0.234,0.166,0.312
-Chronos-Bolt,Naive,0.846,0.692,0.962,0.434,0.311,0.538
-Chronos-Bolt,Seasonal Naive,0.923,0.808,1.0,0.266,0.183,0.339
-Chronos-Bolt,AutoETS,0.808,0.654,0.924,0.408,0.263,0.533
-Chronos-Bolt,Drift,0.846,0.692,0.962,0.464,0.347,0.563
-TabPFN-TS,Chronos-2,0.154,0.038,0.308,-0.116,-0.211,-0.035
-TabPFN-TS,TimesFM-2.5,0.5,0.308,0.692,0.05,-0.05,0.139
-TabPFN-TS,TiRex,0.462,0.269,0.654,0.041,-0.07,0.142
-TabPFN-TS,Chronos-Bolt,0.538,0.346,0.731,0.051,-0.037,0.135
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Moirai-2.0,0.538,0.346,0.731,0.059,-0.054,0.165
-TabPFN-TS,Sundial-Base,0.577,0.385,0.769,0.029,-0.091,0.135
-TabPFN-TS,Toto-1.0,0.538,0.346,0.731,0.081,-0.023,0.177
-TabPFN-TS,Stat. Ensemble,0.846,0.692,0.962,0.254,0.151,0.343
-TabPFN-TS,AutoARIMA,0.808,0.654,0.924,0.284,0.181,0.375
-TabPFN-TS,AutoTheta,0.846,0.692,0.962,0.273,0.178,0.359
-TabPFN-TS,Naive,0.808,0.654,0.923,0.462,0.33,0.57
-TabPFN-TS,Seasonal Naive,0.885,0.731,1.0,0.303,0.205,0.384
-TabPFN-TS,AutoETS,0.808,0.654,0.962,0.438,0.285,0.563
-TabPFN-TS,Drift,0.846,0.692,0.962,0.491,0.367,0.59
-Moirai-2.0,Chronos-2,0.115,0.0,0.269,-0.185,-0.284,-0.098
-Moirai-2.0,TimesFM-2.5,0.423,0.25,0.596,-0.009,-0.067,0.044
-Moirai-2.0,TiRex,0.558,0.385,0.731,-0.018,-0.054,0.013
-Moirai-2.0,Chronos-Bolt,0.423,0.269,0.596,-0.008,-0.073,0.062
-Moirai-2.0,TabPFN-TS,0.462,0.269,0.654,-0.062,-0.197,0.052
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Sundial-Base,0.596,0.423,0.769,-0.032,-0.143,0.065
-Moirai-2.0,Toto-1.0,0.577,0.404,0.75,0.024,-0.008,0.058
-Moirai-2.0,Stat. Ensemble,0.692,0.5,0.846,0.207,0.115,0.288
-Moirai-2.0,AutoARIMA,0.808,0.654,0.923,0.239,0.149,0.328
-Moirai-2.0,AutoTheta,0.962,0.885,1.0,0.228,0.162,0.3
-Moirai-2.0,Naive,0.846,0.692,0.962,0.429,0.314,0.532
-Moirai-2.0,Seasonal Naive,0.808,0.654,0.924,0.26,0.164,0.341
-Moirai-2.0,AutoETS,0.808,0.654,0.923,0.404,0.253,0.532
-Moirai-2.0,Drift,0.885,0.731,1.0,0.46,0.35,0.554
-Sundial-Base,Chronos-2,0.154,0.038,0.308,-0.149,-0.241,-0.077
-Sundial-Base,TimesFM-2.5,0.404,0.212,0.577,0.022,-0.072,0.107
-Sundial-Base,TiRex,0.365,0.192,0.538,0.013,-0.083,0.107
-Sundial-Base,Chronos-Bolt,0.481,0.308,0.673,0.023,-0.072,0.113
-Sundial-Base,TabPFN-TS,0.423,0.231,0.615,-0.03,-0.156,0.083
-Sundial-Base,Moirai-2.0,0.404,0.231,0.577,0.031,-0.069,0.125
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Toto-1.0,0.519,0.327,0.712,0.054,-0.039,0.141
-Sundial-Base,Stat. Ensemble,0.769,0.577,0.923,0.231,0.132,0.318
-Sundial-Base,AutoARIMA,0.808,0.654,0.924,0.262,0.168,0.346
-Sundial-Base,AutoTheta,0.846,0.692,0.962,0.251,0.169,0.332
-Sundial-Base,Naive,0.846,0.692,0.962,0.446,0.316,0.562
-Sundial-Base,Seasonal Naive,0.846,0.692,0.962,0.283,0.183,0.364
-Sundial-Base,AutoETS,0.808,0.654,0.924,0.422,0.278,0.534
-Sundial-Base,Drift,0.846,0.692,0.962,0.476,0.35,0.586
-Toto-1.0,Chronos-2,0.154,0.038,0.308,-0.214,-0.324,-0.122
-Toto-1.0,TimesFM-2.5,0.346,0.192,0.519,-0.034,-0.089,0.012
-Toto-1.0,TiRex,0.288,0.115,0.462,-0.043,-0.084,-0.009
-Toto-1.0,Chronos-Bolt,0.385,0.212,0.558,-0.033,-0.088,0.021
-Toto-1.0,TabPFN-TS,0.462,0.269,0.654,-0.088,-0.216,0.022
-Toto-1.0,Moirai-2.0,0.423,0.25,0.596,-0.025,-0.061,0.008
-Toto-1.0,Sundial-Base,0.481,0.288,0.673,-0.057,-0.164,0.038
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,Stat. Ensemble,0.692,0.5,0.846,0.188,0.094,0.273
-Toto-1.0,AutoARIMA,0.846,0.692,0.962,0.22,0.129,0.309
-Toto-1.0,AutoTheta,0.846,0.692,0.962,0.208,0.137,0.284
-Toto-1.0,Naive,0.808,0.654,0.924,0.415,0.296,0.517
-Toto-1.0,Seasonal Naive,0.846,0.654,0.962,0.242,0.151,0.321
-Toto-1.0,AutoETS,0.769,0.614,0.923,0.389,0.242,0.513
-Toto-1.0,Drift,0.885,0.769,1.0,0.446,0.337,0.542
-Stat. Ensemble,Chronos-2,0.038,0.0,0.115,-0.495,-0.692,-0.319
-Stat. Ensemble,TimesFM-2.5,0.192,0.038,0.385,-0.273,-0.416,-0.144
-Stat. Ensemble,TiRex,0.192,0.076,0.346,-0.284,-0.434,-0.154
-Stat. Ensemble,Chronos-Bolt,0.269,0.115,0.462,-0.272,-0.429,-0.139
-Stat. Ensemble,TabPFN-TS,0.154,0.038,0.308,-0.34,-0.522,-0.178
-Stat. Ensemble,Moirai-2.0,0.308,0.154,0.5,-0.261,-0.405,-0.13
-Stat. Ensemble,Sundial-Base,0.231,0.077,0.423,-0.301,-0.467,-0.152
-Stat. Ensemble,Toto-1.0,0.308,0.154,0.5,-0.231,-0.376,-0.104
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoARIMA,0.654,0.481,0.827,0.04,0.008,0.076
-Stat. Ensemble,AutoTheta,0.731,0.538,0.885,0.026,-0.029,0.075
-Stat. Ensemble,Naive,0.808,0.654,0.962,0.28,0.162,0.399
-Stat. Ensemble,Seasonal Naive,0.692,0.538,0.846,0.067,0.029,0.103
-Stat. Ensemble,AutoETS,0.808,0.654,0.923,0.248,0.12,0.381
-Stat. Ensemble,Drift,0.808,0.654,0.962,0.318,0.206,0.435
-AutoARIMA,Chronos-2,0.038,0.0,0.115,-0.558,-0.781,-0.363
-AutoARIMA,TimesFM-2.5,0.077,0.0,0.192,-0.326,-0.48,-0.19
-AutoARIMA,TiRex,0.115,0.0,0.269,-0.338,-0.509,-0.203
-AutoARIMA,Chronos-Bolt,0.154,0.038,0.308,-0.325,-0.496,-0.19
-AutoARIMA,TabPFN-TS,0.192,0.076,0.346,-0.396,-0.601,-0.222
-AutoARIMA,Moirai-2.0,0.192,0.077,0.346,-0.314,-0.489,-0.175
-AutoARIMA,Sundial-Base,0.192,0.076,0.346,-0.356,-0.529,-0.202
-AutoARIMA,Toto-1.0,0.154,0.038,0.308,-0.283,-0.447,-0.148
-AutoARIMA,Stat. Ensemble,0.346,0.173,0.519,-0.042,-0.082,-0.008
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoTheta,0.462,0.269,0.654,-0.015,-0.079,0.04
-AutoARIMA,Naive,0.731,0.577,0.885,0.249,0.12,0.379
-AutoARIMA,Seasonal Naive,0.692,0.519,0.846,0.027,-0.012,0.062
-AutoARIMA,AutoETS,0.615,0.423,0.808,0.216,0.079,0.35
-AutoARIMA,Drift,0.731,0.577,0.885,0.29,0.167,0.413
-AutoTheta,Chronos-2,0.038,0.0,0.115,-0.534,-0.718,-0.381
-AutoTheta,TimesFM-2.5,0.038,0.0,0.115,-0.306,-0.443,-0.202
-AutoTheta,TiRex,0.0,0.0,0.0,-0.318,-0.455,-0.218
-AutoTheta,Chronos-Bolt,0.038,0.0,0.115,-0.305,-0.452,-0.2
-AutoTheta,TabPFN-TS,0.154,0.038,0.308,-0.375,-0.561,-0.216
-AutoTheta,Moirai-2.0,0.038,0.0,0.115,-0.295,-0.428,-0.193
-AutoTheta,Sundial-Base,0.154,0.038,0.308,-0.335,-0.496,-0.204
-AutoTheta,Toto-1.0,0.154,0.038,0.308,-0.263,-0.397,-0.158
-AutoTheta,Stat. Ensemble,0.269,0.115,0.462,-0.026,-0.081,0.029
-AutoTheta,AutoARIMA,0.538,0.346,0.731,0.015,-0.042,0.073
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Naive,0.654,0.462,0.846,0.261,0.138,0.381
-AutoTheta,Seasonal Naive,0.615,0.423,0.808,0.042,-0.02,0.097
-AutoTheta,AutoETS,0.654,0.462,0.808,0.228,0.087,0.37
-AutoTheta,Drift,0.808,0.654,0.962,0.3,0.184,0.415
-Naive,Chronos-2,0.115,0.0,0.269,-1.075,-1.586,-0.674
-Naive,TimesFM-2.5,0.115,0.0,0.269,-0.767,-1.166,-0.465
-Naive,TiRex,0.115,0.0,0.269,-0.783,-1.198,-0.474
-Naive,Chronos-Bolt,0.154,0.038,0.308,-0.766,-1.162,-0.452
-Naive,TabPFN-TS,0.192,0.077,0.346,-0.86,-1.326,-0.492
-Naive,Moirai-2.0,0.154,0.038,0.308,-0.751,-1.137,-0.458
-Naive,Sundial-Base,0.154,0.038,0.308,-0.807,-1.283,-0.462
-Naive,Toto-1.0,0.192,0.076,0.346,-0.709,-1.072,-0.42
-Naive,Stat. Ensemble,0.192,0.038,0.346,-0.388,-0.664,-0.193
-Naive,AutoARIMA,0.269,0.115,0.423,-0.332,-0.611,-0.137
-Naive,AutoTheta,0.346,0.154,0.538,-0.353,-0.616,-0.16
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Seasonal Naive,0.404,0.231,0.558,-0.296,-0.551,-0.107
-Naive,AutoETS,0.577,0.385,0.769,-0.045,-0.271,0.122
-Naive,Drift,0.923,0.808,1.0,0.053,0.032,0.078
-Seasonal Naive,Chronos-2,0.077,0.0,0.192,-0.601,-0.814,-0.393
-Seasonal Naive,TimesFM-2.5,0.077,0.0,0.192,-0.363,-0.511,-0.225
-Seasonal Naive,TiRex,0.115,0.0,0.269,-0.376,-0.544,-0.225
-Seasonal Naive,Chronos-Bolt,0.077,0.0,0.192,-0.363,-0.513,-0.225
-Seasonal Naive,TabPFN-TS,0.115,0.0,0.269,-0.435,-0.622,-0.257
-Seasonal Naive,Moirai-2.0,0.192,0.076,0.346,-0.351,-0.517,-0.196
-Seasonal Naive,Sundial-Base,0.154,0.038,0.308,-0.394,-0.572,-0.225
-Seasonal Naive,Toto-1.0,0.154,0.038,0.346,-0.319,-0.473,-0.178
-Seasonal Naive,Stat. Ensemble,0.308,0.154,0.462,-0.071,-0.115,-0.03
-Seasonal Naive,AutoARIMA,0.308,0.154,0.481,-0.028,-0.066,0.012
-Seasonal Naive,AutoTheta,0.385,0.192,0.577,-0.044,-0.107,0.019
-Seasonal Naive,Naive,0.596,0.442,0.769,0.228,0.097,0.355
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,AutoETS,0.615,0.423,0.808,0.194,0.048,0.336
-Seasonal Naive,Drift,0.692,0.538,0.885,0.27,0.146,0.393
-AutoETS,Chronos-2,0.115,0.0,0.269,-0.987,-1.529,-0.575
-AutoETS,TimesFM-2.5,0.154,0.038,0.308,-0.692,-1.136,-0.369
-AutoETS,TiRex,0.154,0.038,0.308,-0.707,-1.173,-0.365
-AutoETS,Chronos-Bolt,0.192,0.076,0.346,-0.69,-1.143,-0.356
-AutoETS,TabPFN-TS,0.192,0.038,0.346,-0.781,-1.288,-0.399
-AutoETS,Moirai-2.0,0.192,0.077,0.346,-0.677,-1.137,-0.34
-AutoETS,Sundial-Base,0.192,0.076,0.346,-0.729,-1.145,-0.385
-AutoETS,Toto-1.0,0.231,0.077,0.386,-0.636,-1.055,-0.318
-AutoETS,Stat. Ensemble,0.192,0.077,0.346,-0.329,-0.614,-0.136
-AutoETS,AutoARIMA,0.385,0.192,0.577,-0.275,-0.538,-0.086
-AutoETS,AutoTheta,0.346,0.192,0.538,-0.295,-0.587,-0.095
-AutoETS,Naive,0.423,0.231,0.615,0.043,-0.139,0.213
-AutoETS,Seasonal Naive,0.385,0.192,0.577,-0.241,-0.505,-0.051
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Drift,0.692,0.5,0.846,0.094,-0.078,0.255
-Drift,Chronos-2,0.077,0.0,0.192,-1.193,-1.748,-0.782
-Drift,TimesFM-2.5,0.115,0.0,0.269,-0.867,-1.283,-0.544
-Drift,TiRex,0.115,0.0,0.269,-0.884,-1.313,-0.548
-Drift,Chronos-Bolt,0.154,0.038,0.308,-0.866,-1.29,-0.531
-Drift,TabPFN-TS,0.154,0.038,0.308,-0.965,-1.439,-0.579
-Drift,Moirai-2.0,0.115,0.0,0.269,-0.85,-1.241,-0.539
-Drift,Sundial-Base,0.154,0.038,0.308,-0.909,-1.417,-0.539
-Drift,Toto-1.0,0.115,0.0,0.231,-0.806,-1.183,-0.509
-Drift,Stat. Ensemble,0.192,0.038,0.346,-0.467,-0.771,-0.259
-Drift,AutoARIMA,0.269,0.115,0.423,-0.408,-0.704,-0.2
-Drift,AutoTheta,0.192,0.038,0.346,-0.429,-0.71,-0.225
-Drift,Naive,0.077,0.0,0.192,-0.056,-0.085,-0.033
-Drift,Seasonal Naive,0.308,0.115,0.462,-0.369,-0.648,-0.171
-Drift,AutoETS,0.308,0.154,0.5,-0.104,-0.342,0.073
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/domain_energy/pairwise_WQL.csv b/tables/domain_energy/pairwise_WQL.csv
deleted file mode 100644
index 0039cf04a0e4d8c4f7fd473653f4d679009ab650..0000000000000000000000000000000000000000
--- a/tables/domain_energy/pairwise_WQL.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TiRex,0.808,0.654,0.962,0.143,0.076,0.204
-Chronos-2,TabPFN-TS,0.808,0.654,0.962,0.103,0.043,0.165
-Chronos-2,TimesFM-2.5,0.808,0.654,0.962,0.159,0.086,0.224
-Chronos-2,Chronos-Bolt,0.962,0.885,1.0,0.165,0.099,0.23
-Chronos-2,Moirai-2.0,0.923,0.808,1.0,0.175,0.108,0.243
-Chronos-2,Toto-1.0,0.885,0.769,1.0,0.186,0.119,0.253
-Chronos-2,Sundial-Base,0.962,0.885,1.0,0.212,0.16,0.273
-Chronos-2,Stat. Ensemble,1.0,1.0,1.0,0.401,0.322,0.47
-Chronos-2,AutoARIMA,1.0,1.0,1.0,0.402,0.319,0.474
-Chronos-2,AutoETS,0.962,0.885,1.0,0.565,0.464,0.652
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.46,0.384,0.522
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.485,0.417,0.553
-Chronos-2,Naive,1.0,1.0,1.0,0.642,0.566,0.711
-Chronos-2,Drift,1.0,1.0,1.0,0.657,0.583,0.723
-TiRex,Chronos-2,0.192,0.038,0.346,-0.166,-0.256,-0.083
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,TabPFN-TS,0.462,0.269,0.654,-0.047,-0.16,0.056
-TiRex,TimesFM-2.5,0.673,0.5,0.846,0.02,-0.015,0.053
-TiRex,Chronos-Bolt,0.712,0.538,0.865,0.026,-0.018,0.077
-TiRex,Moirai-2.0,0.75,0.577,0.904,0.038,0.007,0.071
-TiRex,Toto-1.0,0.827,0.673,0.962,0.051,0.023,0.082
-TiRex,Sundial-Base,0.788,0.635,0.923,0.082,-0.005,0.162
-TiRex,Stat. Ensemble,0.923,0.808,1.0,0.302,0.222,0.379
-TiRex,AutoARIMA,0.962,0.885,1.0,0.302,0.222,0.38
-TiRex,AutoETS,0.962,0.885,1.0,0.493,0.379,0.594
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.37,0.299,0.439
-TiRex,AutoTheta,1.0,1.0,1.0,0.4,0.33,0.472
-TiRex,Naive,1.0,1.0,1.0,0.583,0.496,0.662
-TiRex,Drift,1.0,1.0,1.0,0.6,0.519,0.674
-TabPFN-TS,Chronos-2,0.192,0.038,0.346,-0.114,-0.198,-0.045
-TabPFN-TS,TiRex,0.538,0.346,0.731,0.045,-0.06,0.138
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,TimesFM-2.5,0.5,0.308,0.692,0.063,-0.03,0.15
-TabPFN-TS,Chronos-Bolt,0.577,0.385,0.769,0.069,-0.012,0.148
-TabPFN-TS,Moirai-2.0,0.615,0.423,0.808,0.081,-0.022,0.18
-TabPFN-TS,Toto-1.0,0.577,0.385,0.769,0.093,-0.007,0.189
-TabPFN-TS,Sundial-Base,0.769,0.615,0.923,0.123,0.016,0.219
-TabPFN-TS,Stat. Ensemble,0.962,0.885,1.0,0.333,0.245,0.415
-TabPFN-TS,AutoARIMA,0.885,0.731,1.0,0.333,0.24,0.418
-TabPFN-TS,AutoETS,0.962,0.885,1.0,0.516,0.398,0.612
-TabPFN-TS,Seasonal Naive,1.0,1.0,1.0,0.398,0.321,0.473
-TabPFN-TS,AutoTheta,1.0,1.0,1.0,0.426,0.336,0.513
-TabPFN-TS,Naive,1.0,1.0,1.0,0.601,0.507,0.685
-TabPFN-TS,Drift,1.0,1.0,1.0,0.618,0.526,0.695
-TimesFM-2.5,Chronos-2,0.192,0.038,0.346,-0.19,-0.289,-0.094
-TimesFM-2.5,TiRex,0.327,0.154,0.5,-0.02,-0.056,0.015
-TimesFM-2.5,TabPFN-TS,0.5,0.308,0.692,-0.068,-0.177,0.029
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,Chronos-Bolt,0.577,0.404,0.75,0.006,-0.031,0.046
-TimesFM-2.5,Moirai-2.0,0.615,0.442,0.788,0.018,-0.038,0.072
-TimesFM-2.5,Toto-1.0,0.654,0.481,0.808,0.032,-0.016,0.081
-TimesFM-2.5,Sundial-Base,0.75,0.596,0.904,0.063,-0.029,0.147
-TimesFM-2.5,Stat. Ensemble,0.962,0.885,1.0,0.288,0.209,0.366
-TimesFM-2.5,AutoARIMA,1.0,1.0,1.0,0.288,0.212,0.365
-TimesFM-2.5,AutoETS,0.962,0.885,1.0,0.483,0.376,0.581
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.357,0.288,0.423
-TimesFM-2.5,AutoTheta,1.0,1.0,1.0,0.387,0.31,0.47
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.574,0.483,0.657
-TimesFM-2.5,Drift,1.0,1.0,1.0,0.592,0.507,0.67
-Chronos-Bolt,Chronos-2,0.038,0.0,0.115,-0.197,-0.299,-0.11
-Chronos-Bolt,TiRex,0.288,0.135,0.462,-0.027,-0.084,0.018
-Chronos-Bolt,TabPFN-TS,0.423,0.231,0.615,-0.074,-0.174,0.012
-Chronos-Bolt,TimesFM-2.5,0.423,0.25,0.596,-0.006,-0.048,0.03
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Moirai-2.0,0.462,0.308,0.635,0.012,-0.062,0.076
-Chronos-Bolt,Toto-1.0,0.577,0.404,0.75,0.026,-0.03,0.079
-Chronos-Bolt,Sundial-Base,0.75,0.596,0.904,0.057,-0.039,0.142
-Chronos-Bolt,Stat. Ensemble,0.923,0.808,1.0,0.283,0.207,0.358
-Chronos-Bolt,AutoARIMA,0.923,0.808,1.0,0.284,0.204,0.362
-Chronos-Bolt,AutoETS,0.962,0.885,1.0,0.48,0.368,0.58
-Chronos-Bolt,Seasonal Naive,1.0,1.0,1.0,0.353,0.287,0.417
-Chronos-Bolt,AutoTheta,1.0,1.0,1.0,0.384,0.307,0.466
-Chronos-Bolt,Naive,1.0,1.0,1.0,0.572,0.485,0.651
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.589,0.506,0.663
-Moirai-2.0,Chronos-2,0.077,0.0,0.192,-0.212,-0.32,-0.122
-Moirai-2.0,TiRex,0.25,0.096,0.423,-0.039,-0.077,-0.007
-Moirai-2.0,TabPFN-TS,0.385,0.192,0.577,-0.088,-0.219,0.022
-Moirai-2.0,TimesFM-2.5,0.385,0.212,0.558,-0.019,-0.077,0.037
-Moirai-2.0,Chronos-Bolt,0.538,0.365,0.692,-0.012,-0.082,0.058
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Toto-1.0,0.538,0.365,0.712,0.014,-0.016,0.046
-Moirai-2.0,Sundial-Base,0.788,0.654,0.923,0.045,-0.054,0.134
-Moirai-2.0,Stat. Ensemble,0.885,0.768,1.0,0.274,0.181,0.36
-Moirai-2.0,AutoARIMA,0.923,0.808,1.0,0.275,0.183,0.363
-Moirai-2.0,AutoETS,0.923,0.808,1.0,0.473,0.354,0.58
-Moirai-2.0,Seasonal Naive,0.923,0.808,1.0,0.345,0.266,0.421
-Moirai-2.0,AutoTheta,0.923,0.808,1.0,0.376,0.293,0.457
-Moirai-2.0,Naive,0.962,0.885,1.0,0.566,0.482,0.648
-Moirai-2.0,Drift,1.0,1.0,1.0,0.584,0.502,0.661
-Toto-1.0,Chronos-2,0.115,0.0,0.231,-0.229,-0.339,-0.136
-Toto-1.0,TiRex,0.173,0.038,0.327,-0.054,-0.089,-0.024
-Toto-1.0,TabPFN-TS,0.423,0.231,0.615,-0.103,-0.233,0.007
-Toto-1.0,TimesFM-2.5,0.346,0.192,0.519,-0.033,-0.088,0.016
-Toto-1.0,Chronos-Bolt,0.423,0.25,0.596,-0.026,-0.086,0.029
-Toto-1.0,Moirai-2.0,0.462,0.288,0.635,-0.014,-0.048,0.016
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,Sundial-Base,0.712,0.557,0.865,0.032,-0.064,0.118
-Toto-1.0,Stat. Ensemble,0.846,0.692,0.962,0.264,0.176,0.347
-Toto-1.0,AutoARIMA,0.885,0.731,1.0,0.265,0.173,0.351
-Toto-1.0,AutoETS,0.885,0.731,1.0,0.466,0.343,0.573
-Toto-1.0,Seasonal Naive,0.962,0.885,1.0,0.336,0.258,0.412
-Toto-1.0,AutoTheta,0.962,0.885,1.0,0.367,0.282,0.45
-Toto-1.0,Naive,0.962,0.885,1.0,0.56,0.475,0.64
-Toto-1.0,Drift,0.962,0.885,1.0,0.578,0.497,0.654
-Sundial-Base,Chronos-2,0.038,0.0,0.115,-0.27,-0.375,-0.19
-Sundial-Base,TiRex,0.212,0.077,0.365,-0.089,-0.193,0.005
-Sundial-Base,TabPFN-TS,0.231,0.077,0.385,-0.14,-0.281,-0.016
-Sundial-Base,TimesFM-2.5,0.25,0.096,0.404,-0.067,-0.172,0.029
-Sundial-Base,Chronos-Bolt,0.25,0.096,0.404,-0.061,-0.166,0.037
-Sundial-Base,Moirai-2.0,0.212,0.077,0.346,-0.048,-0.154,0.052
-Sundial-Base,Toto-1.0,0.288,0.135,0.443,-0.033,-0.133,0.06
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Stat. Ensemble,0.769,0.577,0.923,0.24,0.14,0.328
-Sundial-Base,AutoARIMA,0.808,0.654,0.962,0.24,0.142,0.324
-Sundial-Base,AutoETS,0.846,0.692,0.962,0.448,0.328,0.539
-Sundial-Base,Seasonal Naive,0.885,0.731,1.0,0.314,0.227,0.393
-Sundial-Base,AutoTheta,0.923,0.808,1.0,0.346,0.251,0.424
-Sundial-Base,Naive,0.962,0.885,1.0,0.546,0.446,0.638
-Sundial-Base,Drift,1.0,1.0,1.0,0.564,0.467,0.653
-Stat. Ensemble,Chronos-2,0.0,0.0,0.0,-0.67,-0.887,-0.475
-Stat. Ensemble,TiRex,0.077,0.0,0.192,-0.432,-0.61,-0.286
-Stat. Ensemble,TabPFN-TS,0.038,0.0,0.115,-0.499,-0.711,-0.324
-Stat. Ensemble,TimesFM-2.5,0.038,0.0,0.115,-0.404,-0.576,-0.265
-Stat. Ensemble,Chronos-Bolt,0.077,0.0,0.192,-0.395,-0.558,-0.261
-Stat. Ensemble,Moirai-2.0,0.115,0.0,0.232,-0.378,-0.563,-0.221
-Stat. Ensemble,Toto-1.0,0.154,0.038,0.308,-0.359,-0.531,-0.214
-Stat. Ensemble,Sundial-Base,0.231,0.077,0.423,-0.315,-0.489,-0.162
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoARIMA,0.5,0.308,0.692,0.001,-0.03,0.03
-Stat. Ensemble,AutoETS,0.808,0.654,0.923,0.274,0.156,0.394
-Stat. Ensemble,Seasonal Naive,0.808,0.673,0.923,0.098,0.062,0.134
-Stat. Ensemble,AutoTheta,0.846,0.692,0.962,0.14,0.054,0.228
-Stat. Ensemble,Naive,0.962,0.885,1.0,0.403,0.302,0.5
-Stat. Ensemble,Drift,0.962,0.885,1.0,0.427,0.332,0.521
-AutoARIMA,Chronos-2,0.0,0.0,0.0,-0.672,-0.901,-0.469
-AutoARIMA,TiRex,0.038,0.0,0.115,-0.433,-0.614,-0.285
-AutoARIMA,TabPFN-TS,0.115,0.0,0.269,-0.5,-0.719,-0.316
-AutoARIMA,TimesFM-2.5,0.0,0.0,0.0,-0.405,-0.574,-0.269
-AutoARIMA,Chronos-Bolt,0.077,0.0,0.192,-0.396,-0.568,-0.256
-AutoARIMA,Moirai-2.0,0.077,0.0,0.192,-0.379,-0.569,-0.224
-AutoARIMA,Toto-1.0,0.115,0.0,0.269,-0.36,-0.54,-0.209
-AutoARIMA,Sundial-Base,0.192,0.038,0.346,-0.316,-0.48,-0.166
-AutoARIMA,Stat. Ensemble,0.5,0.308,0.692,-0.001,-0.031,0.029
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoETS,0.731,0.538,0.885,0.273,0.152,0.393
-AutoARIMA,Seasonal Naive,0.846,0.712,0.962,0.097,0.065,0.133
-AutoARIMA,AutoTheta,0.846,0.692,0.962,0.139,0.048,0.225
-AutoARIMA,Naive,0.885,0.769,1.0,0.402,0.299,0.502
-AutoARIMA,Drift,0.923,0.808,1.0,0.427,0.331,0.523
-AutoETS,Chronos-2,0.038,0.0,0.115,-1.301,-1.876,-0.865
-AutoETS,TiRex,0.038,0.0,0.115,-0.973,-1.463,-0.611
-AutoETS,TabPFN-TS,0.038,0.0,0.115,-1.065,-1.575,-0.661
-AutoETS,TimesFM-2.5,0.038,0.0,0.115,-0.934,-1.389,-0.604
-AutoETS,Chronos-Bolt,0.038,0.0,0.115,-0.922,-1.378,-0.581
-AutoETS,Moirai-2.0,0.077,0.0,0.192,-0.898,-1.383,-0.547
-AutoETS,Toto-1.0,0.115,0.0,0.269,-0.873,-1.342,-0.522
-AutoETS,Sundial-Base,0.154,0.038,0.308,-0.812,-1.168,-0.489
-AutoETS,Stat. Ensemble,0.192,0.077,0.346,-0.378,-0.651,-0.185
-AutoETS,AutoARIMA,0.269,0.115,0.462,-0.376,-0.647,-0.18
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Seasonal Naive,0.423,0.231,0.615,-0.243,-0.498,-0.059
-AutoETS,AutoTheta,0.423,0.231,0.615,-0.185,-0.496,0.024
-AutoETS,Naive,0.692,0.5,0.846,0.177,-0.005,0.343
-AutoETS,Drift,0.769,0.614,0.923,0.211,0.031,0.372
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-0.852,-1.093,-0.622
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.588,-0.782,-0.427
-Seasonal Naive,TabPFN-TS,0.0,0.0,0.0,-0.662,-0.896,-0.473
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-0.556,-0.734,-0.404
-Seasonal Naive,Chronos-Bolt,0.0,0.0,0.0,-0.547,-0.716,-0.403
-Seasonal Naive,Moirai-2.0,0.077,0.0,0.192,-0.528,-0.727,-0.362
-Seasonal Naive,Toto-1.0,0.038,0.0,0.115,-0.507,-0.7,-0.348
-Seasonal Naive,Sundial-Base,0.115,0.0,0.269,-0.458,-0.646,-0.293
-Seasonal Naive,Stat. Ensemble,0.192,0.077,0.327,-0.109,-0.155,-0.066
-Seasonal Naive,AutoARIMA,0.154,0.038,0.288,-0.108,-0.153,-0.069
-Seasonal Naive,AutoETS,0.577,0.385,0.769,0.195,0.055,0.332
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,AutoTheta,0.5,0.308,0.692,0.047,-0.058,0.151
-Seasonal Naive,Naive,0.75,0.596,0.885,0.338,0.225,0.448
-Seasonal Naive,Drift,0.846,0.692,0.962,0.365,0.257,0.469
-AutoTheta,Chronos-2,0.0,0.0,0.0,-0.942,-1.236,-0.714
-AutoTheta,TiRex,0.0,0.0,0.0,-0.665,-0.895,-0.491
-AutoTheta,TabPFN-TS,0.0,0.0,0.0,-0.743,-1.051,-0.506
-AutoTheta,TimesFM-2.5,0.0,0.0,0.0,-0.633,-0.887,-0.449
-AutoTheta,Chronos-Bolt,0.0,0.0,0.0,-0.622,-0.874,-0.442
-AutoTheta,Moirai-2.0,0.077,0.0,0.192,-0.602,-0.84,-0.415
-AutoTheta,Toto-1.0,0.038,0.0,0.115,-0.581,-0.819,-0.392
-AutoTheta,Sundial-Base,0.077,0.0,0.192,-0.53,-0.735,-0.335
-AutoTheta,Stat. Ensemble,0.154,0.038,0.308,-0.163,-0.296,-0.057
-AutoTheta,AutoARIMA,0.154,0.038,0.308,-0.162,-0.29,-0.05
-AutoTheta,AutoETS,0.577,0.385,0.769,0.156,-0.025,0.332
-AutoTheta,Seasonal Naive,0.5,0.308,0.692,-0.049,-0.178,0.054
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Naive,0.692,0.5,0.846,0.305,0.169,0.434
-AutoTheta,Drift,0.769,0.615,0.923,0.334,0.2,0.458
-Naive,Chronos-2,0.0,0.0,0.0,-1.796,-2.464,-1.302
-Naive,TiRex,0.0,0.0,0.0,-1.397,-1.954,-0.985
-Naive,TabPFN-TS,0.0,0.0,0.0,-1.509,-2.175,-1.028
-Naive,TimesFM-2.5,0.0,0.0,0.0,-1.35,-1.917,-0.935
-Naive,Chronos-Bolt,0.0,0.0,0.0,-1.335,-1.866,-0.941
-Naive,Moirai-2.0,0.038,0.0,0.115,-1.306,-1.84,-0.93
-Naive,Toto-1.0,0.038,0.0,0.115,-1.275,-1.776,-0.904
-Naive,Sundial-Base,0.038,0.0,0.115,-1.201,-1.761,-0.804
-Naive,Stat. Ensemble,0.038,0.0,0.115,-0.674,-1.0,-0.432
-Naive,AutoARIMA,0.115,0.0,0.231,-0.672,-1.007,-0.426
-Naive,AutoETS,0.308,0.154,0.5,-0.215,-0.523,0.005
-Naive,Seasonal Naive,0.25,0.115,0.404,-0.51,-0.811,-0.291
-Naive,AutoTheta,0.308,0.154,0.5,-0.439,-0.768,-0.203
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,0.962,0.885,1.0,0.041,0.026,0.058
-Drift,Chronos-2,0.0,0.0,0.0,-1.915,-2.609,-1.396
-Drift,TiRex,0.0,0.0,0.0,-1.5,-2.068,-1.08
-Drift,TabPFN-TS,0.0,0.0,0.0,-1.616,-2.276,-1.108
-Drift,TimesFM-2.5,0.0,0.0,0.0,-1.45,-2.03,-1.028
-Drift,Chronos-Bolt,0.0,0.0,0.0,-1.435,-1.97,-1.024
-Drift,Moirai-2.0,0.0,0.0,0.0,-1.405,-1.953,-1.008
-Drift,Toto-1.0,0.038,0.0,0.115,-1.372,-1.889,-0.986
-Drift,Sundial-Base,0.0,0.0,0.0,-1.296,-1.882,-0.876
-Drift,Stat. Ensemble,0.038,0.0,0.115,-0.746,-1.089,-0.497
-Drift,AutoARIMA,0.077,0.0,0.192,-0.744,-1.097,-0.495
-Drift,AutoETS,0.231,0.077,0.386,-0.267,-0.592,-0.032
-Drift,Seasonal Naive,0.154,0.038,0.308,-0.574,-0.885,-0.347
-Drift,AutoTheta,0.231,0.077,0.385,-0.501,-0.843,-0.25
-Drift,Naive,0.038,0.0,0.115,-0.043,-0.062,-0.027
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/domain_health/leaderboard_MASE.csv b/tables/domain_health/leaderboard_MASE.csv
deleted file mode 100644
index a93c6576cdf160344907d24c6b4ede5e6ac59b52..0000000000000000000000000000000000000000
--- a/tables/domain_health/leaderboard_MASE.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,74.99999999999999,31.785976470244737,0.0,0.33713188125000004,0.0,0.0
-TimesFM-2.5,74.99999999999999,32.87474900010455,0.0,1.1526229114583333,0.0,0.0
-TiRex,70.0,32.475887751126365,0.0,0.3170949572916667,0.0,0.0
-TabPFN-TS,68.57142857142857,30.065972963196263,0.0,28.343891684635416,0.0,0.0
-Moirai-2.0,65.35714285714286,33.79488514595498,0.0,0.34801128166666667,0.1,0.0
-Toto-1.0,60.71428571428571,31.61987589396246,0.0,9.245004833333333,0.0,0.0
-Chronos-Bolt,56.785714285714285,30.041136141125392,0.0,0.406559469375,0.0,0.0
-Stat. Ensemble,50.71428571428572,29.22957519821191,0.0,193.737679803125,0.0,0.0
-AutoETS,49.28571428571429,28.071655389223615,0.0,2.600062978125,0.0,0.0
-Sundial-Base,48.57142857142857,22.707876070444478,0.0,8.29280267,0.0,0.0
-AutoARIMA,36.42857142857142,5.881738788340107,0.0,7.909155262500001,0.0,0.0
-AutoTheta,30.71428571428571,15.209167110886634,0.0,2.196897983333333,0.0,0.0
-Seasonal Naive,21.78571428571429,0.0,0.0,1.1288162752343749,0.0,0.0
-Naive,21.071428571428573,0.30982946320681215,0.0,1.196338605,0.0,0.0
-Drift,20.0,7.491051478030797,0.0,1.1894594236458333,0.0,0.0
diff --git a/tables/domain_health/leaderboard_SQL.csv b/tables/domain_health/leaderboard_SQL.csv
deleted file mode 100644
index ec873e351edf1b2edd74be8f66ff09c3e8148243..0000000000000000000000000000000000000000
--- a/tables/domain_health/leaderboard_SQL.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,81.42857142857143,38.088755291215016,0.0,0.33713188125000004,0.0,0.0
-TimesFM-2.5,76.42857142857142,38.03594076932182,0.0,1.1526229114583333,0.0,0.0
-TiRex,70.71428571428572,36.908809578202614,0.0,0.3170949572916667,0.0,0.0
-Moirai-2.0,69.64285714285714,38.69101656633476,0.0,0.34801128166666667,0.1,0.0
-Toto-1.0,66.42857142857143,37.84147796075432,0.0,9.245004833333333,0.0,0.0
-TabPFN-TS,65.71428571428571,35.21500006276798,0.0,28.343891684635416,0.0,0.0
-Chronos-Bolt,61.07142857142858,36.49963485983284,0.0,0.406559469375,0.0,0.0
-AutoETS,52.85714285714287,31.12404362920507,0.0,2.600062978125,0.0,0.0
-Stat. Ensemble,49.285714285714285,31.66665055693333,0.0,193.737679803125,0.0,0.0
-Sundial-Base,38.57142857142858,23.555776015856367,0.0,8.29280267,0.0,0.0
-AutoARIMA,37.857142857142854,8.155432249884543,0.0,7.909155262500001,0.0,0.0
-AutoTheta,26.42857142857143,17.733419423817608,0.0,2.196897983333333,0.0,0.0
-Seasonal Naive,21.071428571428573,0.0,0.0,1.1288162752343749,0.0,0.0
-Naive,17.5,-7.297793633399574,0.0,1.196338605,0.0,0.0
-Drift,15.0,0.4041900778196994,0.0,1.1894594236458333,0.0,0.0
diff --git a/tables/domain_health/leaderboard_WAPE.csv b/tables/domain_health/leaderboard_WAPE.csv
deleted file mode 100644
index c28338a0800f6191976a8d121d53f0651c067c05..0000000000000000000000000000000000000000
--- a/tables/domain_health/leaderboard_WAPE.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-TimesFM-2.5,72.14285714285714,30.23643324970241,0.0,1.1526229114583333,0.0,0.0
-TiRex,67.14285714285715,29.759653338440085,0.0,0.3170949572916667,0.0,0.0
-Chronos-2,67.14285714285714,29.12048426647892,0.0,0.33713188125000004,0.0,0.0
-Moirai-2.0,66.07142857142858,31.59592125809332,0.0,0.34801128166666667,0.1,0.0
-Toto-1.0,64.2857142857143,28.503622669499972,0.0,9.245004833333333,0.0,0.0
-Stat. Ensemble,57.85714285714286,29.695571630620133,0.0,193.737679803125,0.0,0.0
-TabPFN-TS,57.85714285714286,22.16773042840192,0.0,28.343891684635416,0.0,0.0
-Chronos-Bolt,57.50000000000001,25.88326333574207,0.0,0.406559469375,0.0,0.0
-AutoETS,57.14285714285714,29.452418664318316,0.0,2.600062978125,0.0,0.0
-Sundial-Base,47.14285714285714,16.462367071514482,0.0,8.29280267,0.0,0.0
-AutoARIMA,35.0,15.909991992310612,0.0,7.909155262500001,0.0,0.0
-AutoTheta,30.0,14.265515884511814,0.0,2.196897983333333,0.0,0.0
-Naive,24.642857142857146,0.09410339815076885,0.0,1.196338605,0.0,0.0
-Seasonal Naive,23.92857142857143,0.0,0.0,1.1288162752343749,0.0,0.0
-Drift,22.142857142857146,6.9951032330727525,0.0,1.1894594236458333,0.0,0.0
diff --git a/tables/domain_health/leaderboard_WQL.csv b/tables/domain_health/leaderboard_WQL.csv
deleted file mode 100644
index 213a5b19af0f3a5310279dccdc224bac5dc737f8..0000000000000000000000000000000000000000
--- a/tables/domain_health/leaderboard_WQL.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-TimesFM-2.5,74.28571428571428,40.552489915488046,0.0,1.1526229114583333,0.0,0.0
-Chronos-2,73.57142857142857,40.42137769720644,0.0,0.33713188125000004,0.0,0.0
-Moirai-2.0,71.78571428571428,41.64215769175597,0.0,0.34801128166666667,0.1,0.0
-TiRex,67.85714285714286,38.88592211612176,0.0,0.3170949572916667,0.0,0.0
-Toto-1.0,64.28571428571429,40.23878103293733,0.0,9.245004833333333,0.0,0.0
-Chronos-Bolt,61.78571428571429,38.083893012167536,0.0,0.406559469375,0.0,0.0
-TabPFN-TS,57.85714285714286,34.096239445747244,0.0,28.343891684635416,0.0,0.0
-Stat. Ensemble,57.857142857142854,33.50700504489347,0.0,193.737679803125,0.0,0.0
-AutoETS,52.85714285714286,32.19312845196244,0.0,2.600062978125,0.0,0.0
-AutoARIMA,41.42857142857143,19.92503103258492,0.0,7.909155262500001,0.0,0.0
-Sundial-Base,39.28571428571429,24.248203686038707,0.0,8.29280267,0.0,0.0
-AutoTheta,29.999999999999993,18.14389549105302,0.0,2.196897983333333,0.0,0.0
-Seasonal Naive,21.071428571428577,0.0,0.0,1.1288162752343749,0.0,0.0
-Drift,18.571428571428577,0.8421348585152089,0.0,1.1894594236458333,0.0,0.0
-Naive,17.5,-6.552998309491742,0.0,1.196338605,0.0,0.0
diff --git a/tables/domain_health/pairwise_MASE.csv b/tables/domain_health/pairwise_MASE.csv
deleted file mode 100644
index 4f4366a5598bb94c706ac35905ac809cd0cd9af1..0000000000000000000000000000000000000000
--- a/tables/domain_health/pairwise_MASE.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TimesFM-2.5,0.5,0.2,0.8,-0.016,-0.124,0.085
-Chronos-2,TiRex,0.6,0.3,0.9,-0.01,-0.052,0.023
-Chronos-2,TabPFN-TS,0.7,0.4,1.0,0.025,-0.082,0.154
-Chronos-2,Moirai-2.0,0.7,0.4,0.9,-0.03,-0.114,0.028
-Chronos-2,Toto-1.0,0.7,0.4,1.0,0.002,-0.046,0.041
-Chronos-2,Chronos-Bolt,0.8,0.6,1.0,0.025,-0.04,0.08
-Chronos-2,Stat. Ensemble,0.6,0.3,0.9,0.036,-0.098,0.168
-Chronos-2,AutoETS,0.6,0.3,0.9,0.052,-0.07,0.182
-Chronos-2,Sundial-Base,0.8,0.6,1.0,0.117,-0.048,0.245
-Chronos-2,AutoARIMA,0.9,0.7,1.0,0.275,0.078,0.425
-Chronos-2,AutoTheta,0.9,0.7,1.0,0.196,0.073,0.308
-Chronos-2,Seasonal Naive,0.9,0.7,1.0,0.318,0.17,0.455
-Chronos-2,Naive,0.9,0.7,1.0,0.316,0.185,0.434
-Chronos-2,Drift,0.9,0.7,1.0,0.263,0.17,0.344
-TimesFM-2.5,Chronos-2,0.5,0.2,0.8,0.016,-0.093,0.11
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TiRex,0.7,0.4,0.9,0.006,-0.088,0.075
-TimesFM-2.5,TabPFN-TS,0.6,0.3,0.9,0.04,-0.118,0.212
-TimesFM-2.5,Moirai-2.0,0.6,0.3,0.9,-0.014,-0.094,0.036
-TimesFM-2.5,Toto-1.0,0.5,0.2,0.8,0.018,-0.087,0.112
-TimesFM-2.5,Chronos-Bolt,0.8,0.6,1.0,0.041,-0.026,0.112
-TimesFM-2.5,Stat. Ensemble,0.8,0.6,1.0,0.052,-0.167,0.215
-TimesFM-2.5,AutoETS,0.7,0.4,1.0,0.067,-0.126,0.221
-TimesFM-2.5,Sundial-Base,0.7,0.4,0.9,0.132,0.016,0.262
-TimesFM-2.5,AutoARIMA,0.8,0.5,1.0,0.287,0.092,0.44
-TimesFM-2.5,AutoTheta,0.9,0.7,1.0,0.208,0.083,0.346
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.329,0.204,0.472
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.327,0.222,0.447
-TimesFM-2.5,Drift,0.9,0.7,1.0,0.274,0.174,0.382
-TiRex,Chronos-2,0.4,0.1,0.7,0.01,-0.024,0.049
-TiRex,TimesFM-2.5,0.3,0.1,0.6,-0.006,-0.081,0.081
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,TabPFN-TS,0.5,0.2,0.8,0.034,-0.063,0.166
-TiRex,Moirai-2.0,0.7,0.4,0.9,-0.02,-0.063,0.015
-TiRex,Toto-1.0,0.7,0.4,0.9,0.013,-0.041,0.064
-TiRex,Chronos-Bolt,0.7,0.4,0.9,0.035,-0.013,0.085
-TiRex,Stat. Ensemble,0.6,0.3,0.9,0.046,-0.108,0.181
-TiRex,AutoETS,0.6,0.3,0.9,0.061,-0.066,0.191
-TiRex,Sundial-Base,0.7,0.4,1.0,0.126,-0.013,0.252
-TiRex,AutoARIMA,0.8,0.5,1.0,0.283,0.074,0.447
-TiRex,AutoTheta,0.9,0.7,1.0,0.204,0.083,0.322
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.325,0.184,0.464
-TiRex,Naive,1.0,1.0,1.0,0.323,0.206,0.44
-TiRex,Drift,0.9,0.7,1.0,0.27,0.185,0.358
-TabPFN-TS,Chronos-2,0.3,0.0,0.6,-0.025,-0.182,0.076
-TabPFN-TS,TimesFM-2.5,0.4,0.1,0.7,-0.042,-0.269,0.106
-TabPFN-TS,TiRex,0.5,0.2,0.8,-0.036,-0.199,0.059
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Moirai-2.0,0.6,0.3,0.9,-0.056,-0.246,0.044
-TabPFN-TS,Toto-1.0,0.6,0.3,0.9,-0.023,-0.229,0.1
-TabPFN-TS,Chronos-Bolt,0.7,0.4,0.902,0.0,-0.134,0.098
-TabPFN-TS,Stat. Ensemble,0.5,0.2,0.8,0.012,-0.177,0.177
-TabPFN-TS,AutoETS,0.6,0.3,0.9,0.028,-0.177,0.192
-TabPFN-TS,Sundial-Base,0.7,0.4,0.9,0.095,-0.01,0.208
-TabPFN-TS,AutoARIMA,0.7,0.4,0.9,0.257,-0.028,0.458
-TabPFN-TS,AutoTheta,1.0,1.0,1.0,0.175,0.083,0.263
-TabPFN-TS,Seasonal Naive,1.0,1.0,1.0,0.301,0.198,0.415
-TabPFN-TS,Naive,1.0,1.0,1.0,0.298,0.214,0.407
-TabPFN-TS,Drift,1.0,1.0,1.0,0.244,0.18,0.308
-Moirai-2.0,Chronos-2,0.3,0.1,0.6,0.029,-0.029,0.102
-Moirai-2.0,TimesFM-2.5,0.4,0.1,0.7,0.014,-0.037,0.086
-Moirai-2.0,TiRex,0.3,0.1,0.6,0.02,-0.015,0.059
-Moirai-2.0,TabPFN-TS,0.4,0.1,0.7,0.053,-0.046,0.197
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Toto-1.0,0.5,0.2,0.8,0.032,-0.035,0.104
-Moirai-2.0,Chronos-Bolt,0.75,0.45,1.0,0.054,0.003,0.111
-Moirai-2.0,Stat. Ensemble,0.6,0.3,0.9,0.065,-0.09,0.204
-Moirai-2.0,AutoETS,0.6,0.3,0.9,0.08,-0.053,0.206
-Moirai-2.0,Sundial-Base,0.7,0.4,1.0,0.143,0.011,0.27
-Moirai-2.0,AutoARIMA,0.8,0.5,1.0,0.297,0.077,0.458
-Moirai-2.0,AutoTheta,0.9,0.7,1.0,0.219,0.09,0.349
-Moirai-2.0,Seasonal Naive,1.0,1.0,1.0,0.338,0.203,0.482
-Moirai-2.0,Naive,1.0,1.0,1.0,0.336,0.218,0.457
-Moirai-2.0,Drift,0.9,0.7,1.0,0.284,0.196,0.383
-Toto-1.0,Chronos-2,0.3,0.0,0.6,-0.002,-0.043,0.044
-Toto-1.0,TimesFM-2.5,0.5,0.2,0.8,-0.019,-0.126,0.08
-Toto-1.0,TiRex,0.3,0.1,0.6,-0.013,-0.068,0.039
-Toto-1.0,TabPFN-TS,0.4,0.1,0.7,0.022,-0.111,0.187
-Toto-1.0,Moirai-2.0,0.5,0.2,0.8,-0.033,-0.116,0.033
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,Chronos-Bolt,0.6,0.3,0.9,0.023,-0.058,0.095
-Toto-1.0,Stat. Ensemble,0.5,0.2,0.8,0.034,-0.097,0.147
-Toto-1.0,AutoETS,0.5,0.2,0.8,0.049,-0.059,0.159
-Toto-1.0,Sundial-Base,0.7,0.4,1.0,0.115,-0.073,0.269
-Toto-1.0,AutoARIMA,0.7,0.4,1.0,0.273,0.084,0.416
-Toto-1.0,AutoTheta,0.8,0.5,1.0,0.194,0.057,0.332
-Toto-1.0,Seasonal Naive,0.9,0.7,1.0,0.316,0.149,0.472
-Toto-1.0,Naive,0.9,0.7,1.0,0.314,0.165,0.452
-Toto-1.0,Drift,0.9,0.7,1.0,0.261,0.159,0.368
-Chronos-Bolt,Chronos-2,0.2,0.0,0.4,-0.026,-0.087,0.038
-Chronos-Bolt,TimesFM-2.5,0.2,0.0,0.4,-0.042,-0.127,0.025
-Chronos-Bolt,TiRex,0.3,0.1,0.6,-0.036,-0.092,0.013
-Chronos-Bolt,TabPFN-TS,0.3,0.098,0.6,-0.0,-0.108,0.118
-Chronos-Bolt,Moirai-2.0,0.25,0.0,0.55,-0.057,-0.125,-0.003
-Chronos-Bolt,Toto-1.0,0.4,0.1,0.7,-0.023,-0.104,0.055
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Stat. Ensemble,0.5,0.2,0.8,0.011,-0.158,0.153
-Chronos-Bolt,AutoETS,0.6,0.3,0.9,0.027,-0.124,0.167
-Chronos-Bolt,Sundial-Base,0.5,0.2,0.8,0.095,-0.022,0.198
-Chronos-Bolt,AutoARIMA,0.7,0.4,1.0,0.257,0.058,0.42
-Chronos-Bolt,AutoTheta,1.0,1.0,1.0,0.175,0.078,0.273
-Chronos-Bolt,Seasonal Naive,1.0,1.0,1.0,0.3,0.183,0.423
-Chronos-Bolt,Naive,1.0,1.0,1.0,0.298,0.2,0.397
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.244,0.181,0.314
-Stat. Ensemble,Chronos-2,0.4,0.1,0.7,-0.037,-0.202,0.089
-Stat. Ensemble,TimesFM-2.5,0.2,0.0,0.4,-0.054,-0.274,0.143
-Stat. Ensemble,TiRex,0.4,0.1,0.7,-0.048,-0.222,0.098
-Stat. Ensemble,TabPFN-TS,0.5,0.2,0.8,-0.012,-0.215,0.151
-Stat. Ensemble,Moirai-2.0,0.4,0.1,0.7,-0.069,-0.256,0.083
-Stat. Ensemble,Toto-1.0,0.5,0.2,0.8,-0.035,-0.173,0.089
-Stat. Ensemble,Chronos-Bolt,0.5,0.2,0.8,-0.012,-0.181,0.137
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoETS,0.5,0.2,0.8,0.016,-0.021,0.046
-Stat. Ensemble,Sundial-Base,0.6,0.3,0.9,0.084,-0.19,0.289
-Stat. Ensemble,AutoARIMA,0.6,0.3,0.9,0.248,0.049,0.443
-Stat. Ensemble,AutoTheta,0.6,0.3,0.9,0.165,-0.004,0.322
-Stat. Ensemble,Seasonal Naive,0.6,0.3,0.9,0.292,0.066,0.47
-Stat. Ensemble,Naive,0.6,0.3,0.9,0.29,0.09,0.457
-Stat. Ensemble,Drift,0.7,0.4,0.9,0.235,0.093,0.356
-AutoETS,Chronos-2,0.4,0.1,0.7,-0.054,-0.222,0.065
-AutoETS,TimesFM-2.5,0.3,0.0,0.6,-0.072,-0.284,0.112
-AutoETS,TiRex,0.4,0.1,0.7,-0.065,-0.236,0.062
-AutoETS,TabPFN-TS,0.4,0.1,0.7,-0.029,-0.238,0.15
-AutoETS,Moirai-2.0,0.4,0.1,0.7,-0.086,-0.26,0.051
-AutoETS,Toto-1.0,0.5,0.2,0.8,-0.052,-0.188,0.055
-AutoETS,Chronos-Bolt,0.4,0.1,0.7,-0.028,-0.2,0.11
-AutoETS,Stat. Ensemble,0.5,0.2,0.8,-0.016,-0.048,0.02
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Sundial-Base,0.6,0.3,0.9,0.069,-0.2,0.272
-AutoETS,AutoARIMA,0.6,0.3,0.9,0.236,0.04,0.428
-AutoETS,AutoTheta,0.6,0.3,0.9,0.152,-0.014,0.31
-AutoETS,Seasonal Naive,0.6,0.3,0.9,0.281,0.048,0.466
-AutoETS,Naive,0.6,0.3,0.9,0.278,0.077,0.448
-AutoETS,Drift,0.6,0.3,0.9,0.222,0.081,0.353
-Sundial-Base,Chronos-2,0.2,0.0,0.4,-0.133,-0.325,0.046
-Sundial-Base,TimesFM-2.5,0.3,0.1,0.6,-0.151,-0.355,-0.017
-Sundial-Base,TiRex,0.3,0.0,0.6,-0.145,-0.337,0.012
-Sundial-Base,TabPFN-TS,0.3,0.1,0.6,-0.105,-0.262,0.01
-Sundial-Base,Moirai-2.0,0.3,0.0,0.6,-0.167,-0.37,-0.011
-Sundial-Base,Toto-1.0,0.3,0.0,0.6,-0.13,-0.368,0.068
-Sundial-Base,Chronos-Bolt,0.5,0.2,0.8,-0.105,-0.246,0.021
-Sundial-Base,Stat. Ensemble,0.4,0.1,0.7,-0.092,-0.406,0.159
-Sundial-Base,AutoETS,0.4,0.1,0.7,-0.075,-0.373,0.167
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,AutoARIMA,0.5,0.2,0.8,0.179,-0.134,0.405
-Sundial-Base,AutoTheta,0.7,0.4,1.0,0.088,-0.017,0.19
-Sundial-Base,Seasonal Naive,0.9,0.7,1.0,0.227,0.146,0.302
-Sundial-Base,Naive,0.9,0.7,1.0,0.225,0.152,0.28
-Sundial-Base,Drift,0.8,0.6,1.0,0.164,0.052,0.258
-AutoARIMA,Chronos-2,0.1,0.0,0.3,-0.38,-0.738,-0.085
-AutoARIMA,TimesFM-2.5,0.2,0.0,0.5,-0.402,-0.787,-0.101
-AutoARIMA,TiRex,0.2,0.0,0.5,-0.394,-0.807,-0.08
-AutoARIMA,TabPFN-TS,0.3,0.1,0.6,-0.346,-0.845,0.027
-AutoARIMA,Moirai-2.0,0.2,0.0,0.5,-0.422,-0.846,-0.083
-AutoARIMA,Toto-1.0,0.3,0.0,0.6,-0.376,-0.711,-0.092
-AutoARIMA,Chronos-Bolt,0.3,0.0,0.6,-0.345,-0.725,-0.062
-AutoARIMA,Stat. Ensemble,0.4,0.1,0.7,-0.33,-0.795,-0.052
-AutoARIMA,AutoETS,0.4,0.1,0.7,-0.309,-0.748,-0.041
-AutoARIMA,Sundial-Base,0.5,0.2,0.8,-0.218,-0.682,0.118
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoTheta,0.6,0.3,0.9,-0.11,-0.447,0.155
-AutoARIMA,Seasonal Naive,0.5,0.2,0.8,0.059,-0.309,0.333
-AutoARIMA,Naive,0.5,0.2,0.8,0.056,-0.275,0.304
-AutoARIMA,Drift,0.6,0.3,0.9,-0.017,-0.354,0.225
-AutoTheta,Chronos-2,0.1,0.0,0.3,-0.243,-0.445,-0.079
-AutoTheta,TimesFM-2.5,0.1,0.0,0.3,-0.263,-0.53,-0.09
-AutoTheta,TiRex,0.1,0.0,0.3,-0.256,-0.476,-0.09
-AutoTheta,TabPFN-TS,0.0,0.0,0.0,-0.212,-0.356,-0.09
-AutoTheta,Moirai-2.0,0.1,0.0,0.3,-0.281,-0.536,-0.099
-AutoTheta,Toto-1.0,0.2,0.0,0.5,-0.24,-0.497,-0.061
-AutoTheta,Chronos-Bolt,0.0,0.0,0.0,-0.212,-0.375,-0.084
-AutoTheta,Stat. Ensemble,0.4,0.1,0.7,-0.198,-0.474,0.004
-AutoTheta,AutoETS,0.4,0.1,0.7,-0.179,-0.449,0.013
-AutoTheta,Sundial-Base,0.3,0.0,0.6,-0.097,-0.234,0.017
-AutoTheta,AutoARIMA,0.4,0.1,0.7,0.099,-0.183,0.309
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Seasonal Naive,0.7,0.4,1.0,0.152,0.05,0.24
-AutoTheta,Naive,0.8,0.5,1.0,0.149,0.067,0.222
-AutoTheta,Drift,0.7,0.4,0.902,0.083,0.013,0.166
-Seasonal Naive,Chronos-2,0.1,0.0,0.3,-0.466,-0.835,-0.204
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-0.49,-0.893,-0.257
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.481,-0.865,-0.226
-Seasonal Naive,TabPFN-TS,0.0,0.0,0.0,-0.43,-0.711,-0.247
-Seasonal Naive,Moirai-2.0,0.0,0.0,0.0,-0.51,-0.93,-0.255
-Seasonal Naive,Toto-1.0,0.1,0.0,0.3,-0.462,-0.893,-0.175
-Seasonal Naive,Chronos-Bolt,0.0,0.0,0.0,-0.429,-0.732,-0.224
-Seasonal Naive,Stat. Ensemble,0.4,0.1,0.7,-0.413,-0.885,-0.07
-Seasonal Naive,AutoETS,0.4,0.1,0.7,-0.39,-0.872,-0.051
-Seasonal Naive,Sundial-Base,0.1,0.0,0.3,-0.294,-0.433,-0.171
-Seasonal Naive,AutoARIMA,0.5,0.2,0.8,-0.062,-0.499,0.236
-Seasonal Naive,AutoTheta,0.3,0.0,0.6,-0.179,-0.315,-0.052
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Naive,0.55,0.35,0.75,-0.003,-0.056,0.041
-Seasonal Naive,Drift,0.6,0.3,0.9,-0.081,-0.23,0.043
-Naive,Chronos-2,0.1,0.0,0.3,-0.461,-0.766,-0.226
-Naive,TimesFM-2.5,0.0,0.0,0.0,-0.485,-0.807,-0.286
-Naive,TiRex,0.0,0.0,0.0,-0.476,-0.787,-0.259
-Naive,TabPFN-TS,0.0,0.0,0.0,-0.425,-0.686,-0.272
-Naive,Moirai-2.0,0.0,0.0,0.0,-0.506,-0.843,-0.278
-Naive,Toto-1.0,0.1,0.0,0.3,-0.458,-0.823,-0.197
-Naive,Chronos-Bolt,0.0,0.0,0.0,-0.425,-0.659,-0.25
-Naive,Stat. Ensemble,0.4,0.1,0.7,-0.409,-0.84,-0.099
-Naive,AutoETS,0.4,0.1,0.7,-0.386,-0.812,-0.084
-Naive,Sundial-Base,0.1,0.0,0.3,-0.29,-0.39,-0.179
-Naive,AutoARIMA,0.5,0.2,0.8,-0.059,-0.436,0.215
-Naive,AutoTheta,0.2,0.0,0.5,-0.176,-0.286,-0.072
-Naive,Seasonal Naive,0.45,0.25,0.65,0.003,-0.043,0.053
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,0.7,0.4,0.902,-0.078,-0.197,0.018
-Drift,Chronos-2,0.1,0.0,0.3,-0.356,-0.526,-0.205
-Drift,TimesFM-2.5,0.1,0.0,0.3,-0.378,-0.618,-0.21
-Drift,TiRex,0.1,0.0,0.3,-0.37,-0.559,-0.227
-Drift,TabPFN-TS,0.0,0.0,0.0,-0.323,-0.445,-0.22
-Drift,Moirai-2.0,0.1,0.0,0.3,-0.397,-0.621,-0.244
-Drift,Toto-1.0,0.1,0.0,0.3,-0.353,-0.582,-0.189
-Drift,Chronos-Bolt,0.0,0.0,0.0,-0.322,-0.458,-0.22
-Drift,Stat. Ensemble,0.3,0.1,0.6,-0.307,-0.552,-0.103
-Drift,AutoETS,0.4,0.1,0.7,-0.286,-0.545,-0.088
-Drift,Sundial-Base,0.2,0.0,0.4,-0.197,-0.348,-0.055
-Drift,AutoARIMA,0.4,0.1,0.7,0.017,-0.29,0.262
-Drift,AutoTheta,0.3,0.098,0.6,-0.091,-0.199,-0.013
-Drift,Seasonal Naive,0.4,0.1,0.7,0.075,-0.045,0.187
-Drift,Naive,0.3,0.098,0.6,0.072,-0.018,0.164
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/domain_health/pairwise_SQL.csv b/tables/domain_health/pairwise_SQL.csv
deleted file mode 100644
index 8ae72f04d0a559c197ad63f7aa6a5df2ef33c726..0000000000000000000000000000000000000000
--- a/tables/domain_health/pairwise_SQL.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TimesFM-2.5,0.5,0.2,0.8,0.001,-0.091,0.094
-Chronos-2,TiRex,0.7,0.4,0.9,0.019,-0.022,0.054
-Chronos-2,Moirai-2.0,0.7,0.4,0.9,-0.01,-0.086,0.045
-Chronos-2,Toto-1.0,0.8,0.598,1.0,0.004,-0.055,0.051
-Chronos-2,TabPFN-TS,0.8,0.5,1.0,0.044,-0.04,0.15
-Chronos-2,Chronos-Bolt,0.8,0.6,1.0,0.025,-0.035,0.08
-Chronos-2,AutoETS,0.7,0.4,0.902,0.101,-0.023,0.231
-Chronos-2,Stat. Ensemble,0.7,0.4,0.902,0.094,-0.039,0.227
-Chronos-2,Sundial-Base,0.8,0.6,1.0,0.19,0.034,0.308
-Chronos-2,AutoARIMA,0.9,0.7,1.0,0.326,0.106,0.481
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.247,0.112,0.362
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.381,0.242,0.504
-Chronos-2,Naive,1.0,1.0,1.0,0.423,0.295,0.531
-Chronos-2,Drift,1.0,1.0,1.0,0.378,0.281,0.47
-TimesFM-2.5,Chronos-2,0.5,0.2,0.8,-0.001,-0.104,0.084
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TiRex,0.7,0.4,0.9,0.018,-0.05,0.072
-TimesFM-2.5,Moirai-2.0,0.7,0.4,0.9,-0.011,-0.085,0.035
-TimesFM-2.5,Toto-1.0,0.5,0.2,0.8,0.003,-0.106,0.103
-TimesFM-2.5,TabPFN-TS,0.7,0.4,1.0,0.044,-0.078,0.182
-TimesFM-2.5,Chronos-Bolt,0.7,0.4,1.0,0.024,-0.032,0.08
-TimesFM-2.5,AutoETS,0.6,0.3,0.9,0.1,-0.086,0.252
-TimesFM-2.5,Stat. Ensemble,0.7,0.4,1.0,0.093,-0.113,0.257
-TimesFM-2.5,Sundial-Base,0.9,0.7,1.0,0.189,0.085,0.301
-TimesFM-2.5,AutoARIMA,0.7,0.4,1.0,0.325,0.109,0.484
-TimesFM-2.5,AutoTheta,1.0,1.0,1.0,0.247,0.117,0.377
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.38,0.264,0.511
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.423,0.325,0.529
-TimesFM-2.5,Drift,1.0,1.0,1.0,0.378,0.277,0.474
-TiRex,Chronos-2,0.3,0.1,0.6,-0.019,-0.057,0.021
-TiRex,TimesFM-2.5,0.3,0.1,0.6,-0.018,-0.077,0.048
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,Moirai-2.0,0.5,0.2,0.8,-0.029,-0.073,0.009
-TiRex,Toto-1.0,0.7,0.4,0.902,-0.015,-0.083,0.043
-TiRex,TabPFN-TS,0.5,0.2,0.8,0.026,-0.057,0.142
-TiRex,Chronos-Bolt,0.7,0.4,0.9,0.006,-0.035,0.045
-TiRex,AutoETS,0.6,0.3,0.9,0.084,-0.051,0.223
-TiRex,Stat. Ensemble,0.7,0.4,1.0,0.077,-0.082,0.222
-TiRex,Sundial-Base,0.8,0.6,1.0,0.175,0.044,0.286
-TiRex,AutoARIMA,0.8,0.5,1.0,0.313,0.094,0.48
-TiRex,AutoTheta,1.0,1.0,1.0,0.233,0.103,0.354
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.369,0.24,0.497
-TiRex,Naive,1.0,1.0,1.0,0.412,0.3,0.518
-TiRex,Drift,1.0,1.0,1.0,0.367,0.268,0.464
-Moirai-2.0,Chronos-2,0.3,0.1,0.6,0.01,-0.047,0.079
-Moirai-2.0,TimesFM-2.5,0.3,0.1,0.6,0.011,-0.036,0.078
-Moirai-2.0,TiRex,0.5,0.2,0.8,0.028,-0.009,0.068
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Toto-1.0,0.5,0.2,0.8,0.014,-0.052,0.084
-Moirai-2.0,TabPFN-TS,0.4,0.1,0.7,0.054,-0.037,0.187
-Moirai-2.0,Chronos-Bolt,0.65,0.35,0.9,0.035,-0.011,0.083
-Moirai-2.0,AutoETS,0.7,0.4,1.0,0.11,-0.022,0.239
-Moirai-2.0,Stat. Ensemble,0.7,0.4,1.0,0.103,-0.055,0.246
-Moirai-2.0,Sundial-Base,0.9,0.7,1.0,0.198,0.072,0.318
-Moirai-2.0,AutoARIMA,0.8,0.5,1.0,0.332,0.099,0.498
-Moirai-2.0,AutoTheta,1.0,1.0,1.0,0.255,0.121,0.388
-Moirai-2.0,Seasonal Naive,1.0,1.0,1.0,0.387,0.253,0.522
-Moirai-2.0,Naive,1.0,1.0,1.0,0.429,0.316,0.541
-Moirai-2.0,Drift,1.0,1.0,1.0,0.384,0.286,0.486
-Toto-1.0,Chronos-2,0.2,0.0,0.402,-0.004,-0.053,0.052
-Toto-1.0,TimesFM-2.5,0.5,0.2,0.8,-0.003,-0.115,0.096
-Toto-1.0,TiRex,0.3,0.098,0.6,0.015,-0.045,0.076
-Toto-1.0,Moirai-2.0,0.5,0.2,0.8,-0.014,-0.091,0.05
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,TabPFN-TS,0.5,0.2,0.8,0.041,-0.072,0.187
-Toto-1.0,Chronos-Bolt,0.6,0.3,0.9,0.021,-0.059,0.092
-Toto-1.0,AutoETS,0.6,0.3,0.9,0.098,-0.011,0.205
-Toto-1.0,Stat. Ensemble,0.6,0.3,0.9,0.09,-0.032,0.205
-Toto-1.0,Sundial-Base,0.8,0.6,1.0,0.187,0.002,0.333
-Toto-1.0,AutoARIMA,0.7,0.4,1.0,0.323,0.113,0.478
-Toto-1.0,AutoTheta,1.0,1.0,1.0,0.244,0.09,0.388
-Toto-1.0,Seasonal Naive,1.0,1.0,1.0,0.378,0.213,0.526
-Toto-1.0,Naive,1.0,1.0,1.0,0.421,0.279,0.544
-Toto-1.0,Drift,1.0,1.0,1.0,0.376,0.265,0.49
-TabPFN-TS,Chronos-2,0.2,0.0,0.5,-0.046,-0.176,0.038
-TabPFN-TS,TimesFM-2.5,0.3,0.0,0.6,-0.046,-0.222,0.072
-TabPFN-TS,TiRex,0.5,0.2,0.8,-0.027,-0.165,0.054
-TabPFN-TS,Moirai-2.0,0.6,0.3,0.9,-0.057,-0.23,0.036
-TabPFN-TS,Toto-1.0,0.5,0.2,0.8,-0.042,-0.23,0.067
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Chronos-Bolt,0.7,0.4,0.902,-0.02,-0.148,0.057
-TabPFN-TS,AutoETS,0.5,0.2,0.8,0.059,-0.119,0.221
-TabPFN-TS,Stat. Ensemble,0.5,0.2,0.8,0.052,-0.127,0.215
-TabPFN-TS,Sundial-Base,0.8,0.6,1.0,0.153,0.046,0.252
-TabPFN-TS,AutoARIMA,0.6,0.3,0.9,0.295,0.03,0.49
-TabPFN-TS,AutoTheta,1.0,1.0,1.0,0.212,0.116,0.292
-TabPFN-TS,Seasonal Naive,1.0,1.0,1.0,0.352,0.249,0.449
-TabPFN-TS,Naive,1.0,1.0,1.0,0.396,0.308,0.49
-TabPFN-TS,Drift,1.0,1.0,1.0,0.35,0.271,0.429
-Chronos-Bolt,Chronos-2,0.2,0.0,0.4,-0.026,-0.086,0.033
-Chronos-Bolt,TimesFM-2.5,0.3,0.0,0.6,-0.025,-0.087,0.031
-Chronos-Bolt,TiRex,0.3,0.1,0.6,-0.006,-0.048,0.033
-Chronos-Bolt,Moirai-2.0,0.35,0.1,0.65,-0.036,-0.091,0.01
-Chronos-Bolt,Toto-1.0,0.4,0.1,0.7,-0.022,-0.101,0.055
-Chronos-Bolt,TabPFN-TS,0.3,0.098,0.6,0.02,-0.061,0.129
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,AutoETS,0.5,0.2,0.8,0.078,-0.063,0.207
-Chronos-Bolt,Stat. Ensemble,0.6,0.3,0.9,0.071,-0.088,0.209
-Chronos-Bolt,Sundial-Base,0.9,0.7,1.0,0.169,0.052,0.27
-Chronos-Bolt,AutoARIMA,0.7,0.4,1.0,0.309,0.096,0.471
-Chronos-Bolt,AutoTheta,1.0,1.0,1.0,0.228,0.114,0.336
-Chronos-Bolt,Seasonal Naive,1.0,1.0,1.0,0.365,0.247,0.481
-Chronos-Bolt,Naive,1.0,1.0,1.0,0.408,0.306,0.509
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.362,0.279,0.456
-AutoETS,Chronos-2,0.3,0.098,0.6,-0.112,-0.3,0.023
-AutoETS,TimesFM-2.5,0.4,0.1,0.7,-0.112,-0.337,0.079
-AutoETS,TiRex,0.4,0.1,0.7,-0.092,-0.288,0.049
-AutoETS,Moirai-2.0,0.3,0.0,0.6,-0.123,-0.313,0.022
-AutoETS,Toto-1.0,0.4,0.1,0.7,-0.108,-0.257,0.011
-AutoETS,TabPFN-TS,0.5,0.2,0.8,-0.063,-0.284,0.107
-AutoETS,Chronos-Bolt,0.5,0.2,0.8,-0.085,-0.262,0.059
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Stat. Ensemble,0.5,0.2,0.8,-0.008,-0.047,0.04
-AutoETS,Sundial-Base,0.6,0.3,0.9,0.099,-0.174,0.293
-AutoETS,AutoARIMA,0.7,0.4,1.0,0.25,0.032,0.456
-AutoETS,AutoTheta,0.7,0.4,1.0,0.163,-0.008,0.327
-AutoETS,Seasonal Naive,0.7,0.4,1.0,0.311,0.076,0.492
-AutoETS,Naive,0.7,0.4,1.0,0.358,0.144,0.517
-AutoETS,Drift,0.7,0.4,1.0,0.308,0.137,0.456
-Stat. Ensemble,Chronos-2,0.3,0.098,0.6,-0.104,-0.293,0.038
-Stat. Ensemble,TimesFM-2.5,0.3,0.0,0.6,-0.103,-0.346,0.101
-Stat. Ensemble,TiRex,0.3,0.0,0.6,-0.083,-0.285,0.076
-Stat. Ensemble,Moirai-2.0,0.3,0.0,0.6,-0.115,-0.326,0.052
-Stat. Ensemble,Toto-1.0,0.4,0.1,0.7,-0.099,-0.258,0.031
-Stat. Ensemble,TabPFN-TS,0.5,0.2,0.8,-0.055,-0.273,0.112
-Stat. Ensemble,Chronos-Bolt,0.4,0.1,0.7,-0.076,-0.264,0.081
-Stat. Ensemble,AutoETS,0.5,0.2,0.8,0.008,-0.041,0.045
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,Sundial-Base,0.6,0.3,0.9,0.106,-0.182,0.31
-Stat. Ensemble,AutoARIMA,0.7,0.4,1.0,0.256,0.052,0.456
-Stat. Ensemble,AutoTheta,0.7,0.4,0.9,0.169,-0.008,0.33
-Stat. Ensemble,Seasonal Naive,0.6,0.3,0.9,0.317,0.085,0.492
-Stat. Ensemble,Naive,0.6,0.3,0.9,0.363,0.152,0.52
-Stat. Ensemble,Drift,0.7,0.4,0.9,0.314,0.147,0.458
-Sundial-Base,Chronos-2,0.2,0.0,0.4,-0.235,-0.445,-0.035
-Sundial-Base,TimesFM-2.5,0.1,0.0,0.3,-0.234,-0.43,-0.092
-Sundial-Base,TiRex,0.2,0.0,0.4,-0.212,-0.4,-0.046
-Sundial-Base,Moirai-2.0,0.1,0.0,0.3,-0.247,-0.467,-0.078
-Sundial-Base,Toto-1.0,0.2,0.0,0.4,-0.23,-0.5,-0.002
-Sundial-Base,TabPFN-TS,0.2,0.0,0.4,-0.18,-0.337,-0.049
-Sundial-Base,Chronos-Bolt,0.1,0.0,0.3,-0.204,-0.37,-0.055
-Sundial-Base,AutoETS,0.4,0.1,0.7,-0.11,-0.415,0.148
-Sundial-Base,Stat. Ensemble,0.4,0.1,0.7,-0.119,-0.45,0.154
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,AutoARIMA,0.5,0.2,0.8,0.168,-0.162,0.415
-Sundial-Base,AutoTheta,0.5,0.2,0.8,0.071,-0.052,0.191
-Sundial-Base,Seasonal Naive,0.8,0.6,1.0,0.236,0.136,0.326
-Sundial-Base,Naive,0.9,0.7,1.0,0.288,0.193,0.375
-Sundial-Base,Drift,0.8,0.6,1.0,0.232,0.091,0.354
-AutoARIMA,Chronos-2,0.1,0.0,0.3,-0.483,-0.928,-0.119
-AutoARIMA,TimesFM-2.5,0.3,0.0,0.6,-0.482,-0.938,-0.122
-AutoARIMA,TiRex,0.2,0.0,0.5,-0.456,-0.922,-0.104
-AutoARIMA,Moirai-2.0,0.2,0.0,0.5,-0.498,-0.991,-0.109
-AutoARIMA,Toto-1.0,0.3,0.0,0.6,-0.478,-0.916,-0.127
-AutoARIMA,TabPFN-TS,0.4,0.1,0.7,-0.418,-0.959,-0.031
-AutoARIMA,Chronos-Bolt,0.3,0.0,0.6,-0.446,-0.89,-0.106
-AutoARIMA,AutoETS,0.3,0.0,0.6,-0.333,-0.839,-0.033
-AutoARIMA,Stat. Ensemble,0.3,0.0,0.6,-0.344,-0.837,-0.055
-AutoARIMA,Sundial-Base,0.5,0.2,0.8,-0.201,-0.711,0.14
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoTheta,0.6,0.3,0.9,-0.116,-0.482,0.162
-AutoARIMA,Seasonal Naive,0.6,0.3,0.9,0.082,-0.298,0.358
-AutoARIMA,Naive,0.6,0.3,0.9,0.144,-0.212,0.398
-AutoARIMA,Drift,0.6,0.3,0.9,0.078,-0.292,0.36
-AutoTheta,Chronos-2,0.0,0.0,0.0,-0.329,-0.568,-0.126
-AutoTheta,TimesFM-2.5,0.0,0.0,0.0,-0.328,-0.606,-0.133
-AutoTheta,TiRex,0.0,0.0,0.0,-0.304,-0.548,-0.115
-AutoTheta,Moirai-2.0,0.0,0.0,0.0,-0.342,-0.634,-0.137
-AutoTheta,Toto-1.0,0.0,0.0,0.0,-0.323,-0.635,-0.099
-AutoTheta,TabPFN-TS,0.0,0.0,0.0,-0.27,-0.413,-0.132
-AutoTheta,Chronos-Bolt,0.0,0.0,0.0,-0.296,-0.507,-0.129
-AutoTheta,AutoETS,0.3,0.0,0.6,-0.194,-0.485,0.008
-AutoTheta,Stat. Ensemble,0.3,0.1,0.6,-0.204,-0.493,0.008
-AutoTheta,Sundial-Base,0.5,0.2,0.8,-0.076,-0.235,0.049
-AutoTheta,AutoARIMA,0.4,0.1,0.7,0.104,-0.193,0.325
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Seasonal Naive,0.7,0.4,1.0,0.177,0.061,0.286
-AutoTheta,Naive,0.8,0.5,1.0,0.233,0.111,0.358
-AutoTheta,Drift,0.7,0.4,0.902,0.174,0.033,0.323
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-0.615,-1.015,-0.319
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-0.614,-1.045,-0.359
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.585,-0.99,-0.316
-Seasonal Naive,Moirai-2.0,0.0,0.0,0.0,-0.631,-1.091,-0.338
-Seasonal Naive,Toto-1.0,0.0,0.0,0.0,-0.609,-1.11,-0.271
-Seasonal Naive,TabPFN-TS,0.0,0.0,0.0,-0.544,-0.815,-0.331
-Seasonal Naive,Chronos-Bolt,0.0,0.0,0.0,-0.575,-0.927,-0.328
-Seasonal Naive,AutoETS,0.3,0.0,0.6,-0.452,-0.969,-0.082
-Seasonal Naive,Stat. Ensemble,0.4,0.1,0.7,-0.463,-0.968,-0.092
-Seasonal Naive,Sundial-Base,0.2,0.0,0.4,-0.308,-0.483,-0.157
-Seasonal Naive,AutoARIMA,0.4,0.1,0.7,-0.089,-0.559,0.23
-Seasonal Naive,AutoTheta,0.3,0.0,0.6,-0.216,-0.4,-0.065
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Naive,0.65,0.45,0.85,0.068,-0.011,0.163
-Seasonal Naive,Drift,0.7,0.4,0.902,-0.004,-0.169,0.151
-Naive,Chronos-2,0.0,0.0,0.0,-0.733,-1.133,-0.419
-Naive,TimesFM-2.5,0.0,0.0,0.0,-0.732,-1.123,-0.482
-Naive,TiRex,0.0,0.0,0.0,-0.701,-1.073,-0.429
-Naive,Moirai-2.0,0.0,0.0,0.0,-0.75,-1.179,-0.461
-Naive,Toto-1.0,0.0,0.0,0.0,-0.726,-1.192,-0.388
-Naive,TabPFN-TS,0.0,0.0,0.0,-0.656,-0.96,-0.445
-Naive,Chronos-Bolt,0.0,0.0,0.0,-0.69,-1.037,-0.44
-Naive,AutoETS,0.3,0.0,0.6,-0.558,-1.07,-0.168
-Naive,Stat. Ensemble,0.4,0.1,0.7,-0.57,-1.084,-0.179
-Naive,Sundial-Base,0.1,0.0,0.3,-0.404,-0.6,-0.238
-Naive,AutoARIMA,0.4,0.1,0.7,-0.168,-0.661,0.175
-Naive,AutoTheta,0.2,0.0,0.5,-0.304,-0.559,-0.124
-Naive,Seasonal Naive,0.35,0.15,0.55,-0.073,-0.195,0.01
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,0.7,0.4,0.902,-0.077,-0.195,0.018
-Drift,Chronos-2,0.0,0.0,0.0,-0.609,-0.888,-0.39
-Drift,TimesFM-2.5,0.0,0.0,0.0,-0.607,-0.901,-0.383
-Drift,TiRex,0.0,0.0,0.0,-0.579,-0.867,-0.367
-Drift,Moirai-2.0,0.0,0.0,0.0,-0.624,-0.947,-0.401
-Drift,Toto-1.0,0.0,0.0,0.0,-0.602,-0.96,-0.361
-Drift,TabPFN-TS,0.0,0.0,0.0,-0.537,-0.751,-0.372
-Drift,Chronos-Bolt,0.0,0.0,0.0,-0.568,-0.838,-0.388
-Drift,AutoETS,0.3,0.0,0.6,-0.446,-0.837,-0.158
-Drift,Stat. Ensemble,0.3,0.1,0.6,-0.457,-0.847,-0.172
-Drift,Sundial-Base,0.2,0.0,0.4,-0.303,-0.549,-0.1
-Drift,AutoARIMA,0.4,0.1,0.7,-0.084,-0.562,0.226
-Drift,AutoTheta,0.3,0.098,0.6,-0.211,-0.476,-0.034
-Drift,Seasonal Naive,0.3,0.098,0.6,0.004,-0.178,0.144
-Drift,Naive,0.3,0.098,0.6,0.072,-0.018,0.163
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/domain_health/pairwise_WAPE.csv b/tables/domain_health/pairwise_WAPE.csv
deleted file mode 100644
index a4e8adcc22a1f3d3b284076ce51d65ba06b9a002..0000000000000000000000000000000000000000
--- a/tables/domain_health/pairwise_WAPE.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,Chronos-2,0.5,0.2,0.8,0.016,-0.108,0.137
-TimesFM-2.5,TiRex,0.6,0.3,0.9,0.007,-0.063,0.073
-TimesFM-2.5,Moirai-2.0,0.6,0.3,0.9,-0.02,-0.124,0.049
-TimesFM-2.5,Toto-1.0,0.5,0.2,0.8,0.024,-0.091,0.142
-TimesFM-2.5,Stat. Ensemble,0.8,0.6,1.0,0.008,-0.184,0.15
-TimesFM-2.5,TabPFN-TS,0.6,0.3,0.9,0.104,-0.023,0.268
-TimesFM-2.5,Chronos-Bolt,0.8,0.6,1.0,0.059,-0.012,0.139
-TimesFM-2.5,AutoETS,0.6,0.3,0.9,0.011,-0.166,0.152
-TimesFM-2.5,Sundial-Base,0.8,0.6,1.0,0.165,0.037,0.307
-TimesFM-2.5,AutoARIMA,0.8,0.5,1.0,0.17,0.027,0.288
-TimesFM-2.5,AutoTheta,0.8,0.5,1.0,0.186,0.053,0.339
-TimesFM-2.5,Naive,0.9,0.7,1.0,0.302,0.168,0.445
-TimesFM-2.5,Seasonal Naive,0.9,0.7,1.0,0.302,0.151,0.466
-TimesFM-2.5,Drift,0.9,0.7,1.0,0.25,0.135,0.374
-Chronos-2,TimesFM-2.5,0.5,0.2,0.8,-0.016,-0.159,0.097
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TiRex,0.5,0.2,0.8,-0.009,-0.092,0.059
-Chronos-2,Moirai-2.0,0.4,0.1,0.7,-0.036,-0.144,0.052
-Chronos-2,Toto-1.0,0.6,0.3,0.9,0.009,-0.065,0.082
-Chronos-2,Stat. Ensemble,0.6,0.3,0.9,-0.008,-0.16,0.126
-Chronos-2,TabPFN-TS,0.6,0.3,0.9,0.089,-0.037,0.24
-Chronos-2,Chronos-Bolt,0.6,0.3,0.9,0.044,-0.071,0.143
-Chronos-2,AutoETS,0.5,0.2,0.8,-0.005,-0.165,0.134
-Chronos-2,Sundial-Base,0.8,0.6,1.0,0.152,-0.069,0.311
-Chronos-2,AutoARIMA,0.8,0.598,1.0,0.157,-0.004,0.306
-Chronos-2,AutoTheta,0.9,0.7,1.0,0.173,-0.029,0.334
-Chronos-2,Naive,0.9,0.7,1.0,0.291,0.073,0.451
-Chronos-2,Seasonal Naive,0.8,0.6,1.0,0.291,0.052,0.471
-Chronos-2,Drift,0.9,0.7,1.0,0.238,0.053,0.37
-TiRex,TimesFM-2.5,0.4,0.1,0.7,-0.007,-0.078,0.059
-TiRex,Chronos-2,0.5,0.2,0.8,0.009,-0.062,0.084
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,Moirai-2.0,0.5,0.2,0.8,-0.027,-0.087,0.031
-TiRex,Toto-1.0,0.6,0.3,0.9,0.018,-0.052,0.08
-TiRex,Stat. Ensemble,0.6,0.3,0.9,0.001,-0.156,0.132
-TiRex,TabPFN-TS,0.6,0.3,0.9,0.098,-0.024,0.267
-TiRex,Chronos-Bolt,0.7,0.4,0.9,0.052,-0.028,0.146
-TiRex,AutoETS,0.6,0.3,0.9,0.004,-0.139,0.133
-TiRex,Sundial-Base,0.7,0.4,1.0,0.159,-0.02,0.324
-TiRex,AutoARIMA,0.8,0.5,1.0,0.165,0.011,0.282
-TiRex,AutoTheta,0.8,0.5,1.0,0.181,0.01,0.351
-TiRex,Naive,0.9,0.7,1.0,0.297,0.113,0.463
-TiRex,Seasonal Naive,0.9,0.7,1.0,0.298,0.098,0.478
-TiRex,Drift,0.8,0.5,1.0,0.245,0.092,0.382
-Moirai-2.0,TimesFM-2.5,0.4,0.1,0.7,0.019,-0.052,0.11
-Moirai-2.0,Chronos-2,0.6,0.3,0.9,0.035,-0.055,0.126
-Moirai-2.0,TiRex,0.5,0.2,0.8,0.026,-0.032,0.08
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Toto-1.0,0.5,0.2,0.8,0.043,-0.046,0.133
-Moirai-2.0,Stat. Ensemble,0.5,0.2,0.8,0.027,-0.093,0.134
-Moirai-2.0,TabPFN-TS,0.6,0.3,0.9,0.121,-0.021,0.28
-Moirai-2.0,Chronos-Bolt,0.75,0.45,1.0,0.077,-0.001,0.158
-Moirai-2.0,AutoETS,0.5,0.2,0.8,0.03,-0.08,0.138
-Moirai-2.0,Sundial-Base,0.7,0.4,1.0,0.181,0.029,0.327
-Moirai-2.0,AutoARIMA,0.8,0.5,1.0,0.187,0.016,0.325
-Moirai-2.0,AutoTheta,0.8,0.5,1.0,0.202,0.043,0.355
-Moirai-2.0,Naive,0.9,0.7,1.0,0.315,0.147,0.473
-Moirai-2.0,Seasonal Naive,0.9,0.7,1.0,0.316,0.124,0.487
-Moirai-2.0,Drift,0.8,0.5,1.0,0.265,0.132,0.392
-Toto-1.0,TimesFM-2.5,0.5,0.2,0.8,-0.025,-0.166,0.083
-Toto-1.0,Chronos-2,0.4,0.1,0.7,-0.009,-0.089,0.061
-Toto-1.0,TiRex,0.4,0.1,0.7,-0.018,-0.087,0.05
-Toto-1.0,Moirai-2.0,0.5,0.2,0.8,-0.045,-0.154,0.044
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,Stat. Ensemble,0.5,0.2,0.8,-0.017,-0.182,0.121
-Toto-1.0,TabPFN-TS,0.5,0.2,0.8,0.081,-0.069,0.253
-Toto-1.0,Chronos-Bolt,0.6,0.3,0.9,0.035,-0.085,0.134
-Toto-1.0,AutoETS,0.5,0.2,0.8,-0.013,-0.183,0.12
-Toto-1.0,Sundial-Base,0.7,0.4,1.0,0.144,-0.085,0.321
-Toto-1.0,AutoARIMA,0.8,0.5,1.0,0.15,0.026,0.263
-Toto-1.0,AutoTheta,0.9,0.7,1.0,0.166,-0.043,0.34
-Toto-1.0,Naive,0.9,0.7,1.0,0.284,0.062,0.453
-Toto-1.0,Seasonal Naive,0.9,0.7,1.0,0.285,0.047,0.473
-Toto-1.0,Drift,0.9,0.7,1.0,0.231,0.045,0.375
-Stat. Ensemble,TimesFM-2.5,0.2,0.0,0.4,-0.008,-0.176,0.156
-Stat. Ensemble,Chronos-2,0.4,0.1,0.7,0.008,-0.145,0.138
-Stat. Ensemble,TiRex,0.4,0.1,0.7,-0.001,-0.153,0.135
-Stat. Ensemble,Moirai-2.0,0.5,0.2,0.8,-0.028,-0.155,0.085
-Stat. Ensemble,Toto-1.0,0.5,0.2,0.8,0.017,-0.137,0.154
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,TabPFN-TS,0.6,0.3,0.9,0.097,-0.079,0.244
-Stat. Ensemble,Chronos-Bolt,0.6,0.3,0.9,0.051,-0.066,0.167
-Stat. Ensemble,AutoETS,0.6,0.3,0.9,0.003,-0.047,0.039
-Stat. Ensemble,Sundial-Base,0.6,0.3,0.9,0.158,-0.054,0.323
-Stat. Ensemble,AutoARIMA,0.6,0.3,0.9,0.164,0.009,0.335
-Stat. Ensemble,AutoTheta,0.8,0.6,1.0,0.18,0.025,0.327
-Stat. Ensemble,Naive,0.7,0.4,1.0,0.296,0.108,0.458
-Stat. Ensemble,Seasonal Naive,0.7,0.4,1.0,0.297,0.08,0.468
-Stat. Ensemble,Drift,0.9,0.7,1.0,0.244,0.115,0.363
-TabPFN-TS,TimesFM-2.5,0.4,0.1,0.7,-0.116,-0.366,0.023
-TabPFN-TS,Chronos-2,0.4,0.1,0.7,-0.098,-0.316,0.036
-TabPFN-TS,TiRex,0.4,0.1,0.7,-0.108,-0.365,0.024
-TabPFN-TS,Moirai-2.0,0.4,0.1,0.7,-0.138,-0.389,0.02
-TabPFN-TS,Toto-1.0,0.5,0.2,0.8,-0.089,-0.339,0.064
-TabPFN-TS,Stat. Ensemble,0.4,0.1,0.7,-0.107,-0.323,0.073
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Chronos-Bolt,0.3,0.1,0.6,-0.05,-0.196,0.049
-TabPFN-TS,AutoETS,0.4,0.1,0.7,-0.103,-0.365,0.095
-TabPFN-TS,Sundial-Base,0.6,0.3,0.9,0.068,-0.063,0.168
-TabPFN-TS,AutoARIMA,0.7,0.4,0.9,0.074,-0.172,0.25
-TabPFN-TS,AutoTheta,0.9,0.7,1.0,0.092,-0.02,0.181
-TabPFN-TS,Naive,0.9,0.7,1.0,0.221,0.082,0.328
-TabPFN-TS,Seasonal Naive,0.9,0.7,1.0,0.222,0.075,0.338
-TabPFN-TS,Drift,0.9,0.7,1.0,0.163,0.055,0.248
-Chronos-Bolt,TimesFM-2.5,0.2,0.0,0.4,-0.062,-0.161,0.011
-Chronos-Bolt,Chronos-2,0.4,0.1,0.7,-0.046,-0.167,0.066
-Chronos-Bolt,TiRex,0.3,0.1,0.6,-0.055,-0.171,0.027
-Chronos-Bolt,Moirai-2.0,0.25,0.0,0.55,-0.084,-0.188,0.001
-Chronos-Bolt,Toto-1.0,0.4,0.1,0.7,-0.037,-0.155,0.078
-Chronos-Bolt,Stat. Ensemble,0.4,0.1,0.7,-0.054,-0.201,0.062
-Chronos-Bolt,TabPFN-TS,0.7,0.4,0.9,0.048,-0.052,0.164
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,AutoETS,0.4,0.1,0.7,-0.051,-0.199,0.076
-Chronos-Bolt,Sundial-Base,0.7,0.4,1.0,0.113,-0.012,0.219
-Chronos-Bolt,AutoARIMA,0.7,0.4,1.0,0.119,-0.028,0.247
-Chronos-Bolt,AutoTheta,0.9,0.7,1.0,0.136,0.026,0.244
-Chronos-Bolt,Naive,0.9,0.7,1.0,0.258,0.121,0.38
-Chronos-Bolt,Seasonal Naive,0.9,0.7,1.0,0.259,0.102,0.399
-Chronos-Bolt,Drift,0.9,0.7,1.0,0.203,0.107,0.292
-AutoETS,TimesFM-2.5,0.4,0.1,0.7,-0.011,-0.179,0.143
-AutoETS,Chronos-2,0.5,0.2,0.8,0.005,-0.154,0.142
-AutoETS,TiRex,0.4,0.1,0.7,-0.004,-0.153,0.122
-AutoETS,Moirai-2.0,0.5,0.2,0.8,-0.031,-0.16,0.074
-AutoETS,Toto-1.0,0.5,0.2,0.8,0.013,-0.136,0.154
-AutoETS,Stat. Ensemble,0.4,0.1,0.7,-0.003,-0.04,0.045
-AutoETS,TabPFN-TS,0.6,0.3,0.9,0.094,-0.105,0.267
-AutoETS,Chronos-Bolt,0.6,0.3,0.9,0.048,-0.082,0.166
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Sundial-Base,0.6,0.3,0.9,0.155,-0.058,0.327
-AutoETS,AutoARIMA,0.7,0.4,1.0,0.161,0.007,0.335
-AutoETS,AutoTheta,0.7,0.4,1.0,0.177,0.008,0.343
-AutoETS,Naive,0.6,0.3,0.9,0.294,0.094,0.464
-AutoETS,Seasonal Naive,0.7,0.4,1.0,0.295,0.066,0.481
-AutoETS,Drift,0.8,0.5,1.0,0.241,0.094,0.377
-Sundial-Base,TimesFM-2.5,0.2,0.0,0.4,-0.197,-0.444,-0.038
-Sundial-Base,Chronos-2,0.2,0.0,0.4,-0.179,-0.452,0.064
-Sundial-Base,TiRex,0.3,0.0,0.6,-0.189,-0.48,0.02
-Sundial-Base,Moirai-2.0,0.3,0.0,0.6,-0.221,-0.487,-0.03
-Sundial-Base,Toto-1.0,0.3,0.0,0.6,-0.168,-0.472,0.078
-Sundial-Base,Stat. Ensemble,0.4,0.1,0.7,-0.188,-0.476,0.051
-Sundial-Base,TabPFN-TS,0.4,0.1,0.7,-0.073,-0.201,0.059
-Sundial-Base,Chronos-Bolt,0.3,0.0,0.6,-0.127,-0.281,0.012
-Sundial-Base,AutoETS,0.4,0.1,0.7,-0.184,-0.486,0.055
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,AutoARIMA,0.6,0.3,0.9,0.007,-0.283,0.227
-Sundial-Base,AutoTheta,0.7,0.4,1.0,0.026,-0.073,0.109
-Sundial-Base,Naive,0.9,0.7,1.0,0.164,0.079,0.245
-Sundial-Base,Seasonal Naive,0.8,0.6,1.0,0.165,0.065,0.256
-Sundial-Base,Drift,0.8,0.6,1.0,0.102,-0.013,0.203
-AutoARIMA,TimesFM-2.5,0.2,0.0,0.5,-0.205,-0.404,-0.028
-AutoARIMA,Chronos-2,0.2,0.0,0.402,-0.186,-0.441,0.004
-AutoARIMA,TiRex,0.2,0.0,0.5,-0.197,-0.394,-0.011
-AutoARIMA,Moirai-2.0,0.2,0.0,0.5,-0.229,-0.482,-0.016
-AutoARIMA,Toto-1.0,0.2,0.0,0.5,-0.176,-0.356,-0.027
-AutoARIMA,Stat. Ensemble,0.4,0.1,0.7,-0.196,-0.504,-0.009
-AutoARIMA,TabPFN-TS,0.3,0.1,0.6,-0.08,-0.333,0.147
-AutoARIMA,Chronos-Bolt,0.3,0.0,0.6,-0.135,-0.328,0.027
-AutoARIMA,AutoETS,0.3,0.0,0.6,-0.192,-0.504,-0.007
-AutoARIMA,Sundial-Base,0.4,0.1,0.7,-0.007,-0.294,0.221
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoTheta,0.5,0.2,0.8,0.019,-0.198,0.22
-AutoARIMA,Naive,0.6,0.3,0.9,0.158,-0.085,0.352
-AutoARIMA,Seasonal Naive,0.6,0.3,0.9,0.159,-0.099,0.377
-AutoARIMA,Drift,0.5,0.2,0.8,0.096,-0.116,0.293
-AutoTheta,TimesFM-2.5,0.2,0.0,0.5,-0.229,-0.512,-0.056
-AutoTheta,Chronos-2,0.1,0.0,0.3,-0.21,-0.501,0.029
-AutoTheta,TiRex,0.2,0.0,0.5,-0.221,-0.54,-0.01
-AutoTheta,Moirai-2.0,0.2,0.0,0.5,-0.253,-0.55,-0.045
-AutoTheta,Toto-1.0,0.1,0.0,0.3,-0.199,-0.516,0.041
-AutoTheta,Stat. Ensemble,0.2,0.0,0.4,-0.219,-0.486,-0.025
-AutoTheta,TabPFN-TS,0.1,0.0,0.3,-0.102,-0.221,0.019
-AutoTheta,Chronos-Bolt,0.1,0.0,0.3,-0.157,-0.323,-0.027
-AutoTheta,AutoETS,0.3,0.0,0.6,-0.215,-0.521,-0.009
-AutoTheta,Sundial-Base,0.3,0.0,0.6,-0.026,-0.122,0.068
-AutoTheta,AutoARIMA,0.5,0.2,0.8,-0.02,-0.282,0.166
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Naive,0.7,0.4,1.0,0.142,0.049,0.223
-AutoTheta,Seasonal Naive,0.6,0.3,0.9,0.143,0.04,0.238
-AutoTheta,Drift,0.6,0.3,0.9,0.078,0.006,0.16
-Naive,TimesFM-2.5,0.1,0.0,0.3,-0.432,-0.803,-0.201
-Naive,Chronos-2,0.1,0.0,0.3,-0.41,-0.823,-0.079
-Naive,TiRex,0.1,0.0,0.3,-0.422,-0.861,-0.127
-Naive,Moirai-2.0,0.1,0.0,0.3,-0.461,-0.897,-0.172
-Naive,Toto-1.0,0.1,0.0,0.3,-0.397,-0.829,-0.066
-Naive,Stat. Ensemble,0.3,0.0,0.6,-0.421,-0.846,-0.12
-Naive,TabPFN-TS,0.1,0.0,0.3,-0.284,-0.487,-0.089
-Naive,Chronos-Bolt,0.1,0.0,0.3,-0.348,-0.612,-0.138
-Naive,AutoETS,0.4,0.1,0.7,-0.416,-0.865,-0.104
-Naive,Sundial-Base,0.1,0.0,0.3,-0.196,-0.325,-0.085
-Naive,AutoARIMA,0.4,0.1,0.7,-0.188,-0.543,0.079
-Naive,AutoTheta,0.3,0.0,0.6,-0.165,-0.287,-0.051
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Seasonal Naive,0.55,0.35,0.8,0.001,-0.064,0.06
-Naive,Drift,0.7,0.4,0.902,-0.074,-0.193,0.018
-Seasonal Naive,TimesFM-2.5,0.1,0.0,0.3,-0.433,-0.874,-0.179
-Seasonal Naive,Chronos-2,0.2,0.0,0.4,-0.411,-0.889,-0.054
-Seasonal Naive,TiRex,0.1,0.0,0.3,-0.424,-0.915,-0.109
-Seasonal Naive,Moirai-2.0,0.1,0.0,0.3,-0.462,-0.951,-0.141
-Seasonal Naive,Toto-1.0,0.1,0.0,0.3,-0.399,-0.898,-0.049
-Seasonal Naive,Stat. Ensemble,0.3,0.0,0.6,-0.422,-0.879,-0.087
-Seasonal Naive,TabPFN-TS,0.1,0.0,0.3,-0.285,-0.511,-0.082
-Seasonal Naive,Chronos-Bolt,0.1,0.0,0.3,-0.349,-0.664,-0.113
-Seasonal Naive,AutoETS,0.3,0.0,0.6,-0.417,-0.928,-0.07
-Seasonal Naive,Sundial-Base,0.2,0.0,0.4,-0.197,-0.344,-0.069
-Seasonal Naive,AutoARIMA,0.4,0.1,0.7,-0.189,-0.604,0.09
-Seasonal Naive,AutoTheta,0.4,0.1,0.7,-0.166,-0.312,-0.041
-Seasonal Naive,Naive,0.45,0.2,0.65,-0.001,-0.064,0.061
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Drift,0.5,0.2,0.8,-0.075,-0.224,0.057
-Drift,TimesFM-2.5,0.1,0.0,0.3,-0.333,-0.598,-0.156
-Drift,Chronos-2,0.1,0.0,0.3,-0.312,-0.587,-0.056
-Drift,TiRex,0.2,0.0,0.5,-0.324,-0.617,-0.102
-Drift,Moirai-2.0,0.2,0.0,0.5,-0.36,-0.644,-0.152
-Drift,Toto-1.0,0.1,0.0,0.3,-0.301,-0.601,-0.047
-Drift,Stat. Ensemble,0.1,0.0,0.3,-0.323,-0.57,-0.129
-Drift,TabPFN-TS,0.1,0.0,0.3,-0.195,-0.331,-0.059
-Drift,Chronos-Bolt,0.1,0.0,0.3,-0.255,-0.412,-0.12
-Drift,AutoETS,0.2,0.0,0.5,-0.318,-0.606,-0.104
-Drift,Sundial-Base,0.2,0.0,0.4,-0.113,-0.255,0.013
-Drift,AutoARIMA,0.5,0.2,0.8,-0.106,-0.414,0.104
-Drift,AutoTheta,0.4,0.1,0.7,-0.085,-0.19,-0.006
-Drift,Naive,0.3,0.098,0.6,0.069,-0.018,0.162
-Drift,Seasonal Naive,0.5,0.2,0.8,0.07,-0.06,0.183
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/domain_health/pairwise_WQL.csv b/tables/domain_health/pairwise_WQL.csv
deleted file mode 100644
index 62b45aa454bfbd3f0ca6fb3137be2480f9053d1e..0000000000000000000000000000000000000000
--- a/tables/domain_health/pairwise_WQL.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,Chronos-2,0.5,0.2,0.8,0.002,-0.105,0.106
-TimesFM-2.5,Moirai-2.0,0.6,0.3,0.9,-0.019,-0.109,0.043
-TimesFM-2.5,TiRex,0.6,0.3,0.9,0.027,-0.023,0.085
-TimesFM-2.5,Toto-1.0,0.5,0.2,0.8,0.005,-0.109,0.12
-TimesFM-2.5,Chronos-Bolt,0.8,0.6,1.0,0.04,-0.018,0.102
-TimesFM-2.5,Stat. Ensemble,0.7,0.4,1.0,0.106,-0.099,0.28
-TimesFM-2.5,TabPFN-TS,0.7,0.4,1.0,0.098,-0.013,0.238
-TimesFM-2.5,AutoETS,0.6,0.3,0.9,0.123,-0.074,0.306
-TimesFM-2.5,AutoARIMA,0.7,0.4,1.0,0.258,0.079,0.398
-TimesFM-2.5,Sundial-Base,0.9,0.7,1.0,0.215,0.091,0.339
-TimesFM-2.5,AutoTheta,0.9,0.7,1.0,0.274,0.122,0.417
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.406,0.261,0.536
-TimesFM-2.5,Drift,0.9,0.7,1.0,0.4,0.286,0.502
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.442,0.332,0.543
-Chronos-2,TimesFM-2.5,0.5,0.2,0.8,-0.002,-0.119,0.095
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,Moirai-2.0,0.6,0.3,0.9,-0.021,-0.11,0.055
-Chronos-2,TiRex,0.5,0.2,0.8,0.025,-0.055,0.099
-Chronos-2,Toto-1.0,0.7,0.4,1.0,0.003,-0.077,0.077
-Chronos-2,Chronos-Bolt,0.7,0.4,0.9,0.038,-0.07,0.13
-Chronos-2,Stat. Ensemble,0.7,0.4,1.0,0.104,-0.054,0.262
-Chronos-2,TabPFN-TS,0.6,0.3,0.9,0.096,-0.008,0.217
-Chronos-2,AutoETS,0.7,0.4,1.0,0.121,-0.042,0.298
-Chronos-2,AutoARIMA,0.9,0.7,1.0,0.256,0.07,0.408
-Chronos-2,Sundial-Base,0.8,0.6,1.0,0.214,0.006,0.359
-Chronos-2,AutoTheta,0.9,0.7,1.0,0.272,0.096,0.418
-Chronos-2,Seasonal Naive,0.9,0.7,1.0,0.404,0.211,0.549
-Chronos-2,Drift,0.9,0.7,1.0,0.399,0.258,0.509
-Chronos-2,Naive,0.9,0.7,1.0,0.441,0.286,0.559
-Moirai-2.0,TimesFM-2.5,0.4,0.1,0.7,0.018,-0.045,0.098
-Moirai-2.0,Chronos-2,0.4,0.1,0.7,0.02,-0.058,0.099
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,TiRex,0.5,0.2,0.8,0.045,-0.008,0.103
-Moirai-2.0,Toto-1.0,0.6,0.3,0.9,0.023,-0.061,0.104
-Moirai-2.0,Chronos-Bolt,0.75,0.5,0.951,0.057,-0.013,0.128
-Moirai-2.0,Stat. Ensemble,0.6,0.3,0.9,0.122,-0.048,0.277
-Moirai-2.0,TabPFN-TS,0.6,0.3,0.9,0.114,-0.014,0.258
-Moirai-2.0,AutoETS,0.7,0.4,1.0,0.139,-0.02,0.311
-Moirai-2.0,AutoARIMA,0.8,0.5,1.0,0.271,0.072,0.423
-Moirai-2.0,Sundial-Base,0.9,0.7,1.0,0.23,0.079,0.368
-Moirai-2.0,AutoTheta,0.9,0.7,1.0,0.287,0.111,0.433
-Moirai-2.0,Seasonal Naive,1.0,1.0,1.0,0.416,0.242,0.564
-Moirai-2.0,Drift,0.9,0.7,1.0,0.411,0.287,0.517
-Moirai-2.0,Naive,1.0,1.0,1.0,0.452,0.314,0.57
-TiRex,TimesFM-2.5,0.4,0.1,0.7,-0.028,-0.093,0.023
-TiRex,Chronos-2,0.5,0.2,0.8,-0.026,-0.11,0.052
-TiRex,Moirai-2.0,0.5,0.2,0.8,-0.047,-0.114,0.007
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,Toto-1.0,0.6,0.3,0.9,-0.023,-0.099,0.044
-TiRex,Chronos-Bolt,0.7,0.4,0.9,0.013,-0.067,0.096
-TiRex,Stat. Ensemble,0.6,0.3,0.9,0.081,-0.109,0.258
-TiRex,TabPFN-TS,0.6,0.3,0.9,0.073,-0.044,0.227
-TiRex,AutoETS,0.6,0.3,0.9,0.099,-0.083,0.284
-TiRex,AutoARIMA,0.8,0.5,1.0,0.237,0.052,0.375
-TiRex,Sundial-Base,0.8,0.6,1.0,0.193,0.021,0.346
-TiRex,AutoTheta,0.8,0.5,1.0,0.253,0.075,0.414
-TiRex,Seasonal Naive,0.9,0.7,1.0,0.389,0.216,0.543
-TiRex,Drift,0.8,0.5,1.0,0.384,0.242,0.506
-TiRex,Naive,0.9,0.7,1.0,0.426,0.282,0.551
-Toto-1.0,TimesFM-2.5,0.5,0.2,0.8,-0.005,-0.137,0.099
-Toto-1.0,Chronos-2,0.3,0.0,0.6,-0.003,-0.084,0.072
-Toto-1.0,Moirai-2.0,0.4,0.1,0.7,-0.024,-0.117,0.058
-Toto-1.0,TiRex,0.4,0.1,0.7,0.022,-0.046,0.09
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,Chronos-Bolt,0.6,0.3,0.9,0.035,-0.083,0.131
-Toto-1.0,Stat. Ensemble,0.5,0.2,0.8,0.101,-0.064,0.273
-Toto-1.0,TabPFN-TS,0.5,0.2,0.8,0.093,-0.051,0.255
-Toto-1.0,AutoETS,0.6,0.3,0.9,0.119,-0.053,0.302
-Toto-1.0,AutoARIMA,0.8,0.5,1.0,0.254,0.091,0.389
-Toto-1.0,Sundial-Base,0.8,0.6,1.0,0.211,-0.016,0.378
-Toto-1.0,AutoTheta,0.9,0.7,1.0,0.27,0.074,0.433
-Toto-1.0,Seasonal Naive,0.9,0.7,1.0,0.402,0.193,0.566
-Toto-1.0,Drift,0.9,0.7,1.0,0.397,0.25,0.525
-Toto-1.0,Naive,0.9,0.7,1.0,0.439,0.269,0.573
-Chronos-Bolt,TimesFM-2.5,0.2,0.0,0.4,-0.042,-0.113,0.018
-Chronos-Bolt,Chronos-2,0.3,0.1,0.6,-0.039,-0.149,0.066
-Chronos-Bolt,Moirai-2.0,0.25,0.049,0.5,-0.061,-0.147,0.013
-Chronos-Bolt,TiRex,0.3,0.1,0.6,-0.013,-0.106,0.062
-Chronos-Bolt,Toto-1.0,0.4,0.1,0.7,-0.036,-0.151,0.077
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Stat. Ensemble,0.5,0.2,0.8,0.069,-0.096,0.223
-Chronos-Bolt,TabPFN-TS,0.7,0.4,0.9,0.061,-0.042,0.173
-Chronos-Bolt,AutoETS,0.6,0.3,0.9,0.087,-0.082,0.26
-Chronos-Bolt,AutoARIMA,0.6,0.3,0.9,0.227,0.053,0.371
-Chronos-Bolt,Sundial-Base,0.8,0.6,1.0,0.183,0.056,0.289
-Chronos-Bolt,AutoTheta,1.0,1.0,1.0,0.244,0.118,0.358
-Chronos-Bolt,Seasonal Naive,1.0,1.0,1.0,0.381,0.242,0.501
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.376,0.279,0.468
-Chronos-Bolt,Naive,1.0,1.0,1.0,0.419,0.314,0.516
-Stat. Ensemble,TimesFM-2.5,0.3,0.0,0.6,-0.119,-0.389,0.09
-Stat. Ensemble,Chronos-2,0.3,0.0,0.6,-0.116,-0.354,0.051
-Stat. Ensemble,Moirai-2.0,0.4,0.1,0.7,-0.139,-0.384,0.045
-Stat. Ensemble,TiRex,0.4,0.1,0.7,-0.088,-0.347,0.099
-Stat. Ensemble,Toto-1.0,0.5,0.2,0.8,-0.113,-0.376,0.06
-Stat. Ensemble,Chronos-Bolt,0.5,0.2,0.8,-0.074,-0.287,0.088
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,TabPFN-TS,0.6,0.3,0.9,-0.009,-0.248,0.165
-Stat. Ensemble,AutoETS,0.5,0.2,0.8,0.019,-0.04,0.075
-Stat. Ensemble,AutoARIMA,0.6,0.3,0.9,0.17,0.016,0.344
-Stat. Ensemble,Sundial-Base,0.6,0.3,0.9,0.122,-0.169,0.322
-Stat. Ensemble,AutoTheta,0.8,0.6,1.0,0.188,0.027,0.341
-Stat. Ensemble,Seasonal Naive,0.8,0.6,1.0,0.335,0.128,0.5
-Stat. Ensemble,Drift,0.9,0.7,1.0,0.329,0.182,0.458
-Stat. Ensemble,Naive,0.9,0.7,1.0,0.376,0.191,0.523
-TabPFN-TS,TimesFM-2.5,0.3,0.0,0.6,-0.109,-0.312,0.013
-TabPFN-TS,Chronos-2,0.4,0.1,0.7,-0.106,-0.278,0.008
-TabPFN-TS,Moirai-2.0,0.4,0.1,0.7,-0.129,-0.349,0.014
-TabPFN-TS,TiRex,0.4,0.1,0.7,-0.078,-0.294,0.042
-TabPFN-TS,Toto-1.0,0.5,0.2,0.8,-0.103,-0.342,0.048
-TabPFN-TS,Chronos-Bolt,0.3,0.1,0.6,-0.064,-0.21,0.04
-TabPFN-TS,Stat. Ensemble,0.4,0.1,0.7,0.009,-0.198,0.199
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,AutoETS,0.4,0.1,0.7,0.028,-0.227,0.241
-TabPFN-TS,AutoARIMA,0.6,0.3,0.9,0.177,-0.059,0.349
-TabPFN-TS,Sundial-Base,0.8,0.6,1.0,0.13,-0.019,0.231
-TabPFN-TS,AutoTheta,0.9,0.7,1.0,0.195,0.082,0.299
-TabPFN-TS,Seasonal Naive,0.9,0.7,1.0,0.341,0.208,0.448
-TabPFN-TS,Drift,0.9,0.7,1.0,0.335,0.223,0.439
-TabPFN-TS,Naive,0.9,0.7,1.0,0.381,0.268,0.475
-AutoETS,TimesFM-2.5,0.4,0.1,0.7,-0.141,-0.442,0.069
-AutoETS,Chronos-2,0.3,0.0,0.6,-0.138,-0.424,0.04
-AutoETS,Moirai-2.0,0.3,0.0,0.6,-0.162,-0.451,0.02
-AutoETS,TiRex,0.4,0.1,0.7,-0.11,-0.396,0.077
-AutoETS,Toto-1.0,0.4,0.1,0.7,-0.135,-0.432,0.05
-AutoETS,Chronos-Bolt,0.4,0.1,0.7,-0.095,-0.352,0.076
-AutoETS,Stat. Ensemble,0.5,0.2,0.8,-0.02,-0.081,0.039
-AutoETS,TabPFN-TS,0.6,0.3,0.9,-0.029,-0.317,0.185
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,AutoARIMA,0.6,0.3,0.9,0.153,-0.023,0.348
-AutoETS,Sundial-Base,0.6,0.3,0.9,0.105,-0.213,0.319
-AutoETS,AutoTheta,0.7,0.4,1.0,0.172,-0.008,0.343
-AutoETS,Seasonal Naive,0.7,0.4,1.0,0.322,0.097,0.505
-AutoETS,Drift,0.8,0.5,1.0,0.316,0.144,0.468
-AutoETS,Naive,0.7,0.4,1.0,0.364,0.152,0.527
-AutoARIMA,TimesFM-2.5,0.3,0.0,0.6,-0.347,-0.661,-0.086
-AutoARIMA,Chronos-2,0.1,0.0,0.3,-0.344,-0.689,-0.075
-AutoARIMA,Moirai-2.0,0.2,0.0,0.5,-0.372,-0.733,-0.077
-AutoARIMA,TiRex,0.2,0.0,0.5,-0.31,-0.6,-0.054
-AutoARIMA,Toto-1.0,0.2,0.0,0.5,-0.34,-0.636,-0.1
-AutoARIMA,Chronos-Bolt,0.4,0.1,0.7,-0.293,-0.591,-0.056
-AutoARIMA,Stat. Ensemble,0.4,0.1,0.7,-0.204,-0.524,-0.016
-AutoARIMA,TabPFN-TS,0.4,0.1,0.7,-0.215,-0.536,0.055
-AutoARIMA,AutoETS,0.4,0.1,0.7,-0.181,-0.533,0.023
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,Sundial-Base,0.5,0.2,0.8,-0.057,-0.428,0.219
-AutoARIMA,AutoTheta,0.5,0.2,0.8,0.022,-0.198,0.228
-AutoARIMA,Seasonal Naive,0.7,0.4,0.902,0.199,-0.062,0.407
-AutoARIMA,Drift,0.7,0.4,1.0,0.192,-0.037,0.404
-AutoARIMA,Naive,0.8,0.6,1.0,0.248,-0.0,0.452
-Sundial-Base,TimesFM-2.5,0.1,0.0,0.3,-0.274,-0.513,-0.1
-Sundial-Base,Chronos-2,0.2,0.0,0.4,-0.271,-0.561,-0.006
-Sundial-Base,Moirai-2.0,0.1,0.0,0.3,-0.298,-0.582,-0.086
-Sundial-Base,TiRex,0.2,0.0,0.4,-0.24,-0.529,-0.021
-Sundial-Base,Toto-1.0,0.2,0.0,0.4,-0.268,-0.607,0.016
-Sundial-Base,Chronos-Bolt,0.2,0.0,0.4,-0.223,-0.407,-0.059
-Sundial-Base,Stat. Ensemble,0.4,0.1,0.7,-0.139,-0.475,0.145
-Sundial-Base,TabPFN-TS,0.2,0.0,0.4,-0.149,-0.301,0.019
-Sundial-Base,AutoETS,0.4,0.1,0.7,-0.117,-0.469,0.175
-Sundial-Base,AutoARIMA,0.5,0.2,0.8,0.054,-0.28,0.3
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,AutoTheta,0.5,0.2,0.8,0.075,-0.067,0.212
-Sundial-Base,Seasonal Naive,0.8,0.6,1.0,0.242,0.118,0.351
-Sundial-Base,Drift,0.8,0.6,1.0,0.236,0.085,0.374
-Sundial-Base,Naive,0.9,0.7,1.0,0.289,0.182,0.393
-AutoTheta,TimesFM-2.5,0.1,0.0,0.3,-0.377,-0.714,-0.139
-AutoTheta,Chronos-2,0.1,0.0,0.3,-0.374,-0.717,-0.106
-AutoTheta,Moirai-2.0,0.1,0.0,0.3,-0.403,-0.763,-0.124
-AutoTheta,TiRex,0.2,0.0,0.5,-0.339,-0.705,-0.081
-AutoTheta,Toto-1.0,0.1,0.0,0.3,-0.37,-0.765,-0.08
-AutoTheta,Chronos-Bolt,0.0,0.0,0.0,-0.322,-0.558,-0.133
-AutoTheta,Stat. Ensemble,0.2,0.0,0.4,-0.231,-0.518,-0.027
-AutoTheta,TabPFN-TS,0.1,0.0,0.3,-0.242,-0.427,-0.09
-AutoTheta,AutoETS,0.3,0.0,0.6,-0.207,-0.523,0.008
-AutoTheta,AutoARIMA,0.5,0.2,0.8,-0.022,-0.295,0.166
-AutoTheta,Sundial-Base,0.5,0.2,0.8,-0.081,-0.269,0.063
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Seasonal Naive,0.6,0.3,0.9,0.181,0.065,0.292
-AutoTheta,Drift,0.6,0.3,0.9,0.174,0.037,0.325
-AutoTheta,Naive,0.8,0.5,1.0,0.232,0.108,0.357
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-0.682,-1.155,-0.354
-Seasonal Naive,Chronos-2,0.1,0.0,0.3,-0.678,-1.217,-0.268
-Seasonal Naive,Moirai-2.0,0.0,0.0,0.0,-0.714,-1.293,-0.32
-Seasonal Naive,TiRex,0.1,0.0,0.3,-0.636,-1.186,-0.275
-Seasonal Naive,Toto-1.0,0.1,0.0,0.3,-0.673,-1.302,-0.239
-Seasonal Naive,Chronos-Bolt,0.0,0.0,0.0,-0.615,-1.006,-0.319
-Seasonal Naive,Stat. Ensemble,0.2,0.0,0.4,-0.504,-0.999,-0.146
-Seasonal Naive,TabPFN-TS,0.1,0.0,0.3,-0.517,-0.812,-0.263
-Seasonal Naive,AutoETS,0.3,0.0,0.6,-0.475,-1.018,-0.108
-Seasonal Naive,AutoARIMA,0.3,0.098,0.6,-0.249,-0.686,0.058
-Seasonal Naive,Sundial-Base,0.2,0.0,0.4,-0.32,-0.542,-0.134
-Seasonal Naive,AutoTheta,0.4,0.1,0.7,-0.222,-0.412,-0.07
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Drift,0.6,0.3,0.9,-0.008,-0.182,0.152
-Seasonal Naive,Naive,0.55,0.35,0.75,0.061,-0.035,0.162
-Drift,TimesFM-2.5,0.1,0.0,0.3,-0.668,-1.008,-0.4
-Drift,Chronos-2,0.1,0.0,0.3,-0.664,-1.037,-0.348
-Drift,Moirai-2.0,0.1,0.0,0.3,-0.699,-1.071,-0.402
-Drift,TiRex,0.2,0.0,0.5,-0.623,-1.022,-0.32
-Drift,Toto-1.0,0.1,0.0,0.3,-0.659,-1.105,-0.333
-Drift,Chronos-Bolt,0.0,0.0,0.0,-0.601,-0.881,-0.387
-Drift,Stat. Ensemble,0.1,0.0,0.3,-0.491,-0.843,-0.222
-Drift,TabPFN-TS,0.1,0.0,0.3,-0.505,-0.784,-0.286
-Drift,AutoETS,0.2,0.0,0.5,-0.462,-0.878,-0.168
-Drift,AutoARIMA,0.3,0.0,0.6,-0.238,-0.677,0.036
-Drift,Sundial-Base,0.2,0.0,0.4,-0.309,-0.597,-0.092
-Drift,AutoTheta,0.4,0.1,0.7,-0.211,-0.481,-0.038
-Drift,Seasonal Naive,0.4,0.1,0.7,0.008,-0.179,0.154
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
-Drift,Naive,0.3,0.098,0.6,0.069,-0.016,0.16
-Naive,TimesFM-2.5,0.0,0.0,0.0,-0.792,-1.189,-0.498
-Naive,Chronos-2,0.1,0.0,0.3,-0.788,-1.27,-0.4
-Naive,Moirai-2.0,0.0,0.0,0.0,-0.826,-1.324,-0.458
-Naive,TiRex,0.1,0.0,0.3,-0.744,-1.229,-0.393
-Naive,Toto-1.0,0.1,0.0,0.3,-0.783,-1.344,-0.368
-Naive,Chronos-Bolt,0.0,0.0,0.0,-0.721,-1.066,-0.457
-Naive,Stat. Ensemble,0.1,0.0,0.3,-0.602,-1.098,-0.237
-Naive,TabPFN-TS,0.1,0.0,0.3,-0.617,-0.905,-0.367
-Naive,AutoETS,0.3,0.0,0.6,-0.571,-1.116,-0.179
-Naive,AutoARIMA,0.2,0.0,0.4,-0.331,-0.826,0.0
-Naive,Sundial-Base,0.1,0.0,0.3,-0.407,-0.647,-0.222
-Naive,AutoTheta,0.2,0.0,0.5,-0.302,-0.554,-0.121
-Naive,Seasonal Naive,0.45,0.25,0.65,-0.066,-0.194,0.034
-Naive,Drift,0.7,0.4,0.902,-0.075,-0.191,0.016
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/domain_mobility/leaderboard_MASE.csv b/tables/domain_mobility/leaderboard_MASE.csv
deleted file mode 100644
index ea2ddae1bb0dc0d6ab85e07c32db8bb6975225dd..0000000000000000000000000000000000000000
--- a/tables/domain_mobility/leaderboard_MASE.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,95.91836734693878,31.297845857459595,0.0,0.3598705023717949,0.0,0.0
-TimesFM-2.5,88.77551020408163,30.089978096846835,0.0,1.0527405814102564,0.0,0.0
-TiRex,86.73469387755102,28.869849444319463,0.0,0.3347885198142415,0.0,0.0
-TabPFN-TS,65.3061224489796,24.574044447615496,0.0,94.13752358266667,0.0,0.0
-Chronos-Bolt,64.79591836734694,25.33590896818273,0.0,0.2168154292307692,0.0,0.0
-Moirai-2.0,64.79591836734694,25.33590896818273,0.0,2.2480439729721367,1.0,0.0
-Sundial-Base,64.28571428571429,23.393412727785645,0.0,7.825935737058823,0.0,0.0
-Toto-1.0,64.28571428571429,25.54731526015246,0.0,33.045400127948724,0.0,0.0
-Stat. Ensemble,36.734693877551024,5.872754086951614,0.0,158.466313377,0.0,28.57142857142857
-AutoARIMA,31.63265306122449,2.7206673781491886,0.0,63.84026180566668,0.0,28.57142857142857
-AutoTheta,28.57142857142857,2.2840445726052927,0.0,2.5900771086666667,0.0,0.0
-Seasonal Naive,26.53061224489796,0.0,0.0,0.18045887173076924,0.0,0.0
-AutoETS,21.428571428571423,-16.790213190879342,0.0,7.459143566346153,0.0,0.0
-Naive,9.183673469387754,-40.74006375897996,0.0,0.17391189775641025,0.0,0.0
-Drift,1.0204081632653061,-55.8521959090168,0.0,0.1784365896153846,0.0,0.0
diff --git a/tables/domain_mobility/leaderboard_SQL.csv b/tables/domain_mobility/leaderboard_SQL.csv
deleted file mode 100644
index cceb194f5d2e6d057c843289f20af746e68afd41..0000000000000000000000000000000000000000
--- a/tables/domain_mobility/leaderboard_SQL.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,96.93877551020408,44.025730182452186,0.0,0.3598705023717949,0.0,0.0
-TimesFM-2.5,91.83673469387756,42.67646308509806,0.0,1.0527405814102564,0.0,0.0
-TiRex,87.75510204081634,42.05186472663197,0.0,0.3347885198142415,0.0,0.0
-TabPFN-TS,69.38775510204081,37.208526302389004,0.0,94.13752358266667,0.0,0.0
-Toto-1.0,66.3265306122449,39.018777793021975,0.0,33.045400127948724,0.0,0.0
-Chronos-Bolt,65.81632653061226,37.28267454930213,0.0,0.2168154292307692,0.0,0.0
-Moirai-2.0,65.81632653061226,37.28267454930213,0.0,2.2480439729721367,1.0,0.0
-Sundial-Base,48.97959183673469,33.55369924549565,0.0,7.825935737058823,0.0,0.0
-AutoARIMA,39.79591836734694,9.230847183253665,0.0,63.84026180566668,0.0,28.57142857142857
-Stat. Ensemble,36.734693877551024,7.230158345242376,0.0,158.466313377,0.0,28.57142857142857
-Seasonal Naive,27.55102040816326,0.0,0.0,0.18045887173076924,0.0,0.0
-AutoTheta,24.489795918367346,-26.74094614085021,0.0,2.5900771086666667,0.0,0.0
-AutoETS,15.306122448979592,-344.79628604120813,0.0,7.459143566346153,0.0,0.0
-Naive,10.204081632653061,-146.71797661038454,0.0,0.17391189775641025,0.0,0.0
-Drift,3.061224489795918,-161.01029312352807,0.0,0.1784365896153846,0.0,0.0
diff --git a/tables/domain_mobility/leaderboard_WAPE.csv b/tables/domain_mobility/leaderboard_WAPE.csv
deleted file mode 100644
index 4b36d23a0364583253f8c3e79d747a2e3635e0af..0000000000000000000000000000000000000000
--- a/tables/domain_mobility/leaderboard_WAPE.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,96.93877551020408,31.42661419654642,0.0,0.3598705023717949,0.0,0.0
-TimesFM-2.5,87.75510204081633,30.13802811893269,0.0,1.0527405814102564,0.0,0.0
-TiRex,80.61224489795919,28.669799374404302,0.0,0.3347885198142415,0.0,0.0
-TabPFN-TS,68.36734693877551,25.6785844710001,0.0,94.13752358266667,0.0,0.0
-Chronos-Bolt,65.81632653061223,25.18849853851497,0.0,0.2168154292307692,0.0,0.0
-Moirai-2.0,65.81632653061223,25.18849853851497,0.0,2.2480439729721367,1.0,0.0
-Toto-1.0,65.3061224489796,25.90099075182256,0.0,33.045400127948724,0.0,0.0
-Sundial-Base,62.24489795918367,23.330206039824308,0.0,7.825935737058823,0.0,0.0
-Stat. Ensemble,36.734693877551024,4.641393336578314,0.0,158.466313377,0.0,28.57142857142857
-AutoARIMA,35.71428571428572,2.3947580894125298,0.0,63.84026180566668,0.0,28.57142857142857
-Seasonal Naive,27.55102040816326,0.0,0.0,0.18045887173076924,0.0,0.0
-AutoTheta,25.510204081632654,0.0437412996646791,0.0,2.5900771086666667,0.0,0.0
-AutoETS,21.428571428571423,-23.08073844288401,0.0,7.459143566346153,0.0,0.0
-Naive,9.183673469387754,-43.56382513496191,0.0,0.17391189775641025,0.0,0.0
-Drift,1.0204081632653061,-58.78908483912755,0.0,0.1784365896153846,0.0,0.0
diff --git a/tables/domain_mobility/leaderboard_WQL.csv b/tables/domain_mobility/leaderboard_WQL.csv
deleted file mode 100644
index 4175c9cd517194a3be14d018d7ed81295c4261ed..0000000000000000000000000000000000000000
--- a/tables/domain_mobility/leaderboard_WQL.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,96.93877551020408,44.54705190137261,0.0,0.3598705023717949,0.0,0.0
-TimesFM-2.5,91.83673469387756,43.233433897648524,0.0,1.0527405814102564,0.0,0.0
-TiRex,84.6938775510204,42.41994460150037,0.0,0.3347885198142415,0.0,0.0
-TabPFN-TS,70.40816326530613,38.56288334540934,0.0,94.13752358266667,0.0,0.0
-Chronos-Bolt,66.83673469387756,37.73183131937476,0.0,0.2168154292307692,0.0,0.0
-Moirai-2.0,66.83673469387756,37.73183131937476,0.0,2.2480439729721367,1.0,0.0
-Toto-1.0,66.3265306122449,39.79490314550572,0.0,33.045400127948724,0.0,0.0
-Sundial-Base,48.97959183673469,34.17893470020018,0.0,7.825935737058823,0.0,0.0
-AutoARIMA,40.81632653061225,9.557478558677035,0.0,63.84026180566668,0.0,28.57142857142857
-Stat. Ensemble,35.71428571428572,5.698092718548208,0.0,158.466313377,0.0,28.57142857142857
-Seasonal Naive,28.57142857142857,0.0,0.0,0.18045887173076924,0.0,0.0
-AutoTheta,23.46938775510204,-35.07795159739386,0.0,2.5900771086666667,0.0,0.0
-AutoETS,15.306122448979592,-351.4556695211341,0.0,7.459143566346153,0.0,0.0
-Naive,10.204081632653061,-144.85036530396843,0.0,0.17391189775641025,0.0,0.0
-Drift,3.061224489795918,-159.03481525283004,0.0,0.1784365896153846,0.0,0.0
diff --git a/tables/domain_mobility/pairwise_MASE.csv b/tables/domain_mobility/pairwise_MASE.csv
deleted file mode 100644
index 579bf81f394c68737063aa6bd2234bffe7831925..0000000000000000000000000000000000000000
--- a/tables/domain_mobility/pairwise_MASE.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TimesFM-2.5,0.571,0.286,0.857,0.017,-0.024,0.061
-Chronos-2,TiRex,0.857,0.571,1.0,0.034,0.009,0.076
-Chronos-2,TabPFN-TS,1.0,1.0,1.0,0.089,0.049,0.126
-Chronos-2,Moirai-2.0,1.0,1.0,1.0,0.08,0.037,0.13
-Chronos-2,Chronos-Bolt,1.0,1.0,1.0,0.08,0.037,0.13
-Chronos-2,Sundial-Base,1.0,1.0,1.0,0.103,0.061,0.146
-Chronos-2,Toto-1.0,1.0,1.0,1.0,0.077,0.03,0.141
-Chronos-2,Stat. Ensemble,1.0,1.0,1.0,0.27,0.176,0.353
-Chronos-2,AutoARIMA,1.0,1.0,1.0,0.294,0.204,0.364
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.297,0.185,0.384
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.313,0.233,0.391
-Chronos-2,AutoETS,1.0,1.0,1.0,0.412,0.237,0.543
-Chronos-2,Naive,1.0,1.0,1.0,0.512,0.402,0.614
-Chronos-2,Drift,1.0,1.0,1.0,0.559,0.451,0.653
-TimesFM-2.5,Chronos-2,0.429,0.143,0.714,-0.018,-0.065,0.024
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TiRex,0.571,0.143,0.857,0.017,-0.021,0.051
-TimesFM-2.5,TabPFN-TS,1.0,1.0,1.0,0.073,0.04,0.109
-TimesFM-2.5,Moirai-2.0,0.857,0.571,1.0,0.064,0.022,0.113
-TimesFM-2.5,Chronos-Bolt,0.857,0.571,1.0,0.064,0.022,0.113
-TimesFM-2.5,Sundial-Base,1.0,1.0,1.0,0.087,0.048,0.127
-TimesFM-2.5,Toto-1.0,0.714,0.286,1.0,0.061,-0.003,0.118
-TimesFM-2.5,Stat. Ensemble,1.0,1.0,1.0,0.257,0.15,0.359
-TimesFM-2.5,AutoARIMA,1.0,1.0,1.0,0.281,0.184,0.367
-TimesFM-2.5,AutoTheta,1.0,1.0,1.0,0.285,0.17,0.391
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.301,0.204,0.39
-TimesFM-2.5,AutoETS,1.0,1.0,1.0,0.401,0.219,0.542
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.503,0.37,0.621
-TimesFM-2.5,Drift,1.0,1.0,1.0,0.551,0.43,0.659
-TiRex,Chronos-2,0.143,0.0,0.429,-0.035,-0.082,-0.009
-TiRex,TimesFM-2.5,0.429,0.143,0.857,-0.017,-0.054,0.02
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,TabPFN-TS,0.857,0.571,1.0,0.057,0.02,0.093
-TiRex,Moirai-2.0,1.0,1.0,1.0,0.047,0.014,0.095
-TiRex,Chronos-Bolt,1.0,1.0,1.0,0.047,0.014,0.095
-TiRex,Sundial-Base,0.857,0.571,1.0,0.071,0.027,0.116
-TiRex,Toto-1.0,0.857,0.571,1.0,0.045,0.016,0.076
-TiRex,Stat. Ensemble,1.0,1.0,1.0,0.244,0.144,0.332
-TiRex,AutoARIMA,1.0,1.0,1.0,0.269,0.179,0.342
-TiRex,AutoTheta,1.0,1.0,1.0,0.272,0.155,0.369
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.289,0.214,0.356
-TiRex,AutoETS,1.0,1.0,1.0,0.391,0.205,0.532
-TiRex,Naive,1.0,1.0,1.0,0.495,0.375,0.603
-TiRex,Drift,1.0,1.0,1.0,0.544,0.435,0.643
-TabPFN-TS,Chronos-2,0.0,0.0,0.0,-0.098,-0.144,-0.051
-TabPFN-TS,TimesFM-2.5,0.0,0.0,0.0,-0.079,-0.122,-0.042
-TabPFN-TS,TiRex,0.143,0.0,0.429,-0.06,-0.102,-0.02
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Moirai-2.0,0.571,0.286,1.0,-0.01,-0.05,0.03
-TabPFN-TS,Chronos-Bolt,0.571,0.286,1.0,-0.01,-0.05,0.03
-TabPFN-TS,Sundial-Base,0.429,0.143,0.714,0.015,-0.02,0.054
-TabPFN-TS,Toto-1.0,0.429,0.143,0.857,-0.013,-0.076,0.044
-TabPFN-TS,Stat. Ensemble,1.0,1.0,1.0,0.199,0.109,0.286
-TabPFN-TS,AutoARIMA,1.0,1.0,1.0,0.225,0.148,0.295
-TabPFN-TS,AutoTheta,1.0,1.0,1.0,0.228,0.128,0.32
-TabPFN-TS,Seasonal Naive,1.0,1.0,1.0,0.246,0.154,0.321
-TabPFN-TS,AutoETS,1.0,1.0,1.0,0.354,0.174,0.502
-TabPFN-TS,Naive,1.0,1.0,1.0,0.464,0.328,0.578
-TabPFN-TS,Drift,1.0,1.0,1.0,0.516,0.398,0.621
-Moirai-2.0,Chronos-2,0.0,0.0,0.0,-0.087,-0.149,-0.038
-Moirai-2.0,TimesFM-2.5,0.143,0.0,0.429,-0.068,-0.127,-0.022
-Moirai-2.0,TiRex,0.0,0.0,0.0,-0.05,-0.105,-0.014
-Moirai-2.0,TabPFN-TS,0.429,0.0,0.714,0.01,-0.031,0.048
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Sundial-Base,0.429,0.0,0.714,0.025,-0.024,0.08
-Moirai-2.0,Toto-1.0,0.571,0.143,0.857,-0.003,-0.069,0.046
-Moirai-2.0,Stat. Ensemble,1.0,1.0,1.0,0.207,0.113,0.293
-Moirai-2.0,AutoARIMA,1.0,1.0,1.0,0.232,0.142,0.307
-Moirai-2.0,AutoTheta,1.0,1.0,1.0,0.236,0.122,0.342
-Moirai-2.0,Seasonal Naive,1.0,1.0,1.0,0.253,0.16,0.33
-Moirai-2.0,AutoETS,1.0,1.0,1.0,0.361,0.168,0.512
-Moirai-2.0,Naive,1.0,1.0,1.0,0.469,0.333,0.589
-Moirai-2.0,Drift,1.0,1.0,1.0,0.521,0.404,0.63
-Chronos-Bolt,Chronos-2,0.0,0.0,0.0,-0.087,-0.149,-0.038
-Chronos-Bolt,TimesFM-2.5,0.143,0.0,0.429,-0.068,-0.127,-0.022
-Chronos-Bolt,TiRex,0.0,0.0,0.0,-0.05,-0.105,-0.014
-Chronos-Bolt,TabPFN-TS,0.429,0.0,0.714,0.01,-0.031,0.048
-Chronos-Bolt,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Sundial-Base,0.429,0.0,0.714,0.025,-0.024,0.08
-Chronos-Bolt,Toto-1.0,0.571,0.143,0.857,-0.003,-0.069,0.046
-Chronos-Bolt,Stat. Ensemble,1.0,1.0,1.0,0.207,0.113,0.293
-Chronos-Bolt,AutoARIMA,1.0,1.0,1.0,0.232,0.142,0.307
-Chronos-Bolt,AutoTheta,1.0,1.0,1.0,0.236,0.122,0.342
-Chronos-Bolt,Seasonal Naive,1.0,1.0,1.0,0.253,0.16,0.33
-Chronos-Bolt,AutoETS,1.0,1.0,1.0,0.361,0.168,0.512
-Chronos-Bolt,Naive,1.0,1.0,1.0,0.469,0.333,0.589
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.521,0.404,0.63
-Sundial-Base,Chronos-2,0.0,0.0,0.0,-0.115,-0.171,-0.065
-Sundial-Base,TimesFM-2.5,0.0,0.0,0.0,-0.096,-0.145,-0.05
-Sundial-Base,TiRex,0.143,0.0,0.429,-0.077,-0.131,-0.027
-Sundial-Base,TabPFN-TS,0.571,0.286,0.857,-0.016,-0.057,0.02
-Sundial-Base,Moirai-2.0,0.571,0.286,1.0,-0.026,-0.087,0.023
-Sundial-Base,Chronos-Bolt,0.571,0.286,1.0,-0.026,-0.087,0.023
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Toto-1.0,0.286,0.0,0.714,-0.029,-0.108,0.041
-Sundial-Base,Stat. Ensemble,0.857,0.571,1.0,0.186,0.072,0.282
-Sundial-Base,AutoARIMA,1.0,1.0,1.0,0.213,0.123,0.291
-Sundial-Base,AutoTheta,1.0,1.0,1.0,0.216,0.123,0.313
-Sundial-Base,Seasonal Naive,1.0,1.0,1.0,0.234,0.136,0.317
-Sundial-Base,AutoETS,1.0,1.0,1.0,0.344,0.18,0.475
-Sundial-Base,Naive,1.0,1.0,1.0,0.456,0.308,0.575
-Sundial-Base,Drift,1.0,1.0,1.0,0.508,0.38,0.616
-Toto-1.0,Chronos-2,0.0,0.0,0.0,-0.084,-0.164,-0.031
-Toto-1.0,TimesFM-2.5,0.286,0.0,0.714,-0.065,-0.134,0.003
-Toto-1.0,TiRex,0.143,0.0,0.429,-0.047,-0.082,-0.016
-Toto-1.0,TabPFN-TS,0.571,0.143,0.857,0.013,-0.046,0.07
-Toto-1.0,Moirai-2.0,0.429,0.143,0.857,0.003,-0.048,0.065
-Toto-1.0,Chronos-Bolt,0.429,0.143,0.857,0.003,-0.048,0.065
-Toto-1.0,Sundial-Base,0.714,0.286,1.0,0.028,-0.043,0.098
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,Stat. Ensemble,0.857,0.571,1.0,0.209,0.098,0.307
-Toto-1.0,AutoARIMA,0.857,0.571,1.0,0.235,0.131,0.313
-Toto-1.0,AutoTheta,0.857,0.571,1.0,0.238,0.103,0.343
-Toto-1.0,Seasonal Naive,1.0,1.0,1.0,0.255,0.188,0.319
-Toto-1.0,AutoETS,0.857,0.571,1.0,0.363,0.156,0.515
-Toto-1.0,Naive,1.0,1.0,1.0,0.471,0.356,0.581
-Toto-1.0,Drift,1.0,1.0,1.0,0.522,0.417,0.623
-Stat. Ensemble,Chronos-2,0.0,0.0,0.0,-0.37,-0.546,-0.213
-Stat. Ensemble,TimesFM-2.5,0.0,0.0,0.0,-0.346,-0.561,-0.177
-Stat. Ensemble,TiRex,0.0,0.0,0.0,-0.323,-0.497,-0.169
-Stat. Ensemble,TabPFN-TS,0.0,0.0,0.0,-0.248,-0.401,-0.122
-Stat. Ensemble,Moirai-2.0,0.0,0.0,0.0,-0.261,-0.415,-0.127
-Stat. Ensemble,Chronos-Bolt,0.0,0.0,0.0,-0.261,-0.415,-0.127
-Stat. Ensemble,Sundial-Base,0.143,0.0,0.429,-0.229,-0.392,-0.077
-Stat. Ensemble,Toto-1.0,0.143,0.0,0.429,-0.264,-0.443,-0.109
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoARIMA,0.571,0.286,0.857,0.032,-0.002,0.079
-Stat. Ensemble,AutoTheta,0.714,0.429,1.0,0.037,-0.085,0.148
-Stat. Ensemble,Seasonal Naive,0.714,0.429,0.929,0.059,-0.038,0.141
-Stat. Ensemble,AutoETS,0.857,0.571,1.0,0.194,0.026,0.393
-Stat. Ensemble,Naive,1.0,1.0,1.0,0.331,0.172,0.461
-Stat. Ensemble,Drift,1.0,1.0,1.0,0.396,0.251,0.517
-AutoARIMA,Chronos-2,0.0,0.0,0.0,-0.416,-0.572,-0.256
-AutoARIMA,TimesFM-2.5,0.0,0.0,0.0,-0.391,-0.581,-0.225
-AutoARIMA,TiRex,0.0,0.0,0.0,-0.368,-0.519,-0.218
-AutoARIMA,TabPFN-TS,0.0,0.0,0.0,-0.29,-0.418,-0.174
-AutoARIMA,Moirai-2.0,0.0,0.0,0.0,-0.303,-0.442,-0.166
-AutoARIMA,Chronos-Bolt,0.0,0.0,0.0,-0.303,-0.442,-0.166
-AutoARIMA,Sundial-Base,0.0,0.0,0.0,-0.27,-0.41,-0.14
-AutoARIMA,Toto-1.0,0.143,0.0,0.429,-0.307,-0.455,-0.15
-AutoARIMA,Stat. Ensemble,0.429,0.143,0.714,-0.033,-0.085,0.002
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoTheta,0.571,0.143,0.857,0.004,-0.104,0.098
-AutoARIMA,Seasonal Naive,0.571,0.214,0.857,0.027,-0.063,0.098
-AutoARIMA,AutoETS,0.714,0.429,1.0,0.167,-0.0,0.353
-AutoARIMA,Naive,1.0,1.0,1.0,0.309,0.141,0.448
-AutoARIMA,Drift,1.0,1.0,1.0,0.376,0.227,0.503
-AutoTheta,Chronos-2,0.0,0.0,0.0,-0.422,-0.624,-0.227
-AutoTheta,TimesFM-2.5,0.0,0.0,0.0,-0.398,-0.643,-0.205
-AutoTheta,TiRex,0.0,0.0,0.0,-0.374,-0.586,-0.184
-AutoTheta,TabPFN-TS,0.0,0.0,0.0,-0.296,-0.47,-0.147
-AutoTheta,Moirai-2.0,0.0,0.0,0.0,-0.309,-0.52,-0.138
-AutoTheta,Chronos-Bolt,0.0,0.0,0.0,-0.309,-0.52,-0.138
-AutoTheta,Sundial-Base,0.0,0.0,0.0,-0.276,-0.456,-0.14
-AutoTheta,Toto-1.0,0.143,0.0,0.429,-0.312,-0.523,-0.115
-AutoTheta,Stat. Ensemble,0.286,0.0,0.571,-0.038,-0.173,0.079
-AutoTheta,AutoARIMA,0.429,0.143,0.857,-0.004,-0.109,0.094
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Seasonal Naive,0.571,0.282,1.0,0.023,-0.109,0.143
-AutoTheta,AutoETS,0.714,0.429,1.0,0.163,0.016,0.312
-AutoTheta,Naive,0.857,0.571,1.0,0.306,0.133,0.424
-AutoTheta,Drift,1.0,1.0,1.0,0.373,0.233,0.477
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-0.456,-0.641,-0.304
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-0.43,-0.639,-0.257
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.406,-0.554,-0.272
-Seasonal Naive,TabPFN-TS,0.0,0.0,0.0,-0.326,-0.474,-0.182
-Seasonal Naive,Moirai-2.0,0.0,0.0,0.0,-0.339,-0.492,-0.191
-Seasonal Naive,Chronos-Bolt,0.0,0.0,0.0,-0.339,-0.492,-0.191
-Seasonal Naive,Sundial-Base,0.0,0.0,0.0,-0.305,-0.465,-0.157
-Seasonal Naive,Toto-1.0,0.0,0.0,0.0,-0.343,-0.468,-0.232
-Seasonal Naive,Stat. Ensemble,0.286,0.071,0.571,-0.062,-0.164,0.036
-Seasonal Naive,AutoARIMA,0.429,0.143,0.786,-0.028,-0.109,0.059
-Seasonal Naive,AutoTheta,0.429,0.0,0.718,-0.023,-0.167,0.098
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,AutoETS,0.571,0.143,0.857,0.144,-0.08,0.347
-Seasonal Naive,Naive,1.0,1.0,1.0,0.289,0.162,0.408
-Seasonal Naive,Drift,1.0,1.0,1.0,0.358,0.233,0.467
-AutoETS,Chronos-2,0.0,0.0,0.0,-0.7,-1.189,-0.31
-AutoETS,TimesFM-2.5,0.0,0.0,0.0,-0.671,-1.186,-0.281
-AutoETS,TiRex,0.0,0.0,0.0,-0.642,-1.135,-0.258
-AutoETS,TabPFN-TS,0.0,0.0,0.0,-0.548,-1.007,-0.211
-AutoETS,Moirai-2.0,0.0,0.0,0.0,-0.564,-1.05,-0.201
-AutoETS,Chronos-Bolt,0.0,0.0,0.0,-0.564,-1.05,-0.201
-AutoETS,Sundial-Base,0.0,0.0,0.0,-0.525,-0.905,-0.219
-AutoETS,Toto-1.0,0.143,0.0,0.429,-0.569,-1.06,-0.185
-AutoETS,Stat. Ensemble,0.143,0.0,0.429,-0.241,-0.648,-0.027
-AutoETS,AutoARIMA,0.286,0.0,0.571,-0.201,-0.545,0.0
-AutoETS,AutoTheta,0.286,0.0,0.571,-0.195,-0.452,-0.016
-AutoETS,Seasonal Naive,0.429,0.143,0.857,-0.168,-0.531,0.074
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Naive,0.857,0.571,1.0,0.17,-0.204,0.396
-AutoETS,Drift,0.857,0.571,1.0,0.251,-0.069,0.449
-Naive,Chronos-2,0.0,0.0,0.0,-1.049,-1.592,-0.672
-Naive,TimesFM-2.5,0.0,0.0,0.0,-1.013,-1.641,-0.586
-Naive,TiRex,0.0,0.0,0.0,-0.979,-1.521,-0.601
-Naive,TabPFN-TS,0.0,0.0,0.0,-0.866,-1.37,-0.488
-Naive,Moirai-2.0,0.0,0.0,0.0,-0.885,-1.435,-0.499
-Naive,Chronos-Bolt,0.0,0.0,0.0,-0.885,-1.435,-0.499
-Naive,Sundial-Base,0.0,0.0,0.0,-0.837,-1.355,-0.444
-Naive,Toto-1.0,0.0,0.0,0.0,-0.89,-1.385,-0.552
-Naive,Stat. Ensemble,0.0,0.0,0.0,-0.495,-0.856,-0.207
-Naive,AutoARIMA,0.0,0.0,0.0,-0.447,-0.811,-0.164
-Naive,AutoTheta,0.143,0.0,0.429,-0.44,-0.736,-0.153
-Naive,Seasonal Naive,0.0,0.0,0.0,-0.407,-0.689,-0.193
-Naive,AutoETS,0.143,0.0,0.429,-0.205,-0.655,0.169
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,1.0,1.0,1.0,0.097,0.063,0.13
-Drift,Chronos-2,0.0,0.0,0.0,-1.269,-1.88,-0.82
-Drift,TimesFM-2.5,0.0,0.0,0.0,-1.229,-1.932,-0.755
-Drift,TiRex,0.0,0.0,0.0,-1.191,-1.804,-0.769
-Drift,TabPFN-TS,0.0,0.0,0.0,-1.066,-1.636,-0.662
-Drift,Moirai-2.0,0.0,0.0,0.0,-1.087,-1.702,-0.678
-Drift,Chronos-Bolt,0.0,0.0,0.0,-1.087,-1.702,-0.678
-Drift,Sundial-Base,0.0,0.0,0.0,-1.034,-1.602,-0.613
-Drift,Toto-1.0,0.0,0.0,0.0,-1.093,-1.654,-0.714
-Drift,Stat. Ensemble,0.0,0.0,0.0,-0.656,-1.07,-0.335
-Drift,AutoARIMA,0.0,0.0,0.0,-0.602,-1.01,-0.294
-Drift,AutoTheta,0.0,0.0,0.0,-0.595,-0.913,-0.303
-Drift,Seasonal Naive,0.0,0.0,0.0,-0.559,-0.877,-0.304
-Drift,AutoETS,0.143,0.0,0.429,-0.334,-0.816,0.065
-Drift,Naive,0.0,0.0,0.0,-0.107,-0.149,-0.068
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/domain_mobility/pairwise_SQL.csv b/tables/domain_mobility/pairwise_SQL.csv
deleted file mode 100644
index 42171efdf26c4d5ed45583c455a0621643dd36ce..0000000000000000000000000000000000000000
--- a/tables/domain_mobility/pairwise_SQL.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TimesFM-2.5,0.571,0.286,0.857,0.024,-0.013,0.065
-Chronos-2,TiRex,1.0,1.0,1.0,0.034,0.012,0.07
-Chronos-2,TabPFN-TS,1.0,1.0,1.0,0.109,0.062,0.153
-Chronos-2,Toto-1.0,1.0,1.0,1.0,0.082,0.044,0.138
-Chronos-2,Chronos-Bolt,1.0,1.0,1.0,0.108,0.053,0.172
-Chronos-2,Moirai-2.0,1.0,1.0,1.0,0.108,0.053,0.172
-Chronos-2,Sundial-Base,1.0,1.0,1.0,0.158,0.126,0.193
-Chronos-2,AutoARIMA,1.0,1.0,1.0,0.383,0.26,0.478
-Chronos-2,Stat. Ensemble,1.0,1.0,1.0,0.397,0.273,0.489
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.44,0.347,0.521
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.558,0.343,0.711
-Chronos-2,AutoETS,1.0,1.0,1.0,0.86,0.51,0.958
-Chronos-2,Naive,1.0,1.0,1.0,0.773,0.719,0.816
-Chronos-2,Drift,1.0,1.0,1.0,0.786,0.732,0.829
-TimesFM-2.5,Chronos-2,0.429,0.143,0.714,-0.024,-0.069,0.013
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TiRex,0.571,0.143,0.857,0.011,-0.028,0.042
-TimesFM-2.5,TabPFN-TS,1.0,1.0,1.0,0.087,0.05,0.119
-TimesFM-2.5,Toto-1.0,0.857,0.571,1.0,0.06,0.005,0.11
-TimesFM-2.5,Chronos-Bolt,1.0,1.0,1.0,0.086,0.044,0.139
-TimesFM-2.5,Moirai-2.0,1.0,1.0,1.0,0.086,0.044,0.139
-TimesFM-2.5,Sundial-Base,1.0,1.0,1.0,0.137,0.109,0.169
-TimesFM-2.5,AutoARIMA,1.0,1.0,1.0,0.368,0.245,0.471
-TimesFM-2.5,Stat. Ensemble,1.0,1.0,1.0,0.382,0.255,0.481
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.427,0.314,0.522
-TimesFM-2.5,AutoTheta,1.0,1.0,1.0,0.548,0.33,0.709
-TimesFM-2.5,AutoETS,1.0,1.0,1.0,0.856,0.492,0.957
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.768,0.709,0.815
-TimesFM-2.5,Drift,1.0,1.0,1.0,0.78,0.724,0.826
-TiRex,Chronos-2,0.0,0.0,0.0,-0.035,-0.076,-0.012
-TiRex,TimesFM-2.5,0.429,0.143,0.857,-0.011,-0.044,0.027
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,TabPFN-TS,0.857,0.571,1.0,0.077,0.027,0.129
-TiRex,Toto-1.0,1.0,1.0,1.0,0.05,0.03,0.074
-TiRex,Chronos-Bolt,1.0,1.0,1.0,0.076,0.024,0.15
-TiRex,Moirai-2.0,1.0,1.0,1.0,0.076,0.024,0.15
-TiRex,Sundial-Base,1.0,1.0,1.0,0.128,0.09,0.167
-TiRex,AutoARIMA,1.0,1.0,1.0,0.362,0.233,0.466
-TiRex,Stat. Ensemble,1.0,1.0,1.0,0.375,0.24,0.476
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.421,0.325,0.506
-TiRex,AutoTheta,1.0,1.0,1.0,0.543,0.317,0.701
-TiRex,AutoETS,1.0,1.0,1.0,0.855,0.486,0.957
-TiRex,Naive,1.0,1.0,1.0,0.765,0.704,0.812
-TiRex,Drift,1.0,1.0,1.0,0.778,0.717,0.824
-TabPFN-TS,Chronos-2,0.0,0.0,0.0,-0.122,-0.181,-0.067
-TabPFN-TS,TimesFM-2.5,0.0,0.0,0.0,-0.095,-0.135,-0.052
-TabPFN-TS,TiRex,0.143,0.0,0.429,-0.084,-0.147,-0.028
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Toto-1.0,0.429,0.143,0.857,-0.03,-0.107,0.041
-TabPFN-TS,Chronos-Bolt,0.571,0.286,1.0,-0.001,-0.064,0.062
-TabPFN-TS,Moirai-2.0,0.571,0.286,1.0,-0.001,-0.064,0.062
-TabPFN-TS,Sundial-Base,1.0,1.0,1.0,0.055,0.032,0.082
-TabPFN-TS,AutoARIMA,1.0,1.0,1.0,0.308,0.199,0.416
-TabPFN-TS,Stat. Ensemble,1.0,1.0,1.0,0.323,0.209,0.425
-TabPFN-TS,Seasonal Naive,1.0,1.0,1.0,0.372,0.269,0.467
-TabPFN-TS,AutoTheta,1.0,1.0,1.0,0.505,0.278,0.671
-TabPFN-TS,AutoETS,1.0,1.0,1.0,0.848,0.463,0.955
-TabPFN-TS,Naive,1.0,1.0,1.0,0.745,0.691,0.79
-TabPFN-TS,Drift,1.0,1.0,1.0,0.759,0.706,0.803
-Toto-1.0,Chronos-2,0.0,0.0,0.0,-0.089,-0.16,-0.046
-Toto-1.0,TimesFM-2.5,0.143,0.0,0.429,-0.064,-0.124,-0.005
-Toto-1.0,TiRex,0.0,0.0,0.0,-0.052,-0.08,-0.031
-Toto-1.0,TabPFN-TS,0.571,0.143,0.857,0.029,-0.042,0.096
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,Chronos-Bolt,0.571,0.143,0.861,0.028,-0.04,0.11
-Toto-1.0,Moirai-2.0,0.571,0.143,0.861,0.028,-0.04,0.11
-Toto-1.0,Sundial-Base,0.857,0.571,1.0,0.082,0.022,0.136
-Toto-1.0,AutoARIMA,0.857,0.571,1.0,0.328,0.187,0.44
-Toto-1.0,Stat. Ensemble,0.857,0.571,1.0,0.343,0.196,0.453
-Toto-1.0,Seasonal Naive,1.0,1.0,1.0,0.39,0.294,0.473
-Toto-1.0,AutoTheta,1.0,1.0,1.0,0.519,0.277,0.683
-Toto-1.0,AutoETS,0.857,0.571,1.0,0.849,0.443,0.955
-Toto-1.0,Naive,1.0,1.0,1.0,0.753,0.683,0.804
-Toto-1.0,Drift,1.0,1.0,1.0,0.766,0.697,0.817
-Chronos-Bolt,Chronos-2,0.0,0.0,0.0,-0.12,-0.208,-0.056
-Chronos-Bolt,TimesFM-2.5,0.0,0.0,0.0,-0.094,-0.161,-0.046
-Chronos-Bolt,TiRex,0.0,0.0,0.0,-0.082,-0.176,-0.025
-Chronos-Bolt,TabPFN-TS,0.429,0.0,0.714,0.001,-0.066,0.06
-Chronos-Bolt,Toto-1.0,0.429,0.139,0.857,-0.028,-0.123,0.039
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Sundial-Base,0.857,0.571,1.0,0.056,-0.0,0.102
-Chronos-Bolt,AutoARIMA,1.0,1.0,1.0,0.309,0.196,0.404
-Chronos-Bolt,Stat. Ensemble,1.0,1.0,1.0,0.324,0.204,0.416
-Chronos-Bolt,Seasonal Naive,1.0,1.0,1.0,0.373,0.248,0.474
-Chronos-Bolt,AutoTheta,1.0,1.0,1.0,0.505,0.282,0.672
-Chronos-Bolt,AutoETS,1.0,1.0,1.0,0.845,0.437,0.955
-Chronos-Bolt,Naive,1.0,1.0,1.0,0.746,0.678,0.799
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.76,0.695,0.81
-Moirai-2.0,Chronos-2,0.0,0.0,0.0,-0.12,-0.208,-0.056
-Moirai-2.0,TimesFM-2.5,0.0,0.0,0.0,-0.094,-0.161,-0.046
-Moirai-2.0,TiRex,0.0,0.0,0.0,-0.082,-0.176,-0.025
-Moirai-2.0,TabPFN-TS,0.429,0.0,0.714,0.001,-0.066,0.06
-Moirai-2.0,Toto-1.0,0.429,0.139,0.857,-0.028,-0.123,0.039
-Moirai-2.0,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Sundial-Base,0.857,0.571,1.0,0.056,-0.0,0.102
-Moirai-2.0,AutoARIMA,1.0,1.0,1.0,0.309,0.196,0.404
-Moirai-2.0,Stat. Ensemble,1.0,1.0,1.0,0.324,0.204,0.416
-Moirai-2.0,Seasonal Naive,1.0,1.0,1.0,0.373,0.248,0.474
-Moirai-2.0,AutoTheta,1.0,1.0,1.0,0.505,0.282,0.672
-Moirai-2.0,AutoETS,1.0,1.0,1.0,0.845,0.437,0.955
-Moirai-2.0,Naive,1.0,1.0,1.0,0.746,0.678,0.799
-Moirai-2.0,Drift,1.0,1.0,1.0,0.76,0.695,0.81
-Sundial-Base,Chronos-2,0.0,0.0,0.0,-0.187,-0.24,-0.145
-Sundial-Base,TimesFM-2.5,0.0,0.0,0.0,-0.159,-0.203,-0.122
-Sundial-Base,TiRex,0.0,0.0,0.0,-0.147,-0.2,-0.098
-Sundial-Base,TabPFN-TS,0.0,0.0,0.0,-0.058,-0.089,-0.033
-Sundial-Base,Toto-1.0,0.143,0.0,0.429,-0.09,-0.158,-0.022
-Sundial-Base,Chronos-Bolt,0.143,0.0,0.429,-0.059,-0.113,0.0
-Sundial-Base,Moirai-2.0,0.143,0.0,0.429,-0.059,-0.113,0.0
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,AutoARIMA,0.857,0.571,1.0,0.268,0.146,0.375
-Sundial-Base,Stat. Ensemble,0.857,0.571,1.0,0.284,0.156,0.39
-Sundial-Base,Seasonal Naive,1.0,1.0,1.0,0.336,0.229,0.428
-Sundial-Base,AutoTheta,0.857,0.571,1.0,0.476,0.241,0.651
-Sundial-Base,AutoETS,0.857,0.571,1.0,0.84,0.419,0.954
-Sundial-Base,Naive,1.0,1.0,1.0,0.731,0.671,0.779
-Sundial-Base,Drift,1.0,1.0,1.0,0.745,0.688,0.793
-AutoARIMA,Chronos-2,0.0,0.0,0.0,-0.622,-0.916,-0.35
-AutoARIMA,TimesFM-2.5,0.0,0.0,0.0,-0.583,-0.889,-0.325
-AutoARIMA,TiRex,0.0,0.0,0.0,-0.566,-0.871,-0.303
-AutoARIMA,TabPFN-TS,0.0,0.0,0.0,-0.446,-0.712,-0.248
-AutoARIMA,Toto-1.0,0.143,0.0,0.429,-0.488,-0.784,-0.23
-AutoARIMA,Chronos-Bolt,0.0,0.0,0.0,-0.447,-0.678,-0.244
-AutoARIMA,Moirai-2.0,0.0,0.0,0.0,-0.447,-0.678,-0.244
-AutoARIMA,Sundial-Base,0.143,0.0,0.429,-0.366,-0.6,-0.171
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,Stat. Ensemble,0.714,0.429,0.929,0.022,0.004,0.038
-AutoARIMA,Seasonal Naive,0.714,0.429,0.929,0.092,-0.059,0.197
-AutoARIMA,AutoTheta,0.857,0.571,1.0,0.284,0.084,0.465
-AutoARIMA,AutoETS,1.0,1.0,1.0,0.789,0.253,0.937
-AutoARIMA,Naive,1.0,1.0,1.0,0.632,0.558,0.691
-AutoARIMA,Drift,1.0,1.0,1.0,0.652,0.58,0.71
-Stat. Ensemble,Chronos-2,0.0,0.0,0.0,-0.657,-0.956,-0.376
-Stat. Ensemble,TimesFM-2.5,0.0,0.0,0.0,-0.618,-0.927,-0.342
-Stat. Ensemble,TiRex,0.0,0.0,0.0,-0.601,-0.908,-0.316
-Stat. Ensemble,TabPFN-TS,0.0,0.0,0.0,-0.477,-0.74,-0.265
-Stat. Ensemble,Toto-1.0,0.143,0.0,0.429,-0.521,-0.829,-0.243
-Stat. Ensemble,Chronos-Bolt,0.0,0.0,0.0,-0.479,-0.713,-0.256
-Stat. Ensemble,Moirai-2.0,0.0,0.0,0.0,-0.479,-0.713,-0.256
-Stat. Ensemble,Sundial-Base,0.143,0.0,0.429,-0.396,-0.639,-0.185
-Stat. Ensemble,AutoARIMA,0.286,0.071,0.571,-0.022,-0.039,-0.004
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,Seasonal Naive,0.714,0.429,0.929,0.072,-0.096,0.186
-Stat. Ensemble,AutoTheta,0.857,0.571,1.0,0.268,0.067,0.446
-Stat. Ensemble,AutoETS,1.0,1.0,1.0,0.786,0.245,0.936
-Stat. Ensemble,Naive,1.0,1.0,1.0,0.624,0.549,0.68
-Stat. Ensemble,Drift,1.0,1.0,1.0,0.645,0.572,0.701
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-0.787,-1.087,-0.531
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-0.744,-1.092,-0.458
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.726,-1.023,-0.482
-Seasonal Naive,TabPFN-TS,0.0,0.0,0.0,-0.593,-0.876,-0.368
-Seasonal Naive,Toto-1.0,0.0,0.0,0.0,-0.64,-0.896,-0.416
-Seasonal Naive,Chronos-Bolt,0.0,0.0,0.0,-0.594,-0.902,-0.329
-Seasonal Naive,Moirai-2.0,0.0,0.0,0.0,-0.594,-0.902,-0.329
-Seasonal Naive,Sundial-Base,0.0,0.0,0.0,-0.505,-0.749,-0.296
-Seasonal Naive,AutoARIMA,0.286,0.071,0.571,-0.102,-0.245,0.056
-Seasonal Naive,Stat. Ensemble,0.286,0.071,0.571,-0.078,-0.228,0.088
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,AutoTheta,0.571,0.143,0.857,0.211,-0.037,0.4
-Seasonal Naive,AutoETS,0.714,0.286,1.0,0.775,0.199,0.936
-Seasonal Naive,Naive,1.0,1.0,1.0,0.595,0.537,0.639
-Seasonal Naive,Drift,1.0,1.0,1.0,0.617,0.555,0.664
-AutoTheta,Chronos-2,0.0,0.0,0.0,-1.264,-2.458,-0.521
-AutoTheta,TimesFM-2.5,0.0,0.0,0.0,-1.211,-2.434,-0.492
-AutoTheta,TiRex,0.0,0.0,0.0,-1.187,-2.346,-0.464
-AutoTheta,TabPFN-TS,0.0,0.0,0.0,-1.018,-2.041,-0.385
-AutoTheta,Toto-1.0,0.0,0.0,0.0,-1.078,-2.15,-0.384
-AutoTheta,Chronos-Bolt,0.0,0.0,0.0,-1.021,-2.051,-0.393
-AutoTheta,Moirai-2.0,0.0,0.0,0.0,-1.021,-2.051,-0.393
-AutoTheta,Sundial-Base,0.143,0.0,0.429,-0.907,-1.864,-0.318
-AutoTheta,AutoARIMA,0.143,0.0,0.429,-0.396,-0.868,-0.091
-AutoTheta,Stat. Ensemble,0.143,0.0,0.429,-0.366,-0.806,-0.072
-AutoTheta,Seasonal Naive,0.429,0.143,0.857,-0.267,-0.667,0.036
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,AutoETS,0.571,0.143,0.857,0.722,0.013,0.91
-AutoTheta,Naive,1.0,1.0,1.0,0.486,0.336,0.597
-AutoTheta,Drift,1.0,1.0,1.0,0.514,0.375,0.62
-AutoETS,Chronos-2,0.0,0.0,0.0,-6.136,-22.624,-1.041
-AutoETS,TimesFM-2.5,0.0,0.0,0.0,-5.961,-22.389,-0.969
-AutoETS,TiRex,0.0,0.0,0.0,-5.913,-22.04,-0.946
-AutoETS,TabPFN-TS,0.0,0.0,0.0,-5.568,-21.334,-0.862
-AutoETS,Toto-1.0,0.143,0.0,0.429,-5.605,-21.234,-0.797
-AutoETS,Chronos-Bolt,0.0,0.0,0.0,-5.44,-21.318,-0.776
-AutoETS,Moirai-2.0,0.0,0.0,0.0,-5.44,-21.318,-0.776
-AutoETS,Sundial-Base,0.143,0.0,0.429,-5.248,-20.643,-0.722
-AutoETS,AutoARIMA,0.0,0.0,0.0,-3.735,-14.953,-0.339
-AutoETS,Stat. Ensemble,0.0,0.0,0.0,-3.663,-14.613,-0.324
-AutoETS,Seasonal Naive,0.286,0.0,0.714,-3.448,-14.656,-0.248
-AutoETS,AutoTheta,0.429,0.143,0.857,-2.591,-10.089,-0.013
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Naive,0.571,0.286,1.0,-1.129,-7.081,0.442
-AutoETS,Drift,0.571,0.286,1.0,-1.041,-6.801,0.465
-Naive,Chronos-2,0.0,0.0,0.0,-3.408,-4.434,-2.563
-Naive,TimesFM-2.5,0.0,0.0,0.0,-3.304,-4.393,-2.438
-Naive,TiRex,0.0,0.0,0.0,-3.258,-4.322,-2.38
-Naive,TabPFN-TS,0.0,0.0,0.0,-2.929,-3.762,-2.238
-Naive,Toto-1.0,0.0,0.0,0.0,-3.046,-4.115,-2.158
-Naive,Chronos-Bolt,0.0,0.0,0.0,-2.934,-3.963,-2.108
-Naive,Moirai-2.0,0.0,0.0,0.0,-2.934,-3.963,-2.108
-Naive,Sundial-Base,0.0,0.0,0.0,-2.713,-3.518,-2.044
-Naive,AutoARIMA,0.0,0.0,0.0,-1.718,-2.232,-1.263
-Naive,Stat. Ensemble,0.0,0.0,0.0,-1.659,-2.123,-1.216
-Naive,Seasonal Naive,0.0,0.0,0.0,-1.467,-1.772,-1.16
-Naive,AutoTheta,0.0,0.0,0.0,-0.947,-1.479,-0.505
-Naive,AutoETS,0.429,0.0,0.714,0.53,-0.793,0.876
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,1.0,1.0,1.0,0.055,0.037,0.073
-Drift,Chronos-2,0.0,0.0,0.0,-3.663,-4.836,-2.73
-Drift,TimesFM-2.5,0.0,0.0,0.0,-3.553,-4.74,-2.617
-Drift,TiRex,0.0,0.0,0.0,-3.504,-4.692,-2.529
-Drift,TabPFN-TS,0.0,0.0,0.0,-3.157,-4.067,-2.401
-Drift,Toto-1.0,0.0,0.0,0.0,-3.28,-4.461,-2.302
-Drift,Chronos-Bolt,0.0,0.0,0.0,-3.162,-4.265,-2.276
-Drift,Moirai-2.0,0.0,0.0,0.0,-3.162,-4.265,-2.276
-Drift,Sundial-Base,0.0,0.0,0.0,-2.928,-3.827,-2.2
-Drift,AutoARIMA,0.0,0.0,0.0,-1.876,-2.448,-1.382
-Drift,Stat. Ensemble,0.0,0.0,0.0,-1.814,-2.34,-1.336
-Drift,Seasonal Naive,0.0,0.0,0.0,-1.61,-1.975,-1.248
-Drift,AutoTheta,0.0,0.0,0.0,-1.059,-1.629,-0.6
-Drift,AutoETS,0.429,0.0,0.714,0.51,-0.87,0.872
-Drift,Naive,0.0,0.0,0.0,-0.058,-0.079,-0.038
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/domain_mobility/pairwise_WAPE.csv b/tables/domain_mobility/pairwise_WAPE.csv
deleted file mode 100644
index 7b073f0bd9bbbaf6cdbe78e76ec2d1b42f4fbd3a..0000000000000000000000000000000000000000
--- a/tables/domain_mobility/pairwise_WAPE.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TimesFM-2.5,0.571,0.286,0.857,0.018,-0.024,0.065
-Chronos-2,TiRex,1.0,1.0,1.0,0.039,0.011,0.084
-Chronos-2,TabPFN-TS,1.0,1.0,1.0,0.077,0.047,0.108
-Chronos-2,Moirai-2.0,1.0,1.0,1.0,0.083,0.038,0.134
-Chronos-2,Chronos-Bolt,1.0,1.0,1.0,0.083,0.038,0.134
-Chronos-2,Toto-1.0,1.0,1.0,1.0,0.075,0.03,0.134
-Chronos-2,Sundial-Base,1.0,1.0,1.0,0.106,0.06,0.154
-Chronos-2,Stat. Ensemble,1.0,1.0,1.0,0.281,0.182,0.366
-Chronos-2,AutoARIMA,1.0,1.0,1.0,0.297,0.206,0.369
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.314,0.232,0.391
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.314,0.201,0.401
-Chronos-2,AutoETS,1.0,1.0,1.0,0.443,0.261,0.591
-Chronos-2,Naive,1.0,1.0,1.0,0.522,0.402,0.632
-Chronos-2,Drift,1.0,1.0,1.0,0.568,0.454,0.667
-TimesFM-2.5,Chronos-2,0.429,0.143,0.714,-0.019,-0.069,0.024
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TiRex,0.571,0.143,0.857,0.021,-0.017,0.056
-TimesFM-2.5,TabPFN-TS,0.857,0.571,1.0,0.06,0.024,0.095
-TimesFM-2.5,Moirai-2.0,0.857,0.571,1.0,0.066,0.024,0.118
-TimesFM-2.5,Chronos-Bolt,0.857,0.571,1.0,0.066,0.024,0.118
-TimesFM-2.5,Toto-1.0,0.714,0.286,1.0,0.057,-0.002,0.112
-TimesFM-2.5,Sundial-Base,1.0,1.0,1.0,0.089,0.047,0.134
-TimesFM-2.5,Stat. Ensemble,1.0,1.0,1.0,0.267,0.157,0.371
-TimesFM-2.5,AutoARIMA,1.0,1.0,1.0,0.284,0.184,0.374
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.301,0.204,0.392
-TimesFM-2.5,AutoTheta,1.0,1.0,1.0,0.301,0.189,0.401
-TimesFM-2.5,AutoETS,1.0,1.0,1.0,0.432,0.239,0.579
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.513,0.375,0.635
-TimesFM-2.5,Drift,1.0,1.0,1.0,0.56,0.431,0.67
-TiRex,Chronos-2,0.0,0.0,0.0,-0.04,-0.091,-0.011
-TiRex,TimesFM-2.5,0.429,0.143,0.857,-0.021,-0.059,0.016
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,TabPFN-TS,0.714,0.286,1.0,0.04,-0.005,0.083
-TiRex,Moirai-2.0,0.714,0.429,1.0,0.047,0.006,0.101
-TiRex,Chronos-Bolt,0.714,0.429,1.0,0.047,0.006,0.101
-TiRex,Toto-1.0,0.857,0.571,1.0,0.037,0.013,0.064
-TiRex,Sundial-Base,0.857,0.571,1.0,0.07,0.022,0.12
-TiRex,Stat. Ensemble,1.0,1.0,1.0,0.252,0.153,0.343
-TiRex,AutoARIMA,1.0,1.0,1.0,0.269,0.176,0.345
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.287,0.21,0.357
-TiRex,AutoTheta,1.0,1.0,1.0,0.286,0.173,0.377
-TiRex,AutoETS,1.0,1.0,1.0,0.42,0.225,0.575
-TiRex,Naive,1.0,1.0,1.0,0.503,0.378,0.619
-TiRex,Drift,1.0,1.0,1.0,0.551,0.436,0.656
-TabPFN-TS,Chronos-2,0.0,0.0,0.0,-0.084,-0.12,-0.049
-TabPFN-TS,TimesFM-2.5,0.143,0.0,0.429,-0.064,-0.105,-0.024
-TabPFN-TS,TiRex,0.286,0.0,0.714,-0.042,-0.09,0.005
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Moirai-2.0,0.571,0.286,1.0,0.007,-0.034,0.048
-TabPFN-TS,Chronos-Bolt,0.571,0.286,1.0,0.007,-0.034,0.048
-TabPFN-TS,Toto-1.0,0.429,0.143,0.857,-0.003,-0.074,0.064
-TabPFN-TS,Sundial-Base,0.571,0.286,0.857,0.031,-0.004,0.071
-TabPFN-TS,Stat. Ensemble,1.0,1.0,1.0,0.221,0.126,0.307
-TabPFN-TS,AutoARIMA,1.0,1.0,1.0,0.239,0.155,0.311
-TabPFN-TS,Seasonal Naive,1.0,1.0,1.0,0.257,0.158,0.338
-TabPFN-TS,AutoTheta,1.0,1.0,1.0,0.256,0.161,0.341
-TabPFN-TS,AutoETS,1.0,1.0,1.0,0.396,0.208,0.548
-TabPFN-TS,Naive,1.0,1.0,1.0,0.482,0.34,0.599
-TabPFN-TS,Drift,1.0,1.0,1.0,0.532,0.409,0.638
-Moirai-2.0,Chronos-2,0.0,0.0,0.0,-0.091,-0.155,-0.04
-Moirai-2.0,TimesFM-2.5,0.143,0.0,0.429,-0.071,-0.134,-0.025
-Moirai-2.0,TiRex,0.286,0.0,0.571,-0.049,-0.112,-0.006
-Moirai-2.0,TabPFN-TS,0.429,0.0,0.714,-0.007,-0.051,0.033
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Toto-1.0,0.571,0.143,0.857,-0.01,-0.082,0.042
-Moirai-2.0,Sundial-Base,0.429,0.0,0.714,0.024,-0.026,0.082
-Moirai-2.0,Stat. Ensemble,1.0,1.0,1.0,0.215,0.121,0.303
-Moirai-2.0,AutoARIMA,1.0,1.0,1.0,0.234,0.145,0.312
-Moirai-2.0,Seasonal Naive,0.857,0.571,1.0,0.252,0.148,0.333
-Moirai-2.0,AutoTheta,1.0,1.0,1.0,0.252,0.14,0.351
-Moirai-2.0,AutoETS,1.0,1.0,1.0,0.392,0.19,0.557
-Moirai-2.0,Naive,1.0,1.0,1.0,0.479,0.328,0.604
-Moirai-2.0,Drift,1.0,1.0,1.0,0.529,0.406,0.64
-Chronos-Bolt,Chronos-2,0.0,0.0,0.0,-0.091,-0.155,-0.04
-Chronos-Bolt,TimesFM-2.5,0.143,0.0,0.429,-0.071,-0.134,-0.025
-Chronos-Bolt,TiRex,0.286,0.0,0.571,-0.049,-0.112,-0.006
-Chronos-Bolt,TabPFN-TS,0.429,0.0,0.714,-0.007,-0.051,0.033
-Chronos-Bolt,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Toto-1.0,0.571,0.143,0.857,-0.01,-0.082,0.042
-Chronos-Bolt,Sundial-Base,0.429,0.0,0.714,0.024,-0.026,0.082
-Chronos-Bolt,Stat. Ensemble,1.0,1.0,1.0,0.215,0.121,0.303
-Chronos-Bolt,AutoARIMA,1.0,1.0,1.0,0.234,0.145,0.312
-Chronos-Bolt,Seasonal Naive,0.857,0.571,1.0,0.252,0.148,0.333
-Chronos-Bolt,AutoTheta,1.0,1.0,1.0,0.252,0.14,0.351
-Chronos-Bolt,AutoETS,1.0,1.0,1.0,0.392,0.19,0.557
-Chronos-Bolt,Naive,1.0,1.0,1.0,0.479,0.328,0.604
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.529,0.406,0.64
-Toto-1.0,Chronos-2,0.0,0.0,0.0,-0.081,-0.155,-0.031
-Toto-1.0,TimesFM-2.5,0.286,0.0,0.714,-0.061,-0.126,0.002
-Toto-1.0,TiRex,0.143,0.0,0.429,-0.039,-0.068,-0.013
-Toto-1.0,TabPFN-TS,0.571,0.143,0.857,0.003,-0.068,0.069
-Toto-1.0,Moirai-2.0,0.429,0.143,0.857,0.01,-0.044,0.076
-Toto-1.0,Chronos-Bolt,0.429,0.143,0.857,0.01,-0.044,0.076
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,Sundial-Base,0.714,0.286,1.0,0.034,-0.037,0.105
-Toto-1.0,Stat. Ensemble,0.857,0.571,1.0,0.223,0.115,0.32
-Toto-1.0,AutoARIMA,0.857,0.571,1.0,0.241,0.135,0.323
-Toto-1.0,Seasonal Naive,1.0,1.0,1.0,0.259,0.186,0.327
-Toto-1.0,AutoTheta,1.0,1.0,1.0,0.259,0.134,0.355
-Toto-1.0,AutoETS,0.857,0.571,1.0,0.398,0.183,0.558
-Toto-1.0,Naive,1.0,1.0,1.0,0.484,0.361,0.601
-Toto-1.0,Drift,1.0,1.0,1.0,0.533,0.424,0.639
-Sundial-Base,Chronos-2,0.0,0.0,0.0,-0.118,-0.182,-0.064
-Sundial-Base,TimesFM-2.5,0.0,0.0,0.0,-0.097,-0.155,-0.049
-Sundial-Base,TiRex,0.143,0.0,0.429,-0.075,-0.137,-0.022
-Sundial-Base,TabPFN-TS,0.429,0.143,0.714,-0.032,-0.076,0.004
-Sundial-Base,Moirai-2.0,0.571,0.286,1.0,-0.025,-0.089,0.026
-Sundial-Base,Chronos-Bolt,0.571,0.286,1.0,-0.025,-0.089,0.026
-Sundial-Base,Toto-1.0,0.286,0.0,0.714,-0.035,-0.117,0.036
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Stat. Ensemble,0.857,0.571,1.0,0.196,0.075,0.293
-Sundial-Base,AutoARIMA,0.857,0.571,1.0,0.214,0.116,0.296
-Sundial-Base,Seasonal Naive,1.0,1.0,1.0,0.233,0.129,0.32
-Sundial-Base,AutoTheta,1.0,1.0,1.0,0.233,0.138,0.322
-Sundial-Base,AutoETS,1.0,1.0,1.0,0.377,0.2,0.517
-Sundial-Base,Naive,1.0,1.0,1.0,0.466,0.307,0.593
-Sundial-Base,Drift,1.0,1.0,1.0,0.517,0.382,0.63
-Stat. Ensemble,Chronos-2,0.0,0.0,0.0,-0.391,-0.576,-0.223
-Stat. Ensemble,TimesFM-2.5,0.0,0.0,0.0,-0.365,-0.59,-0.186
-Stat. Ensemble,TiRex,0.0,0.0,0.0,-0.337,-0.521,-0.181
-Stat. Ensemble,TabPFN-TS,0.0,0.0,0.0,-0.283,-0.442,-0.144
-Stat. Ensemble,Moirai-2.0,0.0,0.0,0.0,-0.275,-0.434,-0.138
-Stat. Ensemble,Chronos-Bolt,0.0,0.0,0.0,-0.275,-0.434,-0.138
-Stat. Ensemble,Toto-1.0,0.143,0.0,0.429,-0.287,-0.47,-0.13
-Stat. Ensemble,Sundial-Base,0.143,0.0,0.429,-0.244,-0.415,-0.081
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoARIMA,0.571,0.286,0.857,0.023,-0.003,0.057
-Stat. Ensemble,Seasonal Naive,0.714,0.429,0.929,0.046,-0.053,0.122
-Stat. Ensemble,AutoTheta,0.714,0.429,1.0,0.046,-0.075,0.154
-Stat. Ensemble,AutoETS,0.857,0.571,1.0,0.225,0.031,0.454
-Stat. Ensemble,Naive,1.0,1.0,1.0,0.336,0.169,0.472
-Stat. Ensemble,Drift,1.0,1.0,1.0,0.399,0.251,0.523
-AutoARIMA,Chronos-2,0.0,0.0,0.0,-0.423,-0.586,-0.259
-AutoARIMA,TimesFM-2.5,0.0,0.0,0.0,-0.397,-0.599,-0.225
-AutoARIMA,TiRex,0.0,0.0,0.0,-0.368,-0.527,-0.214
-AutoARIMA,TabPFN-TS,0.0,0.0,0.0,-0.313,-0.452,-0.183
-AutoARIMA,Moirai-2.0,0.0,0.0,0.0,-0.305,-0.453,-0.17
-AutoARIMA,Chronos-Bolt,0.0,0.0,0.0,-0.305,-0.453,-0.17
-AutoARIMA,Toto-1.0,0.143,0.0,0.429,-0.317,-0.478,-0.156
-AutoARIMA,Sundial-Base,0.143,0.0,0.429,-0.273,-0.421,-0.131
-AutoARIMA,Stat. Ensemble,0.429,0.143,0.714,-0.024,-0.06,0.003
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,Seasonal Naive,0.714,0.429,0.929,0.024,-0.078,0.095
-AutoARIMA,AutoTheta,0.714,0.429,1.0,0.024,-0.083,0.116
-AutoARIMA,AutoETS,0.857,0.571,1.0,0.207,0.025,0.416
-AutoARIMA,Naive,1.0,1.0,1.0,0.32,0.141,0.464
-AutoARIMA,Drift,1.0,1.0,1.0,0.385,0.232,0.514
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-0.458,-0.643,-0.303
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-0.431,-0.644,-0.257
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.402,-0.555,-0.267
-Seasonal Naive,TabPFN-TS,0.0,0.0,0.0,-0.346,-0.51,-0.187
-Seasonal Naive,Moirai-2.0,0.143,0.0,0.429,-0.337,-0.499,-0.174
-Seasonal Naive,Chronos-Bolt,0.143,0.0,0.429,-0.337,-0.499,-0.174
-Seasonal Naive,Toto-1.0,0.0,0.0,0.0,-0.35,-0.486,-0.228
-Seasonal Naive,Sundial-Base,0.0,0.0,0.0,-0.304,-0.47,-0.149
-Seasonal Naive,Stat. Ensemble,0.286,0.071,0.571,-0.049,-0.139,0.05
-Seasonal Naive,AutoARIMA,0.286,0.071,0.571,-0.025,-0.106,0.072
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,AutoTheta,0.429,0.0,0.718,-0.0,-0.126,0.117
-Seasonal Naive,AutoETS,0.571,0.143,0.857,0.188,-0.039,0.409
-Seasonal Naive,Naive,1.0,1.0,1.0,0.303,0.168,0.426
-Seasonal Naive,Drift,1.0,1.0,1.0,0.37,0.244,0.476
-AutoTheta,Chronos-2,0.0,0.0,0.0,-0.458,-0.67,-0.251
-AutoTheta,TimesFM-2.5,0.0,0.0,0.0,-0.431,-0.67,-0.233
-AutoTheta,TiRex,0.0,0.0,0.0,-0.401,-0.605,-0.209
-AutoTheta,TabPFN-TS,0.0,0.0,0.0,-0.345,-0.517,-0.192
-AutoTheta,Moirai-2.0,0.0,0.0,0.0,-0.336,-0.542,-0.163
-AutoTheta,Chronos-Bolt,0.0,0.0,0.0,-0.336,-0.542,-0.163
-AutoTheta,Toto-1.0,0.0,0.0,0.0,-0.349,-0.549,-0.155
-AutoTheta,Sundial-Base,0.0,0.0,0.0,-0.304,-0.476,-0.161
-AutoTheta,Stat. Ensemble,0.286,0.0,0.571,-0.048,-0.182,0.07
-AutoTheta,AutoARIMA,0.286,0.0,0.571,-0.024,-0.132,0.076
-AutoTheta,Seasonal Naive,0.571,0.282,1.0,0.0,-0.132,0.112
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,AutoETS,0.571,0.143,0.857,0.188,0.007,0.358
-AutoTheta,Naive,0.857,0.571,1.0,0.304,0.124,0.431
-AutoTheta,Drift,1.0,1.0,1.0,0.371,0.225,0.483
-AutoETS,Chronos-2,0.0,0.0,0.0,-0.795,-1.442,-0.353
-AutoETS,TimesFM-2.5,0.0,0.0,0.0,-0.762,-1.377,-0.314
-AutoETS,TiRex,0.0,0.0,0.0,-0.726,-1.355,-0.29
-AutoETS,TabPFN-TS,0.0,0.0,0.0,-0.656,-1.212,-0.263
-AutoETS,Moirai-2.0,0.0,0.0,0.0,-0.645,-1.259,-0.234
-AutoETS,Chronos-Bolt,0.0,0.0,0.0,-0.645,-1.259,-0.234
-AutoETS,Toto-1.0,0.143,0.0,0.429,-0.661,-1.263,-0.224
-AutoETS,Sundial-Base,0.0,0.0,0.0,-0.605,-1.069,-0.251
-AutoETS,Stat. Ensemble,0.143,0.0,0.429,-0.291,-0.831,-0.032
-AutoETS,AutoARIMA,0.143,0.0,0.429,-0.261,-0.713,-0.025
-AutoETS,Seasonal Naive,0.429,0.143,0.857,-0.231,-0.693,0.037
-AutoETS,AutoTheta,0.429,0.143,0.857,-0.231,-0.558,-0.007
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Naive,0.857,0.571,1.0,0.143,-0.329,0.392
-AutoETS,Drift,0.857,0.571,1.0,0.225,-0.164,0.446
-Naive,Chronos-2,0.0,0.0,0.0,-1.094,-1.716,-0.672
-Naive,TimesFM-2.5,0.0,0.0,0.0,-1.055,-1.74,-0.6
-Naive,TiRex,0.0,0.0,0.0,-1.013,-1.625,-0.609
-Naive,TabPFN-TS,0.0,0.0,0.0,-0.932,-1.494,-0.515
-Naive,Moirai-2.0,0.0,0.0,0.0,-0.919,-1.523,-0.488
-Naive,Chronos-Bolt,0.0,0.0,0.0,-0.919,-1.523,-0.488
-Naive,Toto-1.0,0.0,0.0,0.0,-0.937,-1.509,-0.564
-Naive,Sundial-Base,0.0,0.0,0.0,-0.872,-1.455,-0.443
-Naive,Stat. Ensemble,0.0,0.0,0.0,-0.506,-0.892,-0.203
-Naive,AutoARIMA,0.0,0.0,0.0,-0.471,-0.866,-0.164
-Naive,Seasonal Naive,0.0,0.0,0.0,-0.436,-0.742,-0.202
-Naive,AutoTheta,0.143,0.0,0.429,-0.436,-0.759,-0.141
-Naive,AutoETS,0.143,0.0,0.429,-0.166,-0.644,0.247
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,1.0,1.0,1.0,0.096,0.059,0.132
-Drift,Chronos-2,0.0,0.0,0.0,-1.316,-2.005,-0.833
-Drift,TimesFM-2.5,0.0,0.0,0.0,-1.273,-2.03,-0.758
-Drift,TiRex,0.0,0.0,0.0,-1.226,-1.905,-0.772
-Drift,TabPFN-TS,0.0,0.0,0.0,-1.137,-1.766,-0.692
-Drift,Moirai-2.0,0.0,0.0,0.0,-1.123,-1.78,-0.683
-Drift,Chronos-Bolt,0.0,0.0,0.0,-1.123,-1.78,-0.683
-Drift,Toto-1.0,0.0,0.0,0.0,-1.143,-1.769,-0.735
-Drift,Sundial-Base,0.0,0.0,0.0,-1.071,-1.702,-0.619
-Drift,Stat. Ensemble,0.0,0.0,0.0,-0.665,-1.096,-0.335
-Drift,AutoARIMA,0.0,0.0,0.0,-0.627,-1.057,-0.301
-Drift,Seasonal Naive,0.0,0.0,0.0,-0.588,-0.907,-0.322
-Drift,AutoTheta,0.0,0.0,0.0,-0.589,-0.934,-0.291
-Drift,AutoETS,0.143,0.0,0.429,-0.29,-0.804,0.141
-Drift,Naive,0.0,0.0,0.0,-0.106,-0.152,-0.063
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/domain_mobility/pairwise_WQL.csv b/tables/domain_mobility/pairwise_WQL.csv
deleted file mode 100644
index d8a19f9aad22a4725a1ca441981f6047861bfec6..0000000000000000000000000000000000000000
--- a/tables/domain_mobility/pairwise_WQL.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TimesFM-2.5,0.571,0.286,0.857,0.023,-0.013,0.065
-Chronos-2,TiRex,1.0,1.0,1.0,0.037,0.014,0.072
-Chronos-2,TabPFN-TS,1.0,1.0,1.0,0.097,0.054,0.147
-Chronos-2,Moirai-2.0,1.0,1.0,1.0,0.109,0.05,0.179
-Chronos-2,Chronos-Bolt,1.0,1.0,1.0,0.109,0.05,0.179
-Chronos-2,Toto-1.0,1.0,1.0,1.0,0.079,0.044,0.13
-Chronos-2,Sundial-Base,1.0,1.0,1.0,0.158,0.123,0.197
-Chronos-2,AutoARIMA,1.0,1.0,1.0,0.387,0.263,0.484
-Chronos-2,Stat. Ensemble,1.0,1.0,1.0,0.412,0.284,0.5
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.445,0.347,0.528
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.589,0.369,0.738
-Chronos-2,AutoETS,1.0,1.0,1.0,0.861,0.529,0.958
-Chronos-2,Naive,1.0,1.0,1.0,0.774,0.715,0.819
-Chronos-2,Drift,1.0,1.0,1.0,0.786,0.729,0.831
-TimesFM-2.5,Chronos-2,0.429,0.143,0.714,-0.024,-0.07,0.013
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TiRex,0.571,0.143,0.857,0.014,-0.025,0.047
-TimesFM-2.5,TabPFN-TS,1.0,1.0,1.0,0.076,0.037,0.111
-TimesFM-2.5,Moirai-2.0,1.0,1.0,1.0,0.088,0.043,0.149
-TimesFM-2.5,Chronos-Bolt,1.0,1.0,1.0,0.088,0.043,0.149
-TimesFM-2.5,Toto-1.0,0.857,0.571,1.0,0.057,0.005,0.106
-TimesFM-2.5,Sundial-Base,1.0,1.0,1.0,0.138,0.104,0.173
-TimesFM-2.5,AutoARIMA,1.0,1.0,1.0,0.372,0.245,0.478
-TimesFM-2.5,Stat. Ensemble,1.0,1.0,1.0,0.398,0.27,0.494
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.432,0.315,0.529
-TimesFM-2.5,AutoTheta,1.0,1.0,1.0,0.58,0.351,0.739
-TimesFM-2.5,AutoETS,1.0,1.0,1.0,0.858,0.504,0.958
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.768,0.703,0.819
-TimesFM-2.5,Drift,1.0,1.0,1.0,0.781,0.718,0.829
-TiRex,Chronos-2,0.0,0.0,0.0,-0.038,-0.078,-0.015
-TiRex,TimesFM-2.5,0.429,0.143,0.857,-0.014,-0.049,0.024
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,TabPFN-TS,0.714,0.286,1.0,0.063,0.005,0.121
-TiRex,Moirai-2.0,0.857,0.571,1.0,0.075,0.017,0.156
-TiRex,Chronos-Bolt,0.857,0.571,1.0,0.075,0.017,0.156
-TiRex,Toto-1.0,1.0,1.0,1.0,0.044,0.026,0.064
-TiRex,Sundial-Base,1.0,1.0,1.0,0.125,0.081,0.169
-TiRex,AutoARIMA,1.0,1.0,1.0,0.363,0.233,0.47
-TiRex,Stat. Ensemble,1.0,1.0,1.0,0.389,0.254,0.486
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.424,0.325,0.511
-TiRex,AutoTheta,1.0,1.0,1.0,0.574,0.347,0.73
-TiRex,AutoETS,1.0,1.0,1.0,0.857,0.501,0.957
-TiRex,Naive,1.0,1.0,1.0,0.765,0.699,0.814
-TiRex,Drift,1.0,1.0,1.0,0.778,0.71,0.827
-TabPFN-TS,Chronos-2,0.0,0.0,0.0,-0.108,-0.173,-0.057
-TabPFN-TS,TimesFM-2.5,0.0,0.0,0.0,-0.082,-0.125,-0.038
-TabPFN-TS,TiRex,0.286,0.0,0.714,-0.067,-0.138,-0.005
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Moirai-2.0,0.571,0.286,1.0,0.013,-0.053,0.078
-TabPFN-TS,Chronos-Bolt,0.571,0.286,1.0,0.013,-0.053,0.078
-TabPFN-TS,Toto-1.0,0.429,0.143,0.857,-0.02,-0.103,0.057
-TabPFN-TS,Sundial-Base,1.0,1.0,1.0,0.067,0.044,0.094
-TabPFN-TS,AutoARIMA,1.0,1.0,1.0,0.321,0.209,0.427
-TabPFN-TS,Stat. Ensemble,1.0,1.0,1.0,0.349,0.236,0.448
-TabPFN-TS,Seasonal Naive,1.0,1.0,1.0,0.386,0.279,0.482
-TabPFN-TS,AutoTheta,1.0,1.0,1.0,0.545,0.314,0.713
-TabPFN-TS,AutoETS,1.0,1.0,1.0,0.853,0.488,0.957
-TabPFN-TS,Naive,1.0,1.0,1.0,0.749,0.689,0.798
-TabPFN-TS,Drift,1.0,1.0,1.0,0.763,0.706,0.81
-Moirai-2.0,Chronos-2,0.0,0.0,0.0,-0.123,-0.218,-0.052
-Moirai-2.0,TimesFM-2.5,0.0,0.0,0.0,-0.097,-0.175,-0.045
-Moirai-2.0,TiRex,0.143,0.0,0.429,-0.081,-0.185,-0.017
-Moirai-2.0,TabPFN-TS,0.429,0.0,0.714,-0.014,-0.085,0.05
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Toto-1.0,0.429,0.139,0.857,-0.034,-0.136,0.036
-Moirai-2.0,Sundial-Base,0.857,0.571,1.0,0.054,-0.008,0.102
-Moirai-2.0,AutoARIMA,1.0,1.0,1.0,0.312,0.2,0.406
-Moirai-2.0,Stat. Ensemble,1.0,1.0,1.0,0.34,0.221,0.428
-Moirai-2.0,Seasonal Naive,1.0,1.0,1.0,0.377,0.246,0.48
-Moirai-2.0,AutoTheta,1.0,1.0,1.0,0.539,0.305,0.707
-Moirai-2.0,AutoETS,1.0,1.0,1.0,0.846,0.441,0.956
-Moirai-2.0,Naive,1.0,1.0,1.0,0.746,0.672,0.803
-Moirai-2.0,Drift,1.0,1.0,1.0,0.76,0.688,0.814
-Chronos-Bolt,Chronos-2,0.0,0.0,0.0,-0.123,-0.218,-0.052
-Chronos-Bolt,TimesFM-2.5,0.0,0.0,0.0,-0.097,-0.175,-0.045
-Chronos-Bolt,TiRex,0.143,0.0,0.429,-0.081,-0.185,-0.017
-Chronos-Bolt,TabPFN-TS,0.429,0.0,0.714,-0.014,-0.085,0.05
-Chronos-Bolt,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Toto-1.0,0.429,0.139,0.857,-0.034,-0.136,0.036
-Chronos-Bolt,Sundial-Base,0.857,0.571,1.0,0.054,-0.008,0.102
-Chronos-Bolt,AutoARIMA,1.0,1.0,1.0,0.312,0.2,0.406
-Chronos-Bolt,Stat. Ensemble,1.0,1.0,1.0,0.34,0.221,0.428
-Chronos-Bolt,Seasonal Naive,1.0,1.0,1.0,0.377,0.246,0.48
-Chronos-Bolt,AutoTheta,1.0,1.0,1.0,0.539,0.305,0.707
-Chronos-Bolt,AutoETS,1.0,1.0,1.0,0.846,0.441,0.956
-Chronos-Bolt,Naive,1.0,1.0,1.0,0.746,0.672,0.803
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.76,0.688,0.814
-Toto-1.0,Chronos-2,0.0,0.0,0.0,-0.086,-0.149,-0.046
-Toto-1.0,TimesFM-2.5,0.143,0.0,0.429,-0.061,-0.118,-0.005
-Toto-1.0,TiRex,0.0,0.0,0.0,-0.046,-0.068,-0.027
-Toto-1.0,TabPFN-TS,0.571,0.143,0.857,0.02,-0.061,0.093
-Toto-1.0,Moirai-2.0,0.571,0.143,0.861,0.033,-0.038,0.12
-Toto-1.0,Chronos-Bolt,0.571,0.143,0.861,0.033,-0.038,0.12
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,Sundial-Base,0.857,0.571,1.0,0.085,0.022,0.142
-Toto-1.0,AutoARIMA,0.857,0.571,1.0,0.334,0.191,0.448
-Toto-1.0,Stat. Ensemble,0.857,0.571,1.0,0.362,0.222,0.465
-Toto-1.0,Seasonal Naive,1.0,1.0,1.0,0.398,0.296,0.483
-Toto-1.0,AutoTheta,1.0,1.0,1.0,0.554,0.316,0.717
-Toto-1.0,AutoETS,0.857,0.571,1.0,0.852,0.474,0.956
-Toto-1.0,Naive,1.0,1.0,1.0,0.754,0.681,0.808
-Toto-1.0,Drift,1.0,1.0,1.0,0.768,0.693,0.821
-Sundial-Base,Chronos-2,0.0,0.0,0.0,-0.187,-0.246,-0.141
-Sundial-Base,TimesFM-2.5,0.0,0.0,0.0,-0.16,-0.209,-0.116
-Sundial-Base,TiRex,0.0,0.0,0.0,-0.143,-0.204,-0.088
-Sundial-Base,TabPFN-TS,0.0,0.0,0.0,-0.071,-0.104,-0.046
-Sundial-Base,Moirai-2.0,0.143,0.0,0.429,-0.057,-0.113,0.008
-Sundial-Base,Chronos-Bolt,0.143,0.0,0.429,-0.057,-0.113,0.008
-Sundial-Base,Toto-1.0,0.143,0.0,0.429,-0.093,-0.165,-0.022
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,AutoARIMA,0.857,0.571,1.0,0.272,0.151,0.385
-Sundial-Base,Stat. Ensemble,0.857,0.571,1.0,0.302,0.173,0.402
-Sundial-Base,Seasonal Naive,1.0,1.0,1.0,0.342,0.232,0.438
-Sundial-Base,AutoTheta,0.857,0.571,1.0,0.513,0.269,0.689
-Sundial-Base,AutoETS,0.857,0.571,1.0,0.843,0.442,0.955
-Sundial-Base,Naive,1.0,1.0,1.0,0.731,0.666,0.784
-Sundial-Base,Drift,1.0,1.0,1.0,0.746,0.682,0.796
-AutoARIMA,Chronos-2,0.0,0.0,0.0,-0.631,-0.94,-0.357
-AutoARIMA,TimesFM-2.5,0.0,0.0,0.0,-0.593,-0.914,-0.324
-AutoARIMA,TiRex,0.0,0.0,0.0,-0.571,-0.886,-0.304
-AutoARIMA,TabPFN-TS,0.0,0.0,0.0,-0.472,-0.745,-0.264
-AutoARIMA,Moirai-2.0,0.0,0.0,0.0,-0.452,-0.683,-0.25
-AutoARIMA,Chronos-Bolt,0.0,0.0,0.0,-0.452,-0.683,-0.25
-AutoARIMA,Toto-1.0,0.143,0.0,0.429,-0.502,-0.811,-0.236
-AutoARIMA,Sundial-Base,0.143,0.0,0.429,-0.374,-0.625,-0.178
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,Stat. Ensemble,0.857,0.714,1.0,0.041,0.015,0.069
-AutoARIMA,Seasonal Naive,0.714,0.429,0.929,0.096,-0.069,0.206
-AutoARIMA,AutoTheta,0.857,0.571,1.0,0.33,0.113,0.521
-AutoARIMA,AutoETS,1.0,1.0,1.0,0.791,0.274,0.938
-AutoARIMA,Naive,1.0,1.0,1.0,0.631,0.546,0.695
-AutoARIMA,Drift,1.0,1.0,1.0,0.651,0.571,0.713
-Stat. Ensemble,Chronos-2,0.0,0.0,0.0,-0.701,-0.999,-0.397
-Stat. Ensemble,TimesFM-2.5,0.0,0.0,0.0,-0.661,-0.976,-0.371
-Stat. Ensemble,TiRex,0.0,0.0,0.0,-0.638,-0.945,-0.341
-Stat. Ensemble,TabPFN-TS,0.0,0.0,0.0,-0.535,-0.813,-0.309
-Stat. Ensemble,Moirai-2.0,0.0,0.0,0.0,-0.514,-0.747,-0.284
-Stat. Ensemble,Chronos-Bolt,0.0,0.0,0.0,-0.514,-0.747,-0.284
-Stat. Ensemble,Toto-1.0,0.143,0.0,0.429,-0.566,-0.87,-0.285
-Stat. Ensemble,Sundial-Base,0.143,0.0,0.429,-0.433,-0.671,-0.209
-Stat. Ensemble,AutoARIMA,0.143,0.0,0.286,-0.043,-0.074,-0.015
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,Seasonal Naive,0.714,0.429,0.929,0.057,-0.109,0.167
-Stat. Ensemble,AutoTheta,0.857,0.571,1.0,0.302,0.084,0.495
-Stat. Ensemble,AutoETS,1.0,1.0,1.0,0.786,0.256,0.936
-Stat. Ensemble,Naive,1.0,1.0,1.0,0.615,0.532,0.676
-Stat. Ensemble,Drift,1.0,1.0,1.0,0.636,0.556,0.696
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-0.803,-1.12,-0.532
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-0.762,-1.122,-0.461
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.737,-1.043,-0.481
-Seasonal Naive,TabPFN-TS,0.0,0.0,0.0,-0.628,-0.932,-0.386
-Seasonal Naive,Moirai-2.0,0.0,0.0,0.0,-0.606,-0.925,-0.327
-Seasonal Naive,Chronos-Bolt,0.0,0.0,0.0,-0.606,-0.925,-0.327
-Seasonal Naive,Toto-1.0,0.0,0.0,0.0,-0.661,-0.933,-0.421
-Seasonal Naive,Sundial-Base,0.0,0.0,0.0,-0.519,-0.778,-0.301
-Seasonal Naive,AutoARIMA,0.286,0.071,0.571,-0.106,-0.26,0.065
-Seasonal Naive,Stat. Ensemble,0.286,0.071,0.571,-0.06,-0.2,0.098
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,AutoTheta,0.714,0.429,1.0,0.26,0.012,0.46
-Seasonal Naive,AutoETS,0.714,0.286,1.0,0.778,0.206,0.936
-Seasonal Naive,Naive,1.0,1.0,1.0,0.592,0.53,0.64
-Seasonal Naive,Drift,1.0,1.0,1.0,0.614,0.55,0.664
-AutoTheta,Chronos-2,0.0,0.0,0.0,-1.436,-2.82,-0.586
-AutoTheta,TimesFM-2.5,0.0,0.0,0.0,-1.38,-2.827,-0.54
-AutoTheta,TiRex,0.0,0.0,0.0,-1.346,-2.701,-0.532
-AutoTheta,TabPFN-TS,0.0,0.0,0.0,-1.199,-2.482,-0.457
-AutoTheta,Moirai-2.0,0.0,0.0,0.0,-1.169,-2.408,-0.438
-AutoTheta,Chronos-Bolt,0.0,0.0,0.0,-1.169,-2.408,-0.438
-AutoTheta,Toto-1.0,0.0,0.0,0.0,-1.244,-2.536,-0.463
-AutoTheta,Sundial-Base,0.143,0.0,0.429,-1.052,-2.216,-0.369
-AutoTheta,AutoARIMA,0.143,0.0,0.429,-0.494,-1.086,-0.127
-AutoTheta,Stat. Ensemble,0.143,0.0,0.429,-0.432,-0.982,-0.092
-AutoTheta,Seasonal Naive,0.286,0.0,0.571,-0.351,-0.851,-0.012
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,AutoETS,0.571,0.143,0.857,0.709,0.014,0.907
-AutoTheta,Naive,1.0,1.0,1.0,0.448,0.276,0.575
-AutoTheta,Drift,1.0,1.0,1.0,0.479,0.316,0.596
-AutoETS,Chronos-2,0.0,0.0,0.0,-6.206,-22.787,-1.121
-AutoETS,TimesFM-2.5,0.0,0.0,0.0,-6.041,-22.595,-1.017
-AutoETS,TiRex,0.0,0.0,0.0,-5.978,-22.199,-1.005
-AutoETS,TabPFN-TS,0.0,0.0,0.0,-5.785,-22.0,-0.955
-AutoETS,Moirai-2.0,0.0,0.0,0.0,-5.505,-21.538,-0.789
-AutoETS,Chronos-Bolt,0.0,0.0,0.0,-5.505,-21.538,-0.789
-AutoETS,Toto-1.0,0.143,0.0,0.429,-5.741,-21.621,-0.902
-AutoETS,Sundial-Base,0.143,0.0,0.429,-5.386,-21.067,-0.793
-AutoETS,AutoARIMA,0.0,0.0,0.0,-3.792,-15.18,-0.376
-AutoETS,Stat. Ensemble,0.0,0.0,0.0,-3.671,-14.743,-0.344
-AutoETS,Seasonal Naive,0.286,0.0,0.714,-3.515,-14.714,-0.259
-AutoETS,AutoTheta,0.429,0.143,0.857,-2.44,-9.777,-0.015
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Naive,0.571,0.286,1.0,-1.172,-7.111,0.408
-AutoETS,Drift,0.571,0.286,1.0,-1.082,-6.896,0.433
-Naive,Chronos-2,0.0,0.0,0.0,-3.415,-4.522,-2.508
-Naive,TimesFM-2.5,0.0,0.0,0.0,-3.313,-4.533,-2.371
-Naive,TiRex,0.0,0.0,0.0,-3.252,-4.38,-2.317
-Naive,TabPFN-TS,0.0,0.0,0.0,-2.985,-3.944,-2.212
-Naive,Moirai-2.0,0.0,0.0,0.0,-2.932,-4.07,-2.049
-Naive,Chronos-Bolt,0.0,0.0,0.0,-2.932,-4.07,-2.049
-Naive,Toto-1.0,0.0,0.0,0.0,-3.067,-4.197,-2.134
-Naive,Sundial-Base,0.0,0.0,0.0,-2.72,-3.631,-1.992
-Naive,AutoARIMA,0.0,0.0,0.0,-1.707,-2.284,-1.203
-Naive,Stat. Ensemble,0.0,0.0,0.0,-1.596,-2.091,-1.136
-Naive,Seasonal Naive,0.0,0.0,0.0,-1.449,-1.777,-1.126
-Naive,AutoTheta,0.0,0.0,0.0,-0.813,-1.353,-0.382
-Naive,AutoETS,0.429,0.0,0.714,0.54,-0.69,0.877
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,1.0,1.0,1.0,0.055,0.037,0.073
-Drift,Chronos-2,0.0,0.0,0.0,-3.671,-4.925,-2.692
-Drift,TimesFM-2.5,0.0,0.0,0.0,-3.563,-4.855,-2.551
-Drift,TiRex,0.0,0.0,0.0,-3.499,-4.779,-2.453
-Drift,TabPFN-TS,0.0,0.0,0.0,-3.216,-4.258,-2.402
-Drift,Moirai-2.0,0.0,0.0,0.0,-3.16,-4.369,-2.205
-Drift,Chronos-Bolt,0.0,0.0,0.0,-3.16,-4.369,-2.205
-Drift,Toto-1.0,0.0,0.0,0.0,-3.303,-4.59,-2.253
-Drift,Sundial-Base,0.0,0.0,0.0,-2.935,-3.9,-2.148
-Drift,AutoARIMA,0.0,0.0,0.0,-1.864,-2.486,-1.33
-Drift,Stat. Ensemble,0.0,0.0,0.0,-1.747,-2.291,-1.255
-Drift,Seasonal Naive,0.0,0.0,0.0,-1.59,-1.972,-1.221
-Drift,AutoTheta,0.0,0.0,0.0,-0.918,-1.476,-0.462
-Drift,AutoETS,0.429,0.0,0.714,0.52,-0.765,0.873
-Drift,Naive,0.0,0.0,0.0,-0.058,-0.079,-0.038
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/domain_nature/leaderboard_MASE.csv b/tables/domain_nature/leaderboard_MASE.csv
deleted file mode 100644
index ea525ad20f89e563a3a015d1dcd3009a50a72830..0000000000000000000000000000000000000000
--- a/tables/domain_nature/leaderboard_MASE.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,94.28571428571429,32.667973146499854,0.0,1.2456354600000001,0.0,0.0
-TiRex,85.71428571428574,29.26035003209091,0.0,0.5813713669047619,0.0,0.0
-Chronos-Bolt,75.0,28.93605729975306,0.0,0.47739247904761906,0.0,0.0
-TimesFM-2.5,74.28571428571429,29.39415793791812,0.0,8.168218997380952,0.0,0.0
-Toto-1.0,65.71428571428571,27.758201124904257,0.0,45.24128168595239,0.0,0.0
-Moirai-2.0,65.00000000000001,27.39923273556282,0.0,0.9811087477272727,0.6,0.0
-Sundial-Base,64.28571428571426,27.294413131182793,0.0,8.222455888744589,0.0,0.0
-Stat. Ensemble,44.28571428571429,17.869279200778998,0.0,831.8049798101947,0.0,20.0
-TabPFN-TS,44.28571428571429,23.16876937964092,0.0,184.37221231142857,0.0,0.0
-AutoTheta,41.42857142857142,21.542038855355507,0.0,3.7224071347619048,0.0,0.0
-AutoARIMA,28.571428571428577,13.898849494465237,0.0,538.7123111100325,0.0,20.0
-AutoETS,25.714285714285722,-29.62269544506979,0.0,12.024019823809525,0.0,0.0
-Naive,20.0,7.79560161047943,0.0,1.274835109047619,0.0,0.0
-Drift,12.85714285714286,4.07870004962435,0.0,1.0766188060606061,0.0,0.0
-Seasonal Naive,8.571428571428573,0.0,0.0,0.9579890307359307,0.0,0.0
diff --git a/tables/domain_nature/leaderboard_SQL.csv b/tables/domain_nature/leaderboard_SQL.csv
deleted file mode 100644
index b5539aed90e1af1cf3776701f7075e0fa7fa4e6d..0000000000000000000000000000000000000000
--- a/tables/domain_nature/leaderboard_SQL.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,94.28571428571429,40.14261348186017,0.0,1.2456354600000001,0.0,0.0
-TiRex,88.57142857142858,37.438763337724154,0.0,0.5813713669047619,0.0,0.0
-TimesFM-2.5,77.14285714285715,37.18832201208502,0.0,8.168218997380952,0.0,0.0
-Chronos-Bolt,75.00000000000001,36.03582794812101,0.0,0.47739247904761906,0.0,0.0
-Moirai-2.0,67.85714285714286,34.853090715125255,0.0,0.9811087477272727,0.6,0.0
-Toto-1.0,67.14285714285715,35.98014019395901,0.0,45.24128168595239,0.0,0.0
-TabPFN-TS,59.999999999999986,32.14384784602691,0.0,184.37221231142857,0.0,0.0
-Sundial-Base,52.85714285714286,30.909915121590082,0.0,8.222455888744589,0.0,0.0
-Stat. Ensemble,44.28571428571429,13.94260028599177,0.0,831.8049798101947,0.0,20.0
-AutoARIMA,38.57142857142858,17.778704714011372,0.0,538.7123111100325,0.0,20.0
-AutoETS,27.142857142857153,-136.42889695356527,0.0,12.024019823809525,0.0,0.0
-AutoTheta,20.0,-2.8417921456300954,0.0,3.7224071347619048,0.0,0.0
-Seasonal Naive,20.0,0.0,0.0,0.9579890307359307,0.0,0.0
-Naive,12.85714285714286,-23.56398392435097,0.0,1.274835109047619,0.0,0.0
-Drift,4.2857142857142865,-28.213326844738162,0.0,1.0766188060606061,0.0,0.0
diff --git a/tables/domain_nature/leaderboard_WAPE.csv b/tables/domain_nature/leaderboard_WAPE.csv
deleted file mode 100644
index d34e8c72620be7ccaa9b98a25361344c7398e0b6..0000000000000000000000000000000000000000
--- a/tables/domain_nature/leaderboard_WAPE.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,87.14285714285714,47.03832907322194,0.0,1.2456354600000001,0.0,0.0
-TiRex,81.42857142857144,45.265501615714086,0.0,0.5813713669047619,0.0,0.0
-Toto-1.0,80.0,45.61982323609455,0.0,45.24128168595239,0.0,0.0
-TimesFM-2.5,75.71428571428572,45.23435046646812,0.0,8.168218997380952,0.0,0.0
-Chronos-Bolt,73.57142857142857,44.27099700478807,0.0,0.47739247904761906,0.0,0.0
-Moirai-2.0,66.42857142857143,43.560110598131054,0.0,0.9811087477272727,0.6,0.0
-TabPFN-TS,57.14285714285714,41.536751954528484,0.0,184.37221231142857,0.0,0.0
-AutoTheta,42.85714285714287,37.25192023085951,0.0,3.7224071347619048,0.0,0.0
-Sundial-Base,42.857142857142854,32.159160649999954,0.0,8.222455888744589,0.0,0.0
-Stat. Ensemble,41.428571428571445,24.4398588876512,0.0,831.8049798101947,0.0,20.0
-AutoETS,32.85714285714286,-7.089562721947629,0.0,12.024019823809525,0.0,0.0
-Naive,24.28571428571429,25.36480685722543,0.0,1.274835109047619,0.0,0.0
-AutoARIMA,21.428571428571427,2.7732156741662517,0.0,538.7123111100325,0.0,20.0
-Drift,12.857142857142856,15.77773764677779,0.0,1.0766188060606061,0.0,0.0
-Seasonal Naive,10.0,0.0,0.0,0.9579890307359307,0.0,0.0
diff --git a/tables/domain_nature/leaderboard_WQL.csv b/tables/domain_nature/leaderboard_WQL.csv
deleted file mode 100644
index eed2f91d23116d2a586feab37cd071153220dde3..0000000000000000000000000000000000000000
--- a/tables/domain_nature/leaderboard_WQL.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,85.71428571428571,65.09181820346713,0.0,1.2456354600000001,0.0,0.0
-TimesFM-2.5,82.85714285714286,65.02250890387694,0.0,8.168218997380952,0.0,0.0
-Toto-1.0,80.00000000000001,64.38827870406145,0.0,45.24128168595239,0.0,0.0
-TiRex,80.0,63.90155569021483,0.0,0.5813713669047619,0.0,0.0
-Chronos-Bolt,75.0,63.277941068455476,0.0,0.47739247904761906,0.0,0.0
-Moirai-2.0,72.14285714285714,62.94483721241358,0.0,0.9811087477272727,0.6,0.0
-TabPFN-TS,62.85714285714283,62.612284025823264,0.0,184.37221231142857,0.0,0.0
-Sundial-Base,48.57142857142857,52.74866339373276,0.0,8.222455888744589,0.0,0.0
-Stat. Ensemble,42.85714285714287,13.563254966732108,0.0,831.8049798101947,0.0,20.0
-AutoARIMA,40.0,21.289551980691435,0.0,538.7123111100325,0.0,20.0
-AutoETS,25.71428571428572,-162.51813043287368,0.0,12.024019823809525,0.0,0.0
-Seasonal Naive,25.71428571428571,0.0,0.0,0.9579890307359307,0.0,0.0
-AutoTheta,15.714285714285717,-21.431026747836324,0.0,3.7224071347619048,0.0,0.0
-Naive,10.0,-59.16477242087295,0.0,1.274835109047619,0.0,0.0
-Drift,2.857142857142857,-65.48141501493944,0.0,1.0766188060606061,0.0,0.0
diff --git a/tables/domain_nature/pairwise_MASE.csv b/tables/domain_nature/pairwise_MASE.csv
deleted file mode 100644
index 94b6f57952a7e441a67d67a51670154b2993254a..0000000000000000000000000000000000000000
--- a/tables/domain_nature/pairwise_MASE.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TiRex,0.8,0.4,1.0,0.048,0.005,0.089
-Chronos-2,Chronos-Bolt,0.8,0.4,1.0,0.053,0.015,0.087
-Chronos-2,TimesFM-2.5,0.8,0.4,1.0,0.046,-0.001,0.096
-Chronos-2,Toto-1.0,1.0,1.0,1.0,0.068,0.024,0.124
-Chronos-2,Moirai-2.0,0.8,0.4,1.0,0.073,0.024,0.118
-Chronos-2,Sundial-Base,1.0,1.0,1.0,0.074,0.027,0.116
-Chronos-2,Stat. Ensemble,1.0,1.0,1.0,0.18,0.066,0.314
-Chronos-2,TabPFN-TS,1.0,1.0,1.0,0.124,0.076,0.155
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.142,0.1,0.196
-Chronos-2,AutoARIMA,1.0,1.0,1.0,0.218,0.121,0.333
-Chronos-2,AutoETS,1.0,1.0,1.0,0.481,0.137,0.781
-Chronos-2,Naive,1.0,1.0,1.0,0.27,0.18,0.35
-Chronos-2,Drift,1.0,1.0,1.0,0.298,0.207,0.379
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.327,0.263,0.388
-TiRex,Chronos-2,0.2,0.0,0.6,-0.051,-0.097,-0.005
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,Chronos-Bolt,0.8,0.4,1.0,0.005,-0.016,0.023
-TiRex,TimesFM-2.5,0.8,0.4,1.0,-0.002,-0.053,0.035
-TiRex,Toto-1.0,0.8,0.4,1.0,0.021,-0.028,0.066
-TiRex,Moirai-2.0,1.0,1.0,1.0,0.026,0.004,0.054
-TiRex,Sundial-Base,0.8,0.4,1.0,0.027,-0.0,0.055
-TiRex,Stat. Ensemble,0.8,0.4,1.0,0.139,0.038,0.264
-TiRex,TabPFN-TS,1.0,1.0,1.0,0.079,0.058,0.112
-TiRex,AutoTheta,1.0,1.0,1.0,0.098,0.035,0.158
-TiRex,AutoARIMA,1.0,1.0,1.0,0.178,0.103,0.272
-TiRex,AutoETS,0.8,0.4,1.0,0.454,0.08,0.77
-TiRex,Naive,1.0,1.0,1.0,0.233,0.143,0.307
-TiRex,Drift,1.0,1.0,1.0,0.263,0.174,0.336
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.293,0.222,0.364
-Chronos-Bolt,Chronos-2,0.2,0.0,0.6,-0.055,-0.095,-0.016
-Chronos-Bolt,TiRex,0.2,0.0,0.6,-0.005,-0.024,0.015
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,TimesFM-2.5,0.6,0.2,1.0,-0.006,-0.064,0.045
-Chronos-Bolt,Toto-1.0,0.4,0.0,0.8,0.016,-0.034,0.074
-Chronos-Bolt,Moirai-2.0,0.7,0.5,0.9,0.021,0.0,0.042
-Chronos-Bolt,Sundial-Base,0.8,0.4,1.0,0.023,-0.002,0.045
-Chronos-Bolt,Stat. Ensemble,0.8,0.4,1.0,0.135,0.035,0.262
-Chronos-Bolt,TabPFN-TS,1.0,1.0,1.0,0.075,0.054,0.096
-Chronos-Bolt,AutoTheta,1.0,1.0,1.0,0.094,0.038,0.147
-Chronos-Bolt,AutoARIMA,1.0,1.0,1.0,0.175,0.106,0.27
-Chronos-Bolt,AutoETS,0.8,0.4,1.0,0.452,0.092,0.768
-Chronos-Bolt,Naive,1.0,1.0,1.0,0.229,0.131,0.311
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.259,0.165,0.342
-Chronos-Bolt,Seasonal Naive,1.0,1.0,1.0,0.289,0.231,0.351
-TimesFM-2.5,Chronos-2,0.2,0.0,0.6,-0.049,-0.106,0.001
-TimesFM-2.5,TiRex,0.2,0.0,0.6,0.002,-0.037,0.05
-TimesFM-2.5,Chronos-Bolt,0.4,0.0,0.8,0.006,-0.047,0.06
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,Toto-1.0,0.8,0.4,1.0,0.023,0.004,0.038
-TimesFM-2.5,Moirai-2.0,0.6,0.2,1.0,0.027,-0.016,0.068
-TimesFM-2.5,Sundial-Base,0.8,0.4,1.0,0.029,-0.029,0.08
-TimesFM-2.5,Stat. Ensemble,0.8,0.4,1.0,0.14,0.001,0.301
-TimesFM-2.5,TabPFN-TS,1.0,1.0,1.0,0.081,0.032,0.13
-TimesFM-2.5,AutoTheta,0.8,0.4,1.0,0.1,0.026,0.153
-TimesFM-2.5,AutoARIMA,1.0,1.0,1.0,0.18,0.075,0.308
-TimesFM-2.5,AutoETS,0.8,0.4,1.0,0.455,0.061,0.769
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.234,0.178,0.286
-TimesFM-2.5,Drift,1.0,1.0,1.0,0.264,0.206,0.317
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.294,0.196,0.38
-Toto-1.0,Chronos-2,0.0,0.0,0.0,-0.073,-0.141,-0.025
-Toto-1.0,TiRex,0.2,0.0,0.6,-0.021,-0.07,0.027
-Toto-1.0,Chronos-Bolt,0.6,0.2,1.0,-0.017,-0.08,0.033
-Toto-1.0,TimesFM-2.5,0.2,0.0,0.6,-0.023,-0.039,-0.004
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,Moirai-2.0,0.6,0.2,1.0,0.005,-0.05,0.053
-Toto-1.0,Sundial-Base,0.6,0.2,1.0,0.006,-0.063,0.06
-Toto-1.0,Stat. Ensemble,0.8,0.4,1.0,0.12,-0.031,0.28
-Toto-1.0,TabPFN-TS,0.8,0.4,1.0,0.06,0.009,0.111
-Toto-1.0,AutoTheta,0.8,0.4,1.0,0.079,-0.01,0.149
-Toto-1.0,AutoARIMA,0.8,0.4,1.0,0.161,0.045,0.292
-Toto-1.0,AutoETS,0.8,0.4,1.0,0.443,0.023,0.768
-Toto-1.0,Naive,1.0,1.0,1.0,0.217,0.157,0.276
-Toto-1.0,Drift,1.0,1.0,1.0,0.247,0.185,0.308
-Toto-1.0,Seasonal Naive,1.0,1.0,1.0,0.278,0.18,0.365
-Moirai-2.0,Chronos-2,0.2,0.0,0.6,-0.078,-0.134,-0.025
-Moirai-2.0,TiRex,0.0,0.0,0.0,-0.026,-0.057,-0.004
-Moirai-2.0,Chronos-Bolt,0.3,0.1,0.5,-0.022,-0.044,0.0
-Moirai-2.0,TimesFM-2.5,0.4,0.0,0.8,-0.028,-0.072,0.016
-Moirai-2.0,Toto-1.0,0.4,0.0,0.8,-0.005,-0.056,0.048
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Sundial-Base,0.4,0.0,0.8,0.001,-0.02,0.027
-Moirai-2.0,Stat. Ensemble,0.8,0.4,1.0,0.116,0.011,0.247
-Moirai-2.0,TabPFN-TS,0.8,0.4,1.0,0.055,0.015,0.089
-Moirai-2.0,AutoTheta,1.0,1.0,1.0,0.075,0.023,0.127
-Moirai-2.0,AutoARIMA,1.0,1.0,1.0,0.157,0.091,0.259
-Moirai-2.0,AutoETS,0.8,0.4,1.0,0.44,0.072,0.758
-Moirai-2.0,Naive,1.0,1.0,1.0,0.213,0.131,0.282
-Moirai-2.0,Drift,1.0,1.0,1.0,0.243,0.165,0.314
-Moirai-2.0,Seasonal Naive,1.0,1.0,1.0,0.274,0.192,0.348
-Sundial-Base,Chronos-2,0.0,0.0,0.0,-0.08,-0.131,-0.028
-Sundial-Base,TiRex,0.2,0.0,0.6,-0.028,-0.058,0.0
-Sundial-Base,Chronos-Bolt,0.2,0.0,0.6,-0.023,-0.047,0.002
-Sundial-Base,TimesFM-2.5,0.2,0.0,0.6,-0.03,-0.087,0.028
-Sundial-Base,Toto-1.0,0.4,0.0,0.8,-0.006,-0.063,0.059
-Sundial-Base,Moirai-2.0,0.6,0.2,1.0,-0.001,-0.027,0.02
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Stat. Ensemble,0.8,0.4,1.0,0.115,0.028,0.239
-Sundial-Base,TabPFN-TS,0.8,0.4,1.0,0.054,0.012,0.097
-Sundial-Base,AutoTheta,1.0,1.0,1.0,0.073,0.031,0.114
-Sundial-Base,AutoARIMA,1.0,1.0,1.0,0.156,0.091,0.251
-Sundial-Base,AutoETS,0.8,0.4,1.0,0.439,0.081,0.757
-Sundial-Base,Naive,1.0,1.0,1.0,0.211,0.125,0.295
-Sundial-Base,Drift,1.0,1.0,1.0,0.242,0.155,0.324
-Sundial-Base,Seasonal Naive,1.0,1.0,1.0,0.273,0.2,0.344
-Stat. Ensemble,Chronos-2,0.0,0.0,0.0,-0.22,-0.459,-0.071
-Stat. Ensemble,TiRex,0.2,0.0,0.6,-0.161,-0.359,-0.039
-Stat. Ensemble,Chronos-Bolt,0.2,0.0,0.6,-0.156,-0.354,-0.036
-Stat. Ensemble,TimesFM-2.5,0.2,0.0,0.6,-0.163,-0.431,-0.001
-Stat. Ensemble,Toto-1.0,0.2,0.0,0.6,-0.137,-0.389,0.03
-Stat. Ensemble,Moirai-2.0,0.2,0.0,0.6,-0.131,-0.328,-0.011
-Stat. Ensemble,Sundial-Base,0.2,0.0,0.6,-0.13,-0.314,-0.029
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,TabPFN-TS,0.4,0.0,0.8,-0.069,-0.271,0.059
-Stat. Ensemble,AutoTheta,0.8,0.4,1.0,-0.047,-0.246,0.043
-Stat. Ensemble,AutoARIMA,0.7,0.3,1.0,0.046,-0.001,0.089
-Stat. Ensemble,AutoETS,0.6,0.2,1.0,0.366,-0.049,0.726
-Stat. Ensemble,Naive,0.8,0.4,1.0,0.109,-0.149,0.275
-Stat. Ensemble,Drift,0.8,0.4,1.0,0.144,-0.11,0.307
-Stat. Ensemble,Seasonal Naive,0.9,0.7,1.0,0.179,0.074,0.286
-TabPFN-TS,Chronos-2,0.0,0.0,0.0,-0.141,-0.183,-0.082
-TabPFN-TS,TiRex,0.0,0.0,0.0,-0.086,-0.126,-0.062
-TabPFN-TS,Chronos-Bolt,0.0,0.0,0.0,-0.081,-0.106,-0.057
-TabPFN-TS,TimesFM-2.5,0.0,0.0,0.0,-0.088,-0.149,-0.033
-TabPFN-TS,Toto-1.0,0.2,0.0,0.6,-0.064,-0.124,-0.009
-TabPFN-TS,Moirai-2.0,0.2,0.0,0.6,-0.058,-0.097,-0.016
-TabPFN-TS,Sundial-Base,0.2,0.0,0.6,-0.057,-0.108,-0.012
-TabPFN-TS,Stat. Ensemble,0.6,0.2,1.0,0.065,-0.063,0.213
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,AutoTheta,0.4,0.0,0.8,0.021,-0.056,0.092
-TabPFN-TS,AutoARIMA,0.8,0.4,1.0,0.108,0.017,0.215
-TabPFN-TS,AutoETS,0.8,0.4,1.0,0.407,0.014,0.752
-TabPFN-TS,Naive,1.0,1.0,1.0,0.167,0.059,0.257
-TabPFN-TS,Drift,1.0,1.0,1.0,0.199,0.09,0.29
-TabPFN-TS,Seasonal Naive,1.0,1.0,1.0,0.232,0.169,0.289
-AutoTheta,Chronos-2,0.0,0.0,0.0,-0.165,-0.243,-0.112
-AutoTheta,TiRex,0.0,0.0,0.0,-0.109,-0.187,-0.036
-AutoTheta,Chronos-Bolt,0.0,0.0,0.0,-0.104,-0.173,-0.04
-AutoTheta,TimesFM-2.5,0.2,0.0,0.6,-0.111,-0.18,-0.027
-AutoTheta,Toto-1.0,0.2,0.0,0.6,-0.086,-0.175,0.01
-AutoTheta,Moirai-2.0,0.0,0.0,0.0,-0.081,-0.146,-0.024
-AutoTheta,Sundial-Base,0.0,0.0,0.0,-0.079,-0.128,-0.032
-AutoTheta,Stat. Ensemble,0.2,0.0,0.6,0.045,-0.044,0.197
-AutoTheta,TabPFN-TS,0.6,0.2,1.0,-0.021,-0.101,0.053
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,AutoARIMA,0.8,0.4,1.0,0.089,-0.018,0.224
-AutoTheta,AutoETS,0.8,0.4,1.0,0.395,0.04,0.727
-AutoTheta,Naive,1.0,1.0,1.0,0.149,0.059,0.244
-AutoTheta,Drift,1.0,1.0,1.0,0.182,0.096,0.277
-AutoTheta,Seasonal Naive,1.0,1.0,1.0,0.215,0.115,0.304
-AutoARIMA,Chronos-2,0.0,0.0,0.0,-0.279,-0.5,-0.138
-AutoARIMA,TiRex,0.0,0.0,0.0,-0.217,-0.374,-0.115
-AutoARIMA,Chronos-Bolt,0.0,0.0,0.0,-0.212,-0.37,-0.118
-AutoARIMA,TimesFM-2.5,0.0,0.0,0.0,-0.219,-0.445,-0.081
-AutoARIMA,Toto-1.0,0.2,0.0,0.6,-0.192,-0.412,-0.048
-AutoARIMA,Moirai-2.0,0.0,0.0,0.0,-0.186,-0.349,-0.1
-AutoARIMA,Sundial-Base,0.0,0.0,0.0,-0.184,-0.335,-0.1
-AutoARIMA,Stat. Ensemble,0.3,0.0,0.7,-0.048,-0.098,0.001
-AutoARIMA,TabPFN-TS,0.2,0.0,0.6,-0.121,-0.274,-0.017
-AutoARIMA,AutoTheta,0.2,0.0,0.6,-0.097,-0.289,0.018
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoETS,0.6,0.2,1.0,0.336,-0.108,0.712
-AutoARIMA,Naive,0.8,0.4,1.0,0.066,-0.165,0.208
-AutoARIMA,Drift,0.8,0.4,1.0,0.102,-0.112,0.239
-AutoARIMA,Seasonal Naive,0.9,0.7,1.0,0.139,0.042,0.235
-AutoETS,Chronos-2,0.0,0.0,0.0,-0.925,-3.56,-0.159
-AutoETS,TiRex,0.2,0.0,0.6,-0.832,-3.354,-0.087
-AutoETS,Chronos-Bolt,0.2,0.0,0.6,-0.824,-3.308,-0.102
-AutoETS,TimesFM-2.5,0.2,0.0,0.6,-0.836,-3.32,-0.065
-AutoETS,Toto-1.0,0.2,0.0,0.6,-0.794,-3.308,-0.023
-AutoETS,Moirai-2.0,0.2,0.0,0.6,-0.785,-3.132,-0.077
-AutoETS,Sundial-Base,0.2,0.0,0.6,-0.783,-3.107,-0.088
-AutoETS,Stat. Ensemble,0.4,0.0,0.8,-0.578,-2.653,0.047
-AutoETS,TabPFN-TS,0.2,0.0,0.6,-0.687,-3.038,-0.014
-AutoETS,AutoTheta,0.2,0.0,0.6,-0.652,-2.668,-0.041
-AutoETS,AutoARIMA,0.4,0.0,0.8,-0.505,-2.472,0.097
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Naive,0.2,0.0,0.6,-0.406,-2.121,0.194
-AutoETS,Drift,0.2,0.0,0.6,-0.351,-2.001,0.23
-AutoETS,Seasonal Naive,0.8,0.4,1.0,-0.296,-2.14,0.211
-Naive,Chronos-2,0.0,0.0,0.0,-0.369,-0.538,-0.219
-Naive,TiRex,0.0,0.0,0.0,-0.303,-0.442,-0.166
-Naive,Chronos-Bolt,0.0,0.0,0.0,-0.297,-0.451,-0.151
-Naive,TimesFM-2.5,0.0,0.0,0.0,-0.306,-0.4,-0.217
-Naive,Toto-1.0,0.0,0.0,0.0,-0.276,-0.381,-0.186
-Naive,Moirai-2.0,0.0,0.0,0.0,-0.27,-0.392,-0.151
-Naive,Sundial-Base,0.0,0.0,0.0,-0.268,-0.419,-0.143
-Naive,Stat. Ensemble,0.2,0.0,0.6,-0.123,-0.379,0.13
-Naive,TabPFN-TS,0.0,0.0,0.0,-0.2,-0.345,-0.063
-Naive,AutoTheta,0.0,0.0,0.0,-0.175,-0.322,-0.063
-Naive,AutoARIMA,0.2,0.0,0.6,-0.071,-0.263,0.142
-Naive,AutoETS,0.8,0.4,1.0,0.289,-0.24,0.68
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,1.0,1.0,1.0,0.039,0.026,0.046
-Naive,Seasonal Naive,0.6,0.2,1.0,0.078,-0.115,0.244
-Drift,Chronos-2,0.0,0.0,0.0,-0.425,-0.61,-0.261
-Drift,TiRex,0.0,0.0,0.0,-0.356,-0.506,-0.211
-Drift,Chronos-Bolt,0.0,0.0,0.0,-0.35,-0.519,-0.198
-Drift,TimesFM-2.5,0.0,0.0,0.0,-0.359,-0.465,-0.26
-Drift,Toto-1.0,0.0,0.0,0.0,-0.328,-0.445,-0.227
-Drift,Moirai-2.0,0.0,0.0,0.0,-0.321,-0.458,-0.198
-Drift,Sundial-Base,0.0,0.0,0.0,-0.319,-0.48,-0.183
-Drift,Stat. Ensemble,0.2,0.0,0.6,-0.168,-0.443,0.099
-Drift,TabPFN-TS,0.0,0.0,0.0,-0.248,-0.408,-0.099
-Drift,AutoTheta,0.0,0.0,0.0,-0.223,-0.384,-0.106
-Drift,AutoARIMA,0.2,0.0,0.6,-0.114,-0.314,0.101
-Drift,AutoETS,0.8,0.4,1.0,0.26,-0.298,0.667
-Drift,Naive,0.0,0.0,0.0,-0.04,-0.048,-0.027
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
-Drift,Seasonal Naive,0.6,0.2,1.0,0.041,-0.168,0.219
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-0.485,-0.633,-0.357
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.414,-0.572,-0.285
-Seasonal Naive,Chronos-Bolt,0.0,0.0,0.0,-0.407,-0.541,-0.3
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-0.416,-0.612,-0.244
-Seasonal Naive,Toto-1.0,0.0,0.0,0.0,-0.384,-0.575,-0.22
-Seasonal Naive,Moirai-2.0,0.0,0.0,0.0,-0.377,-0.534,-0.238
-Seasonal Naive,Sundial-Base,0.0,0.0,0.0,-0.375,-0.525,-0.251
-Seasonal Naive,Stat. Ensemble,0.1,0.0,0.3,-0.218,-0.4,-0.08
-Seasonal Naive,TabPFN-TS,0.0,0.0,0.0,-0.302,-0.406,-0.203
-Seasonal Naive,AutoTheta,0.0,0.0,0.0,-0.275,-0.437,-0.13
-Seasonal Naive,AutoARIMA,0.1,0.0,0.3,-0.161,-0.307,-0.044
-Seasonal Naive,AutoETS,0.2,0.0,0.6,0.229,-0.268,0.682
-Seasonal Naive,Naive,0.4,0.0,0.8,-0.085,-0.323,0.104
-Seasonal Naive,Drift,0.4,0.0,0.8,-0.043,-0.28,0.144
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/domain_nature/pairwise_SQL.csv b/tables/domain_nature/pairwise_SQL.csv
deleted file mode 100644
index 439fe51a458665716073ae96eef164830e7a8125..0000000000000000000000000000000000000000
--- a/tables/domain_nature/pairwise_SQL.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TiRex,0.8,0.4,1.0,0.043,-0.001,0.081
-Chronos-2,TimesFM-2.5,0.8,0.4,1.0,0.047,-0.001,0.095
-Chronos-2,Chronos-Bolt,0.8,0.4,1.0,0.064,0.011,0.122
-Chronos-2,Moirai-2.0,0.8,0.4,1.0,0.081,0.019,0.139
-Chronos-2,Toto-1.0,1.0,1.0,1.0,0.065,0.021,0.121
-Chronos-2,TabPFN-TS,1.0,1.0,1.0,0.118,0.077,0.143
-Chronos-2,Sundial-Base,1.0,1.0,1.0,0.134,0.097,0.169
-Chronos-2,Stat. Ensemble,1.0,1.0,1.0,0.304,0.141,0.433
-Chronos-2,AutoARIMA,1.0,1.0,1.0,0.272,0.161,0.393
-Chronos-2,AutoETS,1.0,1.0,1.0,0.717,0.259,0.947
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.418,0.258,0.535
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.401,0.327,0.459
-Chronos-2,Naive,1.0,1.0,1.0,0.516,0.431,0.6
-Chronos-2,Drift,1.0,1.0,1.0,0.533,0.447,0.617
-TiRex,Chronos-2,0.2,0.0,0.6,-0.045,-0.089,0.001
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,TimesFM-2.5,0.8,0.4,1.0,0.004,-0.048,0.043
-TiRex,Chronos-Bolt,0.8,0.4,1.0,0.022,-0.007,0.049
-TiRex,Moirai-2.0,1.0,1.0,1.0,0.04,0.011,0.066
-TiRex,Toto-1.0,0.8,0.4,1.0,0.023,-0.025,0.069
-TiRex,TabPFN-TS,1.0,1.0,1.0,0.078,0.056,0.109
-TiRex,Sundial-Base,1.0,1.0,1.0,0.094,0.065,0.123
-TiRex,Stat. Ensemble,0.8,0.4,1.0,0.273,0.126,0.395
-TiRex,AutoARIMA,1.0,1.0,1.0,0.239,0.146,0.351
-TiRex,AutoETS,1.0,1.0,1.0,0.709,0.217,0.947
-TiRex,AutoTheta,1.0,1.0,1.0,0.392,0.245,0.505
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.374,0.288,0.434
-TiRex,Naive,1.0,1.0,1.0,0.494,0.414,0.575
-TiRex,Drift,1.0,1.0,1.0,0.512,0.429,0.592
-TimesFM-2.5,Chronos-2,0.2,0.0,0.6,-0.049,-0.105,0.001
-TimesFM-2.5,TiRex,0.2,0.0,0.6,-0.004,-0.045,0.045
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,Chronos-Bolt,0.6,0.2,1.0,0.018,-0.051,0.092
-TimesFM-2.5,Moirai-2.0,0.6,0.2,1.0,0.036,-0.024,0.101
-TimesFM-2.5,Toto-1.0,0.8,0.4,1.0,0.019,0.003,0.034
-TimesFM-2.5,TabPFN-TS,0.8,0.4,1.0,0.074,0.029,0.118
-TimesFM-2.5,Sundial-Base,1.0,1.0,1.0,0.091,0.045,0.13
-TimesFM-2.5,Stat. Ensemble,0.8,0.4,1.0,0.27,0.095,0.415
-TimesFM-2.5,AutoARIMA,1.0,1.0,1.0,0.236,0.111,0.38
-TimesFM-2.5,AutoETS,0.8,0.4,1.0,0.709,0.198,0.947
-TimesFM-2.5,AutoTheta,1.0,1.0,1.0,0.389,0.215,0.523
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.372,0.265,0.447
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.492,0.396,0.574
-TimesFM-2.5,Drift,1.0,1.0,1.0,0.51,0.413,0.592
-Chronos-Bolt,Chronos-2,0.2,0.0,0.6,-0.069,-0.139,-0.011
-Chronos-Bolt,TiRex,0.2,0.0,0.6,-0.022,-0.052,0.007
-Chronos-Bolt,TimesFM-2.5,0.4,0.0,0.8,-0.018,-0.101,0.049
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Moirai-2.0,0.7,0.5,0.9,0.018,0.0,0.036
-Chronos-Bolt,Toto-1.0,0.4,0.0,0.8,0.001,-0.078,0.075
-Chronos-Bolt,TabPFN-TS,0.8,0.4,1.0,0.057,0.016,0.09
-Chronos-Bolt,Sundial-Base,0.8,0.4,1.0,0.074,0.025,0.114
-Chronos-Bolt,Stat. Ensemble,1.0,1.0,1.0,0.257,0.129,0.366
-Chronos-Bolt,AutoARIMA,1.0,1.0,1.0,0.222,0.148,0.314
-Chronos-Bolt,AutoETS,1.0,1.0,1.0,0.705,0.221,0.947
-Chronos-Bolt,AutoTheta,1.0,1.0,1.0,0.378,0.249,0.485
-Chronos-Bolt,Seasonal Naive,1.0,1.0,1.0,0.36,0.291,0.411
-Chronos-Bolt,Naive,1.0,1.0,1.0,0.482,0.406,0.562
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.501,0.422,0.579
-Moirai-2.0,Chronos-2,0.2,0.0,0.6,-0.088,-0.161,-0.019
-Moirai-2.0,TiRex,0.0,0.0,0.0,-0.041,-0.07,-0.011
-Moirai-2.0,TimesFM-2.5,0.4,0.0,0.8,-0.037,-0.112,0.024
-Moirai-2.0,Chronos-Bolt,0.3,0.1,0.5,-0.018,-0.037,0.0
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Toto-1.0,0.4,0.0,0.8,-0.018,-0.09,0.05
-Moirai-2.0,TabPFN-TS,0.6,0.2,1.0,0.04,-0.002,0.081
-Moirai-2.0,Sundial-Base,0.8,0.4,1.0,0.057,0.016,0.1
-Moirai-2.0,Stat. Ensemble,0.8,0.4,1.0,0.243,0.114,0.353
-Moirai-2.0,AutoARIMA,1.0,1.0,1.0,0.208,0.128,0.307
-Moirai-2.0,AutoETS,1.0,1.0,1.0,0.703,0.201,0.947
-Moirai-2.0,AutoTheta,1.0,1.0,1.0,0.367,0.232,0.47
-Moirai-2.0,Seasonal Naive,1.0,1.0,1.0,0.349,0.271,0.409
-Moirai-2.0,Naive,1.0,1.0,1.0,0.473,0.396,0.548
-Moirai-2.0,Drift,1.0,1.0,1.0,0.492,0.412,0.566
-Toto-1.0,Chronos-2,0.0,0.0,0.0,-0.07,-0.138,-0.021
-Toto-1.0,TiRex,0.2,0.0,0.6,-0.023,-0.074,0.024
-Toto-1.0,TimesFM-2.5,0.2,0.0,0.6,-0.019,-0.035,-0.003
-Toto-1.0,Chronos-Bolt,0.6,0.2,1.0,-0.001,-0.081,0.073
-Toto-1.0,Moirai-2.0,0.6,0.2,1.0,0.017,-0.053,0.083
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,TabPFN-TS,0.8,0.4,1.0,0.057,-0.002,0.106
-Toto-1.0,Sundial-Base,0.8,0.4,1.0,0.073,0.015,0.116
-Toto-1.0,Stat. Ensemble,0.8,0.4,1.0,0.256,0.07,0.405
-Toto-1.0,AutoARIMA,0.8,0.4,1.0,0.221,0.086,0.367
-Toto-1.0,AutoETS,0.8,0.4,1.0,0.703,0.17,0.947
-Toto-1.0,AutoTheta,0.8,0.4,1.0,0.377,0.192,0.514
-Toto-1.0,Seasonal Naive,1.0,1.0,1.0,0.36,0.241,0.436
-Toto-1.0,Naive,1.0,1.0,1.0,0.482,0.38,0.569
-Toto-1.0,Drift,1.0,1.0,1.0,0.501,0.398,0.588
-TabPFN-TS,Chronos-2,0.0,0.0,0.0,-0.134,-0.167,-0.083
-TabPFN-TS,TiRex,0.0,0.0,0.0,-0.085,-0.123,-0.06
-TabPFN-TS,TimesFM-2.5,0.2,0.0,0.6,-0.08,-0.134,-0.03
-TabPFN-TS,Chronos-Bolt,0.2,0.0,0.6,-0.061,-0.099,-0.016
-TabPFN-TS,Moirai-2.0,0.4,0.0,0.8,-0.042,-0.088,0.002
-TabPFN-TS,Toto-1.0,0.2,0.0,0.6,-0.06,-0.118,0.002
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Sundial-Base,0.8,0.4,1.0,0.018,-0.034,0.06
-TabPFN-TS,Stat. Ensemble,0.8,0.4,1.0,0.212,0.042,0.347
-TabPFN-TS,AutoARIMA,1.0,1.0,1.0,0.175,0.063,0.298
-TabPFN-TS,AutoETS,0.8,0.4,1.0,0.689,0.159,0.945
-TabPFN-TS,AutoTheta,1.0,1.0,1.0,0.34,0.182,0.468
-TabPFN-TS,Seasonal Naive,1.0,1.0,1.0,0.321,0.242,0.372
-TabPFN-TS,Naive,1.0,1.0,1.0,0.451,0.357,0.535
-TabPFN-TS,Drift,1.0,1.0,1.0,0.471,0.375,0.554
-Sundial-Base,Chronos-2,0.0,0.0,0.0,-0.154,-0.204,-0.107
-Sundial-Base,TiRex,0.0,0.0,0.0,-0.104,-0.14,-0.07
-Sundial-Base,TimesFM-2.5,0.0,0.0,0.0,-0.1,-0.149,-0.047
-Sundial-Base,Chronos-Bolt,0.2,0.0,0.6,-0.08,-0.129,-0.025
-Sundial-Base,Moirai-2.0,0.2,0.0,0.6,-0.061,-0.111,-0.017
-Sundial-Base,Toto-1.0,0.2,0.0,0.6,-0.079,-0.131,-0.016
-Sundial-Base,TabPFN-TS,0.2,0.0,0.6,-0.018,-0.063,0.033
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Stat. Ensemble,0.8,0.4,1.0,0.197,0.033,0.333
-Sundial-Base,AutoARIMA,1.0,1.0,1.0,0.16,0.055,0.285
-Sundial-Base,AutoETS,0.8,0.4,1.0,0.688,0.16,0.945
-Sundial-Base,AutoTheta,1.0,1.0,1.0,0.328,0.165,0.457
-Sundial-Base,Seasonal Naive,1.0,1.0,1.0,0.309,0.223,0.39
-Sundial-Base,Naive,1.0,1.0,1.0,0.441,0.364,0.517
-Sundial-Base,Drift,1.0,1.0,1.0,0.461,0.382,0.539
-Stat. Ensemble,Chronos-2,0.0,0.0,0.0,-0.438,-0.765,-0.164
-Stat. Ensemble,TiRex,0.2,0.0,0.6,-0.376,-0.653,-0.145
-Stat. Ensemble,TimesFM-2.5,0.2,0.0,0.6,-0.37,-0.71,-0.105
-Stat. Ensemble,Chronos-Bolt,0.0,0.0,0.0,-0.345,-0.577,-0.148
-Stat. Ensemble,Moirai-2.0,0.2,0.0,0.6,-0.321,-0.545,-0.129
-Stat. Ensemble,Toto-1.0,0.2,0.0,0.6,-0.344,-0.681,-0.075
-Stat. Ensemble,TabPFN-TS,0.2,0.0,0.6,-0.268,-0.532,-0.044
-Stat. Ensemble,Sundial-Base,0.2,0.0,0.6,-0.246,-0.5,-0.035
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoARIMA,0.3,0.0,0.7,-0.047,-0.183,0.047
-Stat. Ensemble,AutoETS,1.0,1.0,1.0,0.645,0.089,0.941
-Stat. Ensemble,AutoTheta,1.0,1.0,1.0,0.163,0.118,0.21
-Stat. Ensemble,Seasonal Naive,0.7,0.4,1.0,0.139,-0.004,0.262
-Stat. Ensemble,Naive,1.0,1.0,1.0,0.304,0.201,0.379
-Stat. Ensemble,Drift,1.0,1.0,1.0,0.329,0.224,0.406
-AutoARIMA,Chronos-2,0.0,0.0,0.0,-0.374,-0.647,-0.191
-AutoARIMA,TiRex,0.0,0.0,0.0,-0.314,-0.54,-0.171
-AutoARIMA,TimesFM-2.5,0.0,0.0,0.0,-0.309,-0.612,-0.125
-AutoARIMA,Chronos-Bolt,0.0,0.0,0.0,-0.285,-0.459,-0.173
-AutoARIMA,Moirai-2.0,0.0,0.0,0.0,-0.262,-0.444,-0.147
-AutoARIMA,Toto-1.0,0.2,0.0,0.6,-0.284,-0.579,-0.094
-AutoARIMA,TabPFN-TS,0.0,0.0,0.0,-0.212,-0.425,-0.067
-AutoARIMA,Sundial-Base,0.0,0.0,0.0,-0.19,-0.399,-0.059
-AutoARIMA,Stat. Ensemble,0.7,0.3,1.0,0.045,-0.049,0.155
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoETS,0.8,0.4,1.0,0.642,0.062,0.941
-AutoARIMA,AutoTheta,0.8,0.4,1.0,0.201,0.087,0.317
-AutoARIMA,Seasonal Naive,0.9,0.7,1.0,0.178,0.076,0.269
-AutoARIMA,Naive,1.0,1.0,1.0,0.335,0.21,0.441
-AutoARIMA,Drift,1.0,1.0,1.0,0.359,0.238,0.463
-AutoETS,Chronos-2,0.0,0.0,0.0,-2.538,-17.795,-0.35
-AutoETS,TiRex,0.0,0.0,0.0,-2.44,-17.904,-0.278
-AutoETS,TimesFM-2.5,0.2,0.0,0.6,-2.436,-17.805,-0.247
-AutoETS,Chronos-Bolt,0.0,0.0,0.0,-2.391,-17.776,-0.283
-AutoETS,Moirai-2.0,0.0,0.0,0.0,-2.363,-17.776,-0.252
-AutoETS,Toto-1.0,0.2,0.0,0.6,-2.366,-17.702,-0.205
-AutoETS,TabPFN-TS,0.2,0.0,0.6,-2.219,-17.076,-0.19
-AutoETS,Sundial-Base,0.2,0.0,0.6,-2.207,-17.119,-0.19
-AutoETS,Stat. Ensemble,0.0,0.0,0.0,-1.814,-15.878,-0.098
-AutoETS,AutoARIMA,0.2,0.0,0.6,-1.791,-15.965,-0.066
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,AutoTheta,0.6,0.2,1.0,-1.464,-14.889,0.062
-AutoETS,Seasonal Naive,0.6,0.2,1.0,-1.364,-14.138,0.138
-AutoETS,Naive,0.8,0.4,1.0,-1.141,-13.92,0.256
-AutoETS,Drift,0.8,0.4,1.0,-1.083,-13.686,0.286
-AutoTheta,Chronos-2,0.0,0.0,0.0,-0.718,-1.152,-0.347
-AutoTheta,TiRex,0.0,0.0,0.0,-0.644,-1.02,-0.324
-AutoTheta,TimesFM-2.5,0.0,0.0,0.0,-0.637,-1.095,-0.274
-AutoTheta,Chronos-Bolt,0.0,0.0,0.0,-0.608,-0.941,-0.332
-AutoTheta,Moirai-2.0,0.0,0.0,0.0,-0.579,-0.887,-0.303
-AutoTheta,Toto-1.0,0.2,0.0,0.6,-0.606,-1.056,-0.237
-AutoTheta,TabPFN-TS,0.0,0.0,0.0,-0.516,-0.879,-0.222
-AutoTheta,Sundial-Base,0.0,0.0,0.0,-0.489,-0.842,-0.197
-AutoTheta,Stat. Ensemble,0.0,0.0,0.0,-0.195,-0.265,-0.134
-AutoTheta,AutoARIMA,0.2,0.0,0.6,-0.251,-0.464,-0.095
-AutoTheta,AutoETS,0.4,0.0,0.8,0.594,-0.066,0.937
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Seasonal Naive,0.6,0.2,1.0,-0.028,-0.202,0.12
-AutoTheta,Naive,0.6,0.2,1.0,0.168,0.021,0.281
-AutoTheta,Drift,0.8,0.4,1.0,0.198,0.049,0.314
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-0.671,-0.848,-0.486
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.598,-0.768,-0.404
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-0.592,-0.807,-0.36
-Seasonal Naive,Chronos-Bolt,0.0,0.0,0.0,-0.563,-0.699,-0.411
-Seasonal Naive,Moirai-2.0,0.0,0.0,0.0,-0.535,-0.692,-0.371
-Seasonal Naive,Toto-1.0,0.0,0.0,0.0,-0.562,-0.773,-0.317
-Seasonal Naive,TabPFN-TS,0.0,0.0,0.0,-0.474,-0.593,-0.319
-Seasonal Naive,Sundial-Base,0.0,0.0,0.0,-0.447,-0.639,-0.286
-Seasonal Naive,Stat. Ensemble,0.3,0.0,0.6,-0.162,-0.355,0.004
-Seasonal Naive,AutoARIMA,0.1,0.0,0.3,-0.216,-0.368,-0.082
-Seasonal Naive,AutoETS,0.4,0.0,0.8,0.577,-0.16,0.934
-Seasonal Naive,AutoTheta,0.4,0.0,0.8,0.028,-0.137,0.168
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Naive,0.8,0.4,1.0,0.191,0.023,0.331
-Seasonal Naive,Drift,0.8,0.4,1.0,0.22,0.045,0.362
-Naive,Chronos-2,0.0,0.0,0.0,-1.064,-1.497,-0.756
-Naive,TiRex,0.0,0.0,0.0,-0.975,-1.352,-0.706
-Naive,TimesFM-2.5,0.0,0.0,0.0,-0.967,-1.345,-0.655
-Naive,Chronos-Bolt,0.0,0.0,0.0,-0.932,-1.282,-0.683
-Naive,Moirai-2.0,0.0,0.0,0.0,-0.897,-1.215,-0.655
-Naive,Toto-1.0,0.0,0.0,0.0,-0.93,-1.321,-0.614
-Naive,TabPFN-TS,0.0,0.0,0.0,-0.821,-1.152,-0.556
-Naive,Sundial-Base,0.0,0.0,0.0,-0.788,-1.071,-0.571
-Naive,Stat. Ensemble,0.0,0.0,0.0,-0.436,-0.61,-0.252
-Naive,AutoARIMA,0.0,0.0,0.0,-0.503,-0.79,-0.267
-Naive,AutoETS,0.2,0.0,0.6,0.533,-0.345,0.933
-Naive,AutoTheta,0.4,0.0,0.8,-0.201,-0.391,-0.021
-Naive,Seasonal Naive,0.2,0.0,0.6,-0.236,-0.496,-0.024
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,1.0,1.0,1.0,0.036,0.023,0.046
-Drift,Chronos-2,0.0,0.0,0.0,-1.142,-1.61,-0.808
-Drift,TiRex,0.0,0.0,0.0,-1.049,-1.449,-0.753
-Drift,TimesFM-2.5,0.0,0.0,0.0,-1.041,-1.451,-0.704
-Drift,Chronos-Bolt,0.0,0.0,0.0,-1.004,-1.377,-0.729
-Drift,Moirai-2.0,0.0,0.0,0.0,-0.968,-1.306,-0.701
-Drift,Toto-1.0,0.0,0.0,0.0,-1.003,-1.426,-0.662
-Drift,TabPFN-TS,0.0,0.0,0.0,-0.889,-1.241,-0.6
-Drift,Sundial-Base,0.0,0.0,0.0,-0.856,-1.169,-0.618
-Drift,Stat. Ensemble,0.0,0.0,0.0,-0.49,-0.685,-0.288
-Drift,AutoARIMA,0.0,0.0,0.0,-0.559,-0.864,-0.312
-Drift,AutoETS,0.2,0.0,0.6,0.52,-0.401,0.932
-Drift,AutoTheta,0.2,0.0,0.6,-0.247,-0.458,-0.051
-Drift,Seasonal Naive,0.2,0.0,0.6,-0.282,-0.567,-0.048
-Drift,Naive,0.0,0.0,0.0,-0.038,-0.048,-0.023
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/domain_nature/pairwise_WAPE.csv b/tables/domain_nature/pairwise_WAPE.csv
deleted file mode 100644
index ab72a41d924bb16897202c76d002e92572f240ed..0000000000000000000000000000000000000000
--- a/tables/domain_nature/pairwise_WAPE.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TiRex,0.6,0.2,1.0,0.032,-0.008,0.069
-Chronos-2,Toto-1.0,0.4,0.0,0.8,0.026,-0.059,0.112
-Chronos-2,TimesFM-2.5,0.6,0.2,1.0,0.033,-0.03,0.091
-Chronos-2,Chronos-Bolt,0.8,0.4,1.0,0.05,0.01,0.084
-Chronos-2,Moirai-2.0,0.8,0.4,1.0,0.062,0.015,0.106
-Chronos-2,TabPFN-TS,1.0,1.0,1.0,0.094,0.059,0.123
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.156,0.106,0.207
-Chronos-2,Sundial-Base,1.0,1.0,1.0,0.219,0.105,0.34
-Chronos-2,Stat. Ensemble,1.0,1.0,1.0,0.299,0.119,0.515
-Chronos-2,AutoETS,1.0,1.0,1.0,0.505,0.142,0.803
-Chronos-2,Naive,1.0,1.0,1.0,0.29,0.225,0.347
-Chronos-2,AutoARIMA,1.0,1.0,1.0,0.455,0.196,0.651
-Chronos-2,Drift,1.0,1.0,1.0,0.371,0.301,0.439
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.47,0.277,0.613
-TiRex,Chronos-2,0.4,0.0,0.8,-0.033,-0.074,0.008
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,Toto-1.0,0.4,0.0,0.8,-0.007,-0.07,0.05
-TiRex,TimesFM-2.5,0.6,0.2,1.0,0.001,-0.044,0.032
-TiRex,Chronos-Bolt,0.8,0.4,1.0,0.018,-0.014,0.055
-TiRex,Moirai-2.0,0.8,0.4,1.0,0.03,0.002,0.06
-TiRex,TabPFN-TS,1.0,1.0,1.0,0.064,0.043,0.09
-TiRex,AutoTheta,1.0,1.0,1.0,0.128,0.062,0.196
-TiRex,Sundial-Base,0.8,0.4,1.0,0.193,0.054,0.34
-TiRex,Stat. Ensemble,0.8,0.4,1.0,0.276,0.057,0.511
-TiRex,AutoETS,0.8,0.4,1.0,0.489,0.099,0.792
-TiRex,Naive,1.0,1.0,1.0,0.267,0.219,0.303
-TiRex,AutoARIMA,1.0,1.0,1.0,0.437,0.152,0.648
-TiRex,Drift,1.0,1.0,1.0,0.35,0.287,0.421
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.453,0.224,0.614
-Toto-1.0,Chronos-2,0.6,0.2,1.0,-0.027,-0.126,0.056
-Toto-1.0,TiRex,0.6,0.2,1.0,0.006,-0.053,0.066
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,TimesFM-2.5,0.6,0.2,1.0,0.007,-0.025,0.038
-Toto-1.0,Chronos-Bolt,0.8,0.4,1.0,0.024,-0.07,0.117
-Toto-1.0,Moirai-2.0,0.8,0.4,1.0,0.036,-0.046,0.124
-Toto-1.0,TabPFN-TS,0.8,0.4,1.0,0.07,0.009,0.134
-Toto-1.0,AutoTheta,0.8,0.4,1.0,0.133,0.026,0.21
-Toto-1.0,Sundial-Base,0.8,0.4,1.0,0.198,0.016,0.364
-Toto-1.0,Stat. Ensemble,0.8,0.4,1.0,0.28,0.021,0.54
-Toto-1.0,AutoETS,0.8,0.4,1.0,0.492,0.069,0.794
-Toto-1.0,Naive,1.0,1.0,1.0,0.271,0.254,0.288
-Toto-1.0,AutoARIMA,0.8,0.4,1.0,0.441,0.118,0.658
-Toto-1.0,Drift,1.0,1.0,1.0,0.354,0.285,0.456
-Toto-1.0,Seasonal Naive,1.0,1.0,1.0,0.456,0.212,0.632
-TimesFM-2.5,Chronos-2,0.4,0.0,0.8,-0.034,-0.1,0.029
-TimesFM-2.5,TiRex,0.4,0.0,0.8,-0.001,-0.034,0.042
-TimesFM-2.5,Toto-1.0,0.4,0.0,0.8,-0.007,-0.04,0.025
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,Chronos-Bolt,0.6,0.2,1.0,0.017,-0.042,0.095
-TimesFM-2.5,Moirai-2.0,0.6,0.2,1.0,0.03,-0.029,0.101
-TimesFM-2.5,TabPFN-TS,1.0,1.0,1.0,0.063,0.029,0.107
-TimesFM-2.5,AutoTheta,0.8,0.4,1.0,0.127,0.039,0.206
-TimesFM-2.5,Sundial-Base,0.8,0.4,1.0,0.193,0.04,0.341
-TimesFM-2.5,Stat. Ensemble,0.8,0.4,1.0,0.275,0.033,0.533
-TimesFM-2.5,AutoETS,0.8,0.4,1.0,0.489,0.089,0.791
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.266,0.233,0.292
-TimesFM-2.5,AutoARIMA,1.0,1.0,1.0,0.437,0.139,0.646
-TimesFM-2.5,Drift,1.0,1.0,1.0,0.35,0.266,0.446
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.452,0.216,0.62
-Chronos-Bolt,Chronos-2,0.2,0.0,0.6,-0.052,-0.092,-0.01
-Chronos-Bolt,TiRex,0.2,0.0,0.6,-0.018,-0.059,0.013
-Chronos-Bolt,Toto-1.0,0.2,0.0,0.6,-0.025,-0.133,0.065
-Chronos-Bolt,TimesFM-2.5,0.4,0.0,0.8,-0.018,-0.105,0.041
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Moirai-2.0,0.7,0.5,0.9,0.013,0.0,0.025
-Chronos-Bolt,TabPFN-TS,0.8,0.4,1.0,0.047,0.009,0.086
-Chronos-Bolt,AutoTheta,1.0,1.0,1.0,0.112,0.045,0.179
-Chronos-Bolt,Sundial-Base,1.0,1.0,1.0,0.179,0.057,0.325
-Chronos-Bolt,Stat. Ensemble,1.0,1.0,1.0,0.262,0.072,0.481
-Chronos-Bolt,AutoETS,0.8,0.4,1.0,0.48,0.113,0.787
-Chronos-Bolt,Naive,1.0,1.0,1.0,0.253,0.175,0.308
-Chronos-Bolt,AutoARIMA,1.0,1.0,1.0,0.427,0.154,0.639
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.338,0.286,0.398
-Chronos-Bolt,Seasonal Naive,1.0,1.0,1.0,0.443,0.234,0.607
-Moirai-2.0,Chronos-2,0.2,0.0,0.6,-0.066,-0.119,-0.015
-Moirai-2.0,TiRex,0.2,0.0,0.6,-0.031,-0.064,-0.002
-Moirai-2.0,Toto-1.0,0.2,0.0,0.6,-0.038,-0.141,0.044
-Moirai-2.0,TimesFM-2.5,0.4,0.0,0.8,-0.031,-0.112,0.028
-Moirai-2.0,Chronos-Bolt,0.3,0.1,0.5,-0.013,-0.026,0.0
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,TabPFN-TS,0.6,0.2,1.0,0.035,0.001,0.076
-Moirai-2.0,AutoTheta,1.0,1.0,1.0,0.101,0.027,0.179
-Moirai-2.0,Sundial-Base,0.8,0.4,1.0,0.168,0.033,0.319
-Moirai-2.0,Stat. Ensemble,0.8,0.4,1.0,0.253,0.051,0.481
-Moirai-2.0,AutoETS,0.8,0.4,1.0,0.473,0.1,0.782
-Moirai-2.0,Naive,1.0,1.0,1.0,0.244,0.173,0.294
-Moirai-2.0,AutoARIMA,1.0,1.0,1.0,0.42,0.137,0.639
-Moirai-2.0,Drift,1.0,1.0,1.0,0.33,0.276,0.39
-Moirai-2.0,Seasonal Naive,1.0,1.0,1.0,0.436,0.216,0.604
-TabPFN-TS,Chronos-2,0.0,0.0,0.0,-0.104,-0.141,-0.063
-TabPFN-TS,TiRex,0.0,0.0,0.0,-0.068,-0.099,-0.045
-TabPFN-TS,Toto-1.0,0.2,0.0,0.6,-0.075,-0.155,-0.009
-TabPFN-TS,TimesFM-2.5,0.0,0.0,0.0,-0.068,-0.12,-0.03
-TabPFN-TS,Chronos-Bolt,0.2,0.0,0.6,-0.049,-0.094,-0.009
-TabPFN-TS,Moirai-2.0,0.4,0.0,0.8,-0.036,-0.082,-0.001
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,AutoTheta,0.8,0.4,1.0,0.068,-0.003,0.154
-TabPFN-TS,Sundial-Base,0.8,0.4,1.0,0.138,0.01,0.274
-TabPFN-TS,Stat. Ensemble,0.8,0.4,1.0,0.226,0.006,0.473
-TabPFN-TS,AutoETS,0.8,0.4,1.0,0.454,0.046,0.781
-TabPFN-TS,Naive,1.0,1.0,1.0,0.217,0.157,0.269
-TabPFN-TS,AutoARIMA,1.0,1.0,1.0,0.399,0.111,0.613
-TabPFN-TS,Drift,1.0,1.0,1.0,0.306,0.22,0.385
-TabPFN-TS,Seasonal Naive,1.0,1.0,1.0,0.415,0.189,0.58
-AutoTheta,Chronos-2,0.0,0.0,0.0,-0.185,-0.261,-0.118
-AutoTheta,TiRex,0.0,0.0,0.0,-0.146,-0.244,-0.066
-AutoTheta,Toto-1.0,0.2,0.0,0.6,-0.154,-0.266,-0.027
-AutoTheta,TimesFM-2.5,0.2,0.0,0.6,-0.146,-0.259,-0.041
-AutoTheta,Chronos-Bolt,0.0,0.0,0.0,-0.126,-0.219,-0.047
-AutoTheta,Moirai-2.0,0.0,0.0,0.0,-0.112,-0.218,-0.028
-AutoTheta,TabPFN-TS,0.2,0.0,0.6,-0.073,-0.182,0.003
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Sundial-Base,0.4,0.0,0.8,0.075,-0.094,0.236
-AutoTheta,Stat. Ensemble,0.4,0.0,0.8,0.17,-0.04,0.439
-AutoTheta,AutoETS,0.8,0.4,1.0,0.414,0.031,0.756
-AutoTheta,Naive,1.0,1.0,1.0,0.159,0.08,0.246
-AutoTheta,AutoARIMA,0.8,0.4,1.0,0.355,0.02,0.592
-AutoTheta,Drift,1.0,1.0,1.0,0.255,0.138,0.359
-AutoTheta,Seasonal Naive,1.0,1.0,1.0,0.373,0.124,0.551
-Sundial-Base,Chronos-2,0.0,0.0,0.0,-0.281,-0.514,-0.118
-Sundial-Base,TiRex,0.2,0.0,0.6,-0.239,-0.515,-0.058
-Sundial-Base,Toto-1.0,0.2,0.0,0.6,-0.248,-0.572,-0.016
-Sundial-Base,TimesFM-2.5,0.2,0.0,0.6,-0.239,-0.516,-0.041
-Sundial-Base,Chronos-Bolt,0.0,0.0,0.0,-0.217,-0.481,-0.06
-Sundial-Base,Moirai-2.0,0.2,0.0,0.6,-0.202,-0.469,-0.034
-Sundial-Base,TabPFN-TS,0.2,0.0,0.6,-0.16,-0.378,-0.01
-Sundial-Base,AutoTheta,0.6,0.2,1.0,-0.081,-0.309,0.086
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Stat. Ensemble,0.6,0.2,1.0,0.102,-0.154,0.356
-Sundial-Base,AutoETS,0.4,0.0,0.8,0.367,-0.107,0.752
-Sundial-Base,Naive,0.6,0.2,1.0,0.091,-0.163,0.262
-Sundial-Base,AutoARIMA,1.0,1.0,1.0,0.302,0.104,0.465
-Sundial-Base,Drift,0.8,0.4,1.0,0.195,-0.036,0.319
-Sundial-Base,Seasonal Naive,1.0,1.0,1.0,0.322,0.196,0.44
-Stat. Ensemble,Chronos-2,0.0,0.0,0.0,-0.427,-1.06,-0.136
-Stat. Ensemble,TiRex,0.2,0.0,0.6,-0.38,-1.043,-0.06
-Stat. Ensemble,Toto-1.0,0.2,0.0,0.6,-0.389,-1.175,-0.022
-Stat. Ensemble,TimesFM-2.5,0.2,0.0,0.6,-0.38,-1.143,-0.034
-Stat. Ensemble,Chronos-Bolt,0.0,0.0,0.0,-0.356,-0.928,-0.077
-Stat. Ensemble,Moirai-2.0,0.2,0.0,0.6,-0.339,-0.928,-0.053
-Stat. Ensemble,TabPFN-TS,0.2,0.0,0.6,-0.292,-0.899,-0.006
-Stat. Ensemble,AutoTheta,0.6,0.2,1.0,-0.204,-0.783,0.038
-Stat. Ensemble,Sundial-Base,0.4,0.0,0.8,-0.114,-0.552,0.134
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoETS,0.6,0.2,1.0,0.294,-0.491,0.752
-Stat. Ensemble,Naive,0.8,0.4,1.0,-0.012,-0.576,0.256
-Stat. Ensemble,AutoARIMA,0.7,0.3,1.0,0.223,0.017,0.48
-Stat. Ensemble,Drift,0.8,0.4,1.0,0.103,-0.193,0.288
-Stat. Ensemble,Seasonal Naive,0.9,0.7,1.0,0.244,0.079,0.437
-AutoETS,Chronos-2,0.0,0.0,0.0,-1.022,-4.086,-0.165
-AutoETS,TiRex,0.2,0.0,0.6,-0.957,-3.819,-0.11
-AutoETS,Toto-1.0,0.2,0.0,0.6,-0.969,-3.864,-0.074
-AutoETS,TimesFM-2.5,0.2,0.0,0.6,-0.955,-3.785,-0.098
-AutoETS,Chronos-Bolt,0.2,0.0,0.6,-0.922,-3.687,-0.128
-AutoETS,Moirai-2.0,0.2,0.0,0.6,-0.897,-3.581,-0.111
-AutoETS,TabPFN-TS,0.2,0.0,0.6,-0.832,-3.56,-0.049
-AutoETS,AutoTheta,0.2,0.0,0.6,-0.707,-3.104,-0.032
-AutoETS,Sundial-Base,0.6,0.2,1.0,-0.579,-3.026,0.096
-AutoETS,Stat. Ensemble,0.4,0.0,0.8,-0.417,-3.027,0.329
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Naive,0.2,0.0,0.6,-0.435,-2.462,0.2
-AutoETS,AutoARIMA,0.6,0.2,1.0,-0.101,-2.153,0.506
-AutoETS,Drift,0.6,0.2,1.0,-0.272,-2.166,0.294
-AutoETS,Seasonal Naive,0.8,0.4,1.0,-0.071,-2.122,0.478
-Naive,Chronos-2,0.0,0.0,0.0,-0.409,-0.532,-0.291
-Naive,TiRex,0.0,0.0,0.0,-0.364,-0.434,-0.28
-Naive,Toto-1.0,0.0,0.0,0.0,-0.372,-0.405,-0.341
-Naive,TimesFM-2.5,0.0,0.0,0.0,-0.363,-0.413,-0.304
-Naive,Chronos-Bolt,0.0,0.0,0.0,-0.339,-0.445,-0.212
-Naive,Moirai-2.0,0.0,0.0,0.0,-0.322,-0.416,-0.209
-Naive,TabPFN-TS,0.0,0.0,0.0,-0.277,-0.369,-0.186
-Naive,AutoTheta,0.0,0.0,0.0,-0.189,-0.326,-0.087
-Naive,Sundial-Base,0.4,0.0,0.8,-0.1,-0.355,0.14
-Naive,Stat. Ensemble,0.2,0.0,0.6,0.012,-0.344,0.365
-Naive,AutoETS,0.8,0.4,1.0,0.303,-0.249,0.711
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,AutoARIMA,0.4,0.0,0.8,0.232,-0.216,0.538
-Naive,Drift,1.0,1.0,1.0,0.114,0.031,0.248
-Naive,Seasonal Naive,0.6,0.2,1.0,0.254,-0.107,0.5
-AutoARIMA,Chronos-2,0.0,0.0,0.0,-0.836,-1.868,-0.243
-AutoARIMA,TiRex,0.0,0.0,0.0,-0.776,-1.839,-0.179
-AutoARIMA,Toto-1.0,0.2,0.0,0.6,-0.788,-1.924,-0.133
-AutoARIMA,TimesFM-2.5,0.0,0.0,0.0,-0.775,-1.821,-0.161
-AutoARIMA,Chronos-Bolt,0.0,0.0,0.0,-0.745,-1.773,-0.182
-AutoARIMA,Moirai-2.0,0.0,0.0,0.0,-0.723,-1.773,-0.159
-AutoARIMA,TabPFN-TS,0.0,0.0,0.0,-0.663,-1.583,-0.125
-AutoARIMA,AutoTheta,0.2,0.0,0.6,-0.549,-1.452,-0.021
-AutoARIMA,Sundial-Base,0.0,0.0,0.0,-0.433,-0.868,-0.116
-AutoARIMA,Stat. Ensemble,0.3,0.0,0.7,-0.287,-0.923,-0.017
-AutoARIMA,AutoETS,0.4,0.0,0.8,0.092,-1.026,0.683
-AutoARIMA,Naive,0.6,0.2,1.0,-0.303,-1.164,0.178
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,Drift,0.6,0.2,1.0,-0.154,-0.935,0.218
-AutoARIMA,Seasonal Naive,0.7,0.3,1.0,0.028,-0.096,0.124
-Drift,Chronos-2,0.0,0.0,0.0,-0.59,-0.781,-0.431
-Drift,TiRex,0.0,0.0,0.0,-0.539,-0.727,-0.403
-Drift,Toto-1.0,0.0,0.0,0.0,-0.549,-0.839,-0.398
-Drift,TimesFM-2.5,0.0,0.0,0.0,-0.538,-0.806,-0.362
-Drift,Chronos-Bolt,0.0,0.0,0.0,-0.511,-0.662,-0.4
-Drift,Moirai-2.0,0.0,0.0,0.0,-0.492,-0.64,-0.381
-Drift,TabPFN-TS,0.0,0.0,0.0,-0.441,-0.627,-0.282
-Drift,AutoTheta,0.0,0.0,0.0,-0.342,-0.56,-0.16
-Drift,Sundial-Base,0.2,0.0,0.6,-0.241,-0.467,0.035
-Drift,Stat. Ensemble,0.2,0.0,0.6,-0.115,-0.405,0.162
-Drift,AutoETS,0.4,0.0,0.8,0.214,-0.417,0.684
-Drift,Naive,0.0,0.0,0.0,-0.128,-0.33,-0.032
-Drift,AutoARIMA,0.4,0.0,0.8,0.134,-0.278,0.483
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
-Drift,Seasonal Naive,0.6,0.2,1.0,0.158,-0.156,0.42
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-0.888,-1.587,-0.384
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.827,-1.591,-0.288
-Seasonal Naive,Toto-1.0,0.0,0.0,0.0,-0.839,-1.721,-0.27
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-0.826,-1.634,-0.276
-Seasonal Naive,Chronos-Bolt,0.0,0.0,0.0,-0.794,-1.545,-0.305
-Seasonal Naive,Moirai-2.0,0.0,0.0,0.0,-0.772,-1.526,-0.276
-Seasonal Naive,TabPFN-TS,0.0,0.0,0.0,-0.71,-1.38,-0.233
-Seasonal Naive,AutoTheta,0.0,0.0,0.0,-0.594,-1.226,-0.141
-Seasonal Naive,Sundial-Base,0.0,0.0,0.0,-0.474,-0.786,-0.244
-Seasonal Naive,Stat. Ensemble,0.1,0.0,0.3,-0.323,-0.777,-0.086
-Seasonal Naive,AutoETS,0.2,0.0,0.6,0.066,-0.917,0.68
-Seasonal Naive,Naive,0.4,0.0,0.8,-0.34,-1.001,0.097
-Seasonal Naive,AutoARIMA,0.3,0.0,0.7,-0.029,-0.142,0.088
-Seasonal Naive,Drift,0.4,0.0,0.8,-0.187,-0.724,0.135
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/domain_nature/pairwise_WQL.csv b/tables/domain_nature/pairwise_WQL.csv
deleted file mode 100644
index 621198599b5086f10bd143e22c04781dcf628b91..0000000000000000000000000000000000000000
--- a/tables/domain_nature/pairwise_WQL.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TimesFM-2.5,0.4,0.0,0.8,0.002,-0.112,0.084
-Chronos-2,TiRex,0.6,0.2,1.0,0.033,-0.011,0.074
-Chronos-2,Toto-1.0,0.4,0.0,0.8,0.02,-0.065,0.099
-Chronos-2,Chronos-Bolt,0.8,0.4,1.0,0.049,0.015,0.087
-Chronos-2,Moirai-2.0,0.8,0.4,1.0,0.058,0.021,0.1
-Chronos-2,TabPFN-TS,1.0,1.0,1.0,0.066,0.021,0.108
-Chronos-2,Sundial-Base,1.0,1.0,1.0,0.261,0.165,0.385
-Chronos-2,Stat. Ensemble,1.0,1.0,1.0,0.596,0.289,0.786
-Chronos-2,AutoARIMA,1.0,1.0,1.0,0.556,0.248,0.769
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.651,0.412,0.8
-Chronos-2,AutoETS,1.0,1.0,1.0,0.851,0.447,0.96
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.713,0.389,0.882
-Chronos-2,Naive,1.0,1.0,1.0,0.781,0.608,0.893
-Chronos-2,Drift,1.0,1.0,1.0,0.789,0.626,0.897
-TimesFM-2.5,Chronos-2,0.6,0.2,1.0,-0.002,-0.091,0.101
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TiRex,0.4,0.0,0.8,0.031,-0.031,0.124
-TimesFM-2.5,Toto-1.0,0.6,0.2,1.0,0.018,-0.031,0.066
-TimesFM-2.5,Chronos-Bolt,0.8,0.4,1.0,0.048,-0.034,0.132
-TimesFM-2.5,Moirai-2.0,0.8,0.4,1.0,0.056,-0.012,0.133
-TimesFM-2.5,TabPFN-TS,0.8,0.4,1.0,0.064,0.016,0.123
-TimesFM-2.5,Sundial-Base,1.0,1.0,1.0,0.26,0.114,0.407
-TimesFM-2.5,Stat. Ensemble,0.8,0.4,1.0,0.595,0.249,0.809
-TimesFM-2.5,AutoARIMA,1.0,1.0,1.0,0.556,0.186,0.792
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.65,0.373,0.816
-TimesFM-2.5,AutoETS,0.8,0.4,1.0,0.854,0.428,0.963
-TimesFM-2.5,AutoTheta,1.0,1.0,1.0,0.712,0.366,0.888
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.78,0.575,0.902
-TimesFM-2.5,Drift,1.0,1.0,1.0,0.789,0.594,0.906
-TiRex,Chronos-2,0.4,0.0,0.8,-0.034,-0.08,0.011
-TiRex,TimesFM-2.5,0.6,0.2,1.0,-0.032,-0.142,0.03
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,Toto-1.0,0.4,0.0,0.8,-0.014,-0.083,0.045
-TiRex,Chronos-Bolt,0.6,0.2,1.0,0.017,-0.018,0.051
-TiRex,Moirai-2.0,0.6,0.2,1.0,0.026,-0.005,0.056
-TiRex,TabPFN-TS,0.8,0.4,1.0,0.034,-0.006,0.062
-TiRex,Sundial-Base,1.0,1.0,1.0,0.236,0.12,0.391
-TiRex,Stat. Ensemble,0.8,0.4,1.0,0.582,0.262,0.777
-TiRex,AutoARIMA,1.0,1.0,1.0,0.541,0.197,0.764
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.639,0.379,0.8
-TiRex,AutoETS,1.0,1.0,1.0,0.849,0.438,0.96
-TiRex,AutoTheta,1.0,1.0,1.0,0.703,0.375,0.877
-TiRex,Naive,1.0,1.0,1.0,0.773,0.582,0.889
-TiRex,Drift,1.0,1.0,1.0,0.782,0.601,0.893
-Toto-1.0,Chronos-2,0.6,0.2,1.0,-0.02,-0.11,0.061
-Toto-1.0,TimesFM-2.5,0.4,0.0,0.8,-0.018,-0.071,0.03
-Toto-1.0,TiRex,0.6,0.2,1.0,0.013,-0.047,0.077
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,Chronos-Bolt,0.8,0.4,1.0,0.03,-0.058,0.099
-Toto-1.0,Moirai-2.0,0.8,0.4,1.0,0.039,-0.038,0.101
-Toto-1.0,TabPFN-TS,0.8,0.4,1.0,0.048,-0.008,0.093
-Toto-1.0,Sundial-Base,0.8,0.4,1.0,0.246,0.087,0.423
-Toto-1.0,Stat. Ensemble,0.8,0.4,1.0,0.588,0.233,0.794
-Toto-1.0,AutoARIMA,0.8,0.4,1.0,0.548,0.166,0.782
-Toto-1.0,Seasonal Naive,1.0,1.0,1.0,0.644,0.359,0.812
-Toto-1.0,AutoETS,0.8,0.4,1.0,0.851,0.418,0.962
-Toto-1.0,AutoTheta,1.0,1.0,1.0,0.707,0.353,0.887
-Toto-1.0,Naive,1.0,1.0,1.0,0.776,0.566,0.898
-Toto-1.0,Drift,1.0,1.0,1.0,0.785,0.585,0.902
-Chronos-Bolt,Chronos-2,0.2,0.0,0.6,-0.052,-0.096,-0.015
-Chronos-Bolt,TimesFM-2.5,0.2,0.0,0.6,-0.05,-0.152,0.033
-Chronos-Bolt,TiRex,0.4,0.0,0.8,-0.017,-0.054,0.018
-Chronos-Bolt,Toto-1.0,0.2,0.0,0.6,-0.031,-0.109,0.055
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Moirai-2.0,0.7,0.5,0.9,0.009,0.0,0.021
-Chronos-Bolt,TabPFN-TS,0.8,0.4,1.0,0.018,-0.011,0.046
-Chronos-Bolt,Sundial-Base,1.0,1.0,1.0,0.223,0.116,0.358
-Chronos-Bolt,Stat. Ensemble,1.0,1.0,1.0,0.575,0.258,0.778
-Chronos-Bolt,AutoARIMA,1.0,1.0,1.0,0.533,0.197,0.76
-Chronos-Bolt,Seasonal Naive,1.0,1.0,1.0,0.633,0.366,0.794
-Chronos-Bolt,AutoETS,1.0,1.0,1.0,0.848,0.434,0.96
-Chronos-Bolt,AutoTheta,1.0,1.0,1.0,0.698,0.368,0.878
-Chronos-Bolt,Naive,1.0,1.0,1.0,0.769,0.58,0.887
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.778,0.599,0.891
-Moirai-2.0,Chronos-2,0.2,0.0,0.6,-0.062,-0.111,-0.021
-Moirai-2.0,TimesFM-2.5,0.2,0.0,0.6,-0.059,-0.154,0.012
-Moirai-2.0,TiRex,0.4,0.0,0.8,-0.027,-0.059,0.005
-Moirai-2.0,Toto-1.0,0.2,0.0,0.6,-0.041,-0.113,0.037
-Moirai-2.0,Chronos-Bolt,0.3,0.1,0.5,-0.009,-0.022,0.0
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,TabPFN-TS,0.8,0.4,1.0,0.009,-0.011,0.031
-Moirai-2.0,Sundial-Base,1.0,1.0,1.0,0.216,0.102,0.357
-Moirai-2.0,Stat. Ensemble,1.0,1.0,1.0,0.571,0.245,0.776
-Moirai-2.0,AutoARIMA,1.0,1.0,1.0,0.529,0.185,0.759
-Moirai-2.0,Seasonal Naive,1.0,1.0,1.0,0.629,0.357,0.794
-Moirai-2.0,AutoETS,1.0,1.0,1.0,0.847,0.427,0.96
-Moirai-2.0,AutoTheta,1.0,1.0,1.0,0.695,0.362,0.878
-Moirai-2.0,Naive,1.0,1.0,1.0,0.767,0.572,0.887
-Moirai-2.0,Drift,1.0,1.0,1.0,0.776,0.591,0.891
-TabPFN-TS,Chronos-2,0.0,0.0,0.0,-0.071,-0.121,-0.022
-TabPFN-TS,TimesFM-2.5,0.2,0.0,0.6,-0.069,-0.14,-0.016
-TabPFN-TS,TiRex,0.2,0.0,0.6,-0.036,-0.067,0.006
-TabPFN-TS,Toto-1.0,0.2,0.0,0.6,-0.05,-0.102,0.008
-TabPFN-TS,Chronos-Bolt,0.2,0.0,0.6,-0.018,-0.048,0.011
-TabPFN-TS,Moirai-2.0,0.2,0.0,0.6,-0.009,-0.032,0.011
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Sundial-Base,1.0,1.0,1.0,0.209,0.084,0.36
-TabPFN-TS,Stat. Ensemble,0.8,0.4,1.0,0.567,0.227,0.78
-TabPFN-TS,AutoARIMA,1.0,1.0,1.0,0.525,0.161,0.763
-TabPFN-TS,Seasonal Naive,1.0,1.0,1.0,0.626,0.346,0.795
-TabPFN-TS,AutoETS,1.0,1.0,1.0,0.845,0.411,0.959
-TabPFN-TS,AutoTheta,1.0,1.0,1.0,0.692,0.345,0.878
-TabPFN-TS,Naive,1.0,1.0,1.0,0.765,0.562,0.889
-TabPFN-TS,Drift,1.0,1.0,1.0,0.774,0.582,0.893
-Sundial-Base,Chronos-2,0.0,0.0,0.0,-0.354,-0.627,-0.197
-Sundial-Base,TimesFM-2.5,0.0,0.0,0.0,-0.351,-0.685,-0.128
-Sundial-Base,TiRex,0.0,0.0,0.0,-0.309,-0.642,-0.136
-Sundial-Base,Toto-1.0,0.2,0.0,0.6,-0.327,-0.734,-0.095
-Sundial-Base,Chronos-Bolt,0.0,0.0,0.0,-0.287,-0.558,-0.132
-Sundial-Base,Moirai-2.0,0.0,0.0,0.0,-0.275,-0.554,-0.113
-Sundial-Base,TabPFN-TS,0.0,0.0,0.0,-0.264,-0.562,-0.092
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Stat. Ensemble,0.8,0.4,1.0,0.453,0.145,0.692
-Sundial-Base,AutoARIMA,1.0,1.0,1.0,0.4,0.087,0.676
-Sundial-Base,Seasonal Naive,1.0,1.0,1.0,0.527,0.284,0.714
-Sundial-Base,AutoETS,0.8,0.4,1.0,0.808,0.284,0.953
-Sundial-Base,AutoTheta,1.0,1.0,1.0,0.611,0.269,0.825
-Sundial-Base,Naive,1.0,1.0,1.0,0.703,0.519,0.848
-Sundial-Base,Drift,1.0,1.0,1.0,0.714,0.541,0.854
-Stat. Ensemble,Chronos-2,0.0,0.0,0.0,-1.476,-3.677,-0.406
-Stat. Ensemble,TimesFM-2.5,0.2,0.0,0.6,-1.471,-4.234,-0.332
-Stat. Ensemble,TiRex,0.2,0.0,0.6,-1.394,-3.477,-0.355
-Stat. Ensemble,Toto-1.0,0.2,0.0,0.6,-1.427,-3.85,-0.304
-Stat. Ensemble,Chronos-Bolt,0.0,0.0,0.0,-1.354,-3.502,-0.348
-Stat. Ensemble,Moirai-2.0,0.0,0.0,0.0,-1.333,-3.474,-0.324
-Stat. Ensemble,TabPFN-TS,0.2,0.0,0.6,-1.312,-3.54,-0.294
-Stat. Ensemble,Sundial-Base,0.2,0.0,0.6,-0.829,-2.252,-0.17
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoARIMA,0.3,0.0,0.7,-0.098,-0.253,0.033
-Stat. Ensemble,Seasonal Naive,0.7,0.4,1.0,0.136,-0.006,0.263
-Stat. Ensemble,AutoETS,1.0,1.0,1.0,0.679,0.122,0.942
-Stat. Ensemble,AutoTheta,1.0,1.0,1.0,0.288,0.141,0.431
-Stat. Ensemble,Naive,1.0,1.0,1.0,0.457,0.381,0.525
-Stat. Ensemble,Drift,1.0,1.0,1.0,0.478,0.402,0.547
-AutoARIMA,Chronos-2,0.0,0.0,0.0,-1.255,-3.321,-0.329
-AutoARIMA,TimesFM-2.5,0.0,0.0,0.0,-1.25,-3.81,-0.229
-AutoARIMA,TiRex,0.0,0.0,0.0,-1.18,-3.234,-0.246
-AutoARIMA,Toto-1.0,0.2,0.0,0.6,-1.21,-3.591,-0.199
-AutoARIMA,Chronos-Bolt,0.0,0.0,0.0,-1.143,-3.167,-0.246
-AutoARIMA,Moirai-2.0,0.0,0.0,0.0,-1.124,-3.155,-0.227
-AutoARIMA,TabPFN-TS,0.0,0.0,0.0,-1.105,-3.225,-0.192
-AutoARIMA,Sundial-Base,0.0,0.0,0.0,-0.666,-2.082,-0.095
-AutoARIMA,Stat. Ensemble,0.7,0.3,1.0,0.089,-0.034,0.202
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,Seasonal Naive,0.9,0.7,1.0,0.213,0.085,0.322
-AutoARIMA,AutoETS,0.8,0.4,1.0,0.69,0.14,0.945
-AutoARIMA,AutoTheta,1.0,1.0,1.0,0.352,0.163,0.498
-AutoARIMA,Naive,1.0,1.0,1.0,0.505,0.439,0.55
-AutoARIMA,Drift,1.0,1.0,1.0,0.524,0.461,0.571
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-1.865,-3.998,-0.7
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-1.859,-4.429,-0.596
-Seasonal Naive,TiRex,0.0,0.0,0.0,-1.77,-3.99,-0.611
-Seasonal Naive,Toto-1.0,0.0,0.0,0.0,-1.808,-4.323,-0.561
-Seasonal Naive,Chronos-Bolt,0.0,0.0,0.0,-1.723,-3.847,-0.577
-Seasonal Naive,Moirai-2.0,0.0,0.0,0.0,-1.699,-3.847,-0.554
-Seasonal Naive,TabPFN-TS,0.0,0.0,0.0,-1.675,-3.872,-0.53
-Seasonal Naive,Sundial-Base,0.0,0.0,0.0,-1.116,-2.499,-0.396
-Seasonal Naive,Stat. Ensemble,0.3,0.0,0.6,-0.157,-0.357,0.006
-Seasonal Naive,AutoARIMA,0.1,0.0,0.3,-0.27,-0.475,-0.093
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,AutoETS,0.6,0.2,1.0,0.619,-0.191,0.934
-Seasonal Naive,AutoTheta,0.6,0.2,1.0,0.176,-0.119,0.407
-Seasonal Naive,Naive,1.0,1.0,1.0,0.372,0.263,0.474
-Seasonal Naive,Drift,1.0,1.0,1.0,0.396,0.285,0.498
-AutoETS,Chronos-2,0.0,0.0,0.0,-5.72,-23.987,-0.809
-AutoETS,TimesFM-2.5,0.2,0.0,0.6,-5.843,-25.798,-0.747
-AutoETS,TiRex,0.0,0.0,0.0,-5.624,-24.278,-0.78
-AutoETS,Toto-1.0,0.2,0.0,0.6,-5.702,-25.133,-0.719
-AutoETS,Chronos-Bolt,0.0,0.0,0.0,-5.569,-23.796,-0.768
-AutoETS,Moirai-2.0,0.0,0.0,0.0,-5.529,-23.796,-0.746
-AutoETS,TabPFN-TS,0.0,0.0,0.0,-5.472,-23.681,-0.697
-AutoETS,Sundial-Base,0.2,0.0,0.6,-4.218,-20.183,-0.396
-AutoETS,Stat. Ensemble,0.0,0.0,0.0,-2.12,-16.234,-0.139
-AutoETS,AutoARIMA,0.2,0.0,0.6,-2.23,-17.179,-0.162
-AutoETS,Seasonal Naive,0.4,0.0,0.8,-1.625,-14.209,0.161
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,AutoTheta,0.8,0.4,1.0,-1.332,-14.278,0.126
-AutoETS,Naive,0.8,0.4,1.0,-0.858,-12.363,0.398
-AutoETS,Drift,0.8,0.4,1.0,-0.804,-12.205,0.425
-AutoTheta,Chronos-2,0.0,0.0,0.0,-2.479,-7.506,-0.637
-AutoTheta,TimesFM-2.5,0.0,0.0,0.0,-2.472,-7.959,-0.578
-AutoTheta,TiRex,0.0,0.0,0.0,-2.364,-7.162,-0.601
-AutoTheta,Toto-1.0,0.0,0.0,0.0,-2.41,-7.837,-0.546
-AutoTheta,Chronos-Bolt,0.0,0.0,0.0,-2.307,-7.179,-0.581
-AutoTheta,Moirai-2.0,0.0,0.0,0.0,-2.277,-7.179,-0.567
-AutoTheta,TabPFN-TS,0.0,0.0,0.0,-2.248,-7.22,-0.527
-AutoTheta,Sundial-Base,0.0,0.0,0.0,-1.57,-4.717,-0.367
-AutoTheta,Stat. Ensemble,0.0,0.0,0.0,-0.405,-0.758,-0.164
-AutoTheta,AutoARIMA,0.0,0.0,0.0,-0.543,-0.992,-0.195
-AutoTheta,Seasonal Naive,0.4,0.0,0.8,-0.214,-0.687,0.106
-AutoTheta,AutoETS,0.2,0.0,0.6,0.571,-0.144,0.935
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Naive,0.8,0.4,1.0,0.237,0.048,0.39
-AutoTheta,Drift,0.8,0.4,1.0,0.266,0.077,0.417
-Naive,Chronos-2,0.0,0.0,0.0,-3.56,-8.328,-1.553
-Naive,TimesFM-2.5,0.0,0.0,0.0,-3.55,-9.211,-1.351
-Naive,TiRex,0.0,0.0,0.0,-3.409,-7.988,-1.391
-Naive,Toto-1.0,0.0,0.0,0.0,-3.469,-8.786,-1.303
-Naive,Chronos-Bolt,0.0,0.0,0.0,-3.334,-7.847,-1.379
-Naive,Moirai-2.0,0.0,0.0,0.0,-3.295,-7.822,-1.337
-Naive,TabPFN-TS,0.0,0.0,0.0,-3.257,-7.97,-1.283
-Naive,Sundial-Base,0.0,0.0,0.0,-2.368,-5.581,-1.081
-Naive,Stat. Ensemble,0.0,0.0,0.0,-0.841,-1.107,-0.615
-Naive,AutoARIMA,0.0,0.0,0.0,-1.022,-1.221,-0.784
-Naive,Seasonal Naive,0.0,0.0,0.0,-0.592,-0.903,-0.356
-Naive,AutoETS,0.2,0.0,0.6,0.462,-0.661,0.925
-Naive,AutoTheta,0.2,0.0,0.6,-0.311,-0.64,-0.051
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,1.0,1.0,1.0,0.038,0.023,0.048
-Drift,Chronos-2,0.0,0.0,0.0,-3.74,-8.702,-1.674
-Drift,TimesFM-2.5,0.0,0.0,0.0,-3.731,-9.61,-1.462
-Drift,TiRex,0.0,0.0,0.0,-3.584,-8.339,-1.504
-Drift,Toto-1.0,0.0,0.0,0.0,-3.647,-9.168,-1.412
-Drift,Chronos-Bolt,0.0,0.0,0.0,-3.506,-8.192,-1.492
-Drift,Moirai-2.0,0.0,0.0,0.0,-3.466,-8.166,-1.447
-Drift,TabPFN-TS,0.0,0.0,0.0,-3.426,-8.32,-1.391
-Drift,Sundial-Base,0.0,0.0,0.0,-2.502,-5.838,-1.177
-Drift,Stat. Ensemble,0.0,0.0,0.0,-0.914,-1.209,-0.671
-Drift,AutoARIMA,0.0,0.0,0.0,-1.102,-1.33,-0.857
-Drift,Seasonal Naive,0.0,0.0,0.0,-0.655,-0.991,-0.399
-Drift,AutoETS,0.2,0.0,0.6,0.446,-0.738,0.924
-Drift,AutoTheta,0.2,0.0,0.6,-0.363,-0.714,-0.083
-Drift,Naive,0.0,0.0,0.0,-0.04,-0.05,-0.023
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/domain_retail/leaderboard_MASE.csv b/tables/domain_retail/leaderboard_MASE.csv
deleted file mode 100644
index fa4193fa03f19c9c7e69b496eb71711ba7801b24..0000000000000000000000000000000000000000
--- a/tables/domain_retail/leaderboard_MASE.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,93.92857142857142,31.501656677015877,0.0,0.3572266334258295,0.0,0.0
-TimesFM-2.5,78.57142857142857,23.432210853887824,0.0,0.19641556213711014,0.2,0.0
-TiRex,77.14285714285715,22.162040254473435,0.0,0.07370943284719464,0.0,0.0
-Moirai-2.0,60.535714285714285,19.71091545425906,0.0,0.21348722605763143,0.25,0.0
-Chronos-Bolt,59.464285714285715,19.675877583589962,0.0,0.04549884800513035,0.0,0.0
-Stat. Ensemble,56.07142857142857,13.027815355863082,0.0,25.918509003474572,0.0,5.0
-TabPFN-TS,53.75,21.87830321957843,0.0,25.2531360586838,0.0,10.0
-Toto-1.0,52.142857142857146,16.413339138501282,0.0,5.986121467058823,0.1,0.0
-Sundial-Base,46.07142857142858,16.038005246480637,0.0,7.81832079433529,0.0,0.0
-AutoTheta,40.71428571428572,10.280766781650541,0.0,0.7288304926503824,0.0,0.0
-AutoETS,38.21428571428571,9.26831193284996,0.0,0.8958939228431373,0.0,0.0
-AutoARIMA,33.92857142857142,10.226042531476098,0.0,3.96671253120826,0.0,0.0
-Naive,23.750000000000004,-6.914332478799268,0.0,0.05127838559511824,0.0,0.0
-Seasonal Naive,22.857142857142858,0.0,0.0,0.04917723782336198,0.0,0.0
-Drift,12.85714285714286,-11.344894423586283,0.0,0.04833643247478821,0.0,0.0
diff --git a/tables/domain_retail/leaderboard_SQL.csv b/tables/domain_retail/leaderboard_SQL.csv
deleted file mode 100644
index afe39a7bc19c7e4d6a527c0e13e32e6f5f4d4fc5..0000000000000000000000000000000000000000
--- a/tables/domain_retail/leaderboard_SQL.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,95.35714285714285,43.96240642608832,0.0,0.3572266334258295,0.0,0.0
-TiRex,86.07142857142858,36.823555756781786,0.0,0.07370943284719464,0.0,0.0
-TimesFM-2.5,83.21428571428572,37.10811211763772,0.0,0.19641556213711014,0.2,0.0
-Chronos-Bolt,69.46428571428571,34.10760588639609,0.0,0.04549884800513035,0.0,0.0
-Moirai-2.0,64.46428571428572,33.491148656047734,0.0,0.21348722605763143,0.25,0.0
-Toto-1.0,59.64285714285714,30.939728300714854,0.0,5.986121467058823,0.1,0.0
-TabPFN-TS,59.464285714285715,35.43634457814382,0.0,25.2531360586838,0.0,10.0
-Stat. Ensemble,48.92857142857142,23.85904743187437,0.0,25.918509003474572,0.0,5.0
-AutoARIMA,41.42857142857143,23.978096972410967,0.0,3.96671253120826,0.0,0.0
-Sundial-Base,38.57142857142858,25.74930746838757,0.0,7.81832079433529,0.0,0.0
-AutoTheta,35.35714285714286,19.31393356433696,0.0,0.7288304926503824,0.0,0.0
-AutoETS,32.142857142857146,-30.072080218522256,0.0,0.8958939228431373,0.0,0.0
-Seasonal Naive,18.571428571428573,0.0,0.0,0.04917723782336198,0.0,0.0
-Naive,13.750000000000002,-24.765318851224837,0.0,0.05127838559511824,0.0,0.0
-Drift,3.571428571428571,-28.889461313877618,0.0,0.04833643247478821,0.0,0.0
diff --git a/tables/domain_retail/leaderboard_WAPE.csv b/tables/domain_retail/leaderboard_WAPE.csv
deleted file mode 100644
index c1b777a944f601f37cba932b354bc52cec51900d..0000000000000000000000000000000000000000
--- a/tables/domain_retail/leaderboard_WAPE.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,92.85714285714288,36.379613913489294,0.0,0.3572266334258295,0.0,0.0
-TiRex,81.07142857142857,26.676884863739826,0.0,0.07370943284719464,0.0,0.0
-TimesFM-2.5,80.71428571428572,26.63143268920436,0.0,0.19641556213711014,0.2,0.0
-TabPFN-TS,67.67857142857142,31.495409904169957,0.0,25.2531360586838,0.0,10.0
-Chronos-Bolt,59.464285714285715,21.34999371322177,0.0,0.04549884800513035,0.0,0.0
-Moirai-2.0,59.10714285714285,21.832707013778197,0.0,0.21348722605763143,0.25,0.0
-Toto-1.0,55.714285714285715,19.746861195373988,0.0,5.986121467058823,0.1,0.0
-Stat. Ensemble,51.42857142857142,15.056774830590047,0.0,25.918509003474572,0.0,5.0
-Sundial-Base,50.0,19.631923145741638,0.0,7.81832079433529,0.0,0.0
-AutoARIMA,37.142857142857146,13.94268827584597,0.0,3.96671253120826,0.0,0.0
-AutoTheta,35.71428571428571,11.9856769445434,0.0,0.7288304926503824,0.0,0.0
-AutoETS,33.92857142857142,9.663626183996287,0.0,0.8958939228431373,0.0,0.0
-Naive,20.178571428571423,-5.797213358383746,0.0,0.05127838559511824,0.0,0.0
-Seasonal Naive,18.571428571428573,0.0,0.0,0.04917723782336198,0.0,0.0
-Drift,6.42857142857143,-11.068952925850128,0.0,0.04833643247478821,0.0,0.0
diff --git a/tables/domain_retail/leaderboard_WQL.csv b/tables/domain_retail/leaderboard_WQL.csv
deleted file mode 100644
index 661a4e32c76c425846175bca2578eb980b0d84f5..0000000000000000000000000000000000000000
--- a/tables/domain_retail/leaderboard_WQL.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,93.21428571428572,48.70640032243877,0.0,0.3572266334258295,0.0,0.0
-TiRex,84.28571428571426,41.29715572696604,0.0,0.07370943284719464,0.0,0.0
-TimesFM-2.5,81.78571428571428,41.64654333985731,0.0,0.19641556213711014,0.2,0.0
-TabPFN-TS,70.53571428571429,44.77960188404002,0.0,25.2531360586838,0.0,10.0
-Chronos-Bolt,65.17857142857143,37.464866804831296,0.0,0.04549884800513035,0.0,0.0
-Moirai-2.0,64.82142857142857,37.53610716017488,0.0,0.21348722605763143,0.25,0.0
-Toto-1.0,61.428571428571445,35.67337775117804,0.0,5.986121467058823,0.1,0.0
-Stat. Ensemble,46.78571428571428,26.910379403137718,0.0,25.918509003474572,0.0,5.0
-Sundial-Base,44.28571428571429,30.894178482978774,0.0,7.81832079433529,0.0,0.0
-AutoARIMA,41.785714285714285,28.45447313005621,0.0,3.96671253120826,0.0,0.0
-AutoTheta,33.92857142857143,21.431184897649857,0.0,0.7288304926503824,0.0,0.0
-AutoETS,30.0,-32.00072832424261,0.0,0.8958939228431373,0.0,0.0
-Seasonal Naive,16.42857142857143,0.0,0.0,0.04917723782336198,0.0,0.0
-Naive,11.964285714285715,-25.330360744270486,0.0,0.05127838559511824,0.0,0.0
-Drift,3.571428571428572,-29.953276469478407,0.0,0.04833643247478821,0.0,0.0
diff --git a/tables/domain_retail/pairwise_MASE.csv b/tables/domain_retail/pairwise_MASE.csv
deleted file mode 100644
index f542562325a40e7c893d57269dfd5f395e9d86b8..0000000000000000000000000000000000000000
--- a/tables/domain_retail/pairwise_MASE.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TimesFM-2.5,0.75,0.55,0.95,0.105,0.047,0.172
-Chronos-2,TiRex,0.8,0.6,0.95,0.12,0.057,0.189
-Chronos-2,Moirai-2.0,0.9,0.75,1.0,0.147,0.085,0.21
-Chronos-2,Chronos-Bolt,0.95,0.85,1.0,0.147,0.091,0.208
-Chronos-2,Stat. Ensemble,1.0,1.0,1.0,0.212,0.133,0.285
-Chronos-2,TabPFN-TS,0.85,0.7,1.0,0.123,0.048,0.207
-Chronos-2,Toto-1.0,0.95,0.85,1.0,0.181,0.119,0.241
-Chronos-2,Sundial-Base,0.95,0.8,1.0,0.184,0.124,0.243
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.237,0.161,0.309
-Chronos-2,AutoETS,1.0,1.0,1.0,0.245,0.16,0.324
-Chronos-2,AutoARIMA,1.0,1.0,1.0,0.237,0.167,0.305
-Chronos-2,Naive,1.0,1.0,1.0,0.359,0.251,0.452
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.315,0.234,0.388
-Chronos-2,Drift,1.0,1.0,1.0,0.385,0.282,0.471
-TimesFM-2.5,Chronos-2,0.25,0.05,0.45,-0.118,-0.208,-0.049
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TiRex,0.6,0.399,0.8,0.016,-0.005,0.038
-TimesFM-2.5,Moirai-2.0,0.7,0.5,0.875,0.046,0.019,0.078
-TimesFM-2.5,Chronos-Bolt,0.8,0.65,0.925,0.047,0.027,0.069
-TimesFM-2.5,Stat. Ensemble,0.75,0.55,0.95,0.12,0.049,0.2
-TimesFM-2.5,TabPFN-TS,0.7,0.5,0.9,0.02,-0.113,0.124
-TimesFM-2.5,Toto-1.0,0.8,0.625,0.95,0.084,0.044,0.129
-TimesFM-2.5,Sundial-Base,0.95,0.8,1.0,0.088,0.058,0.118
-TimesFM-2.5,AutoTheta,0.9,0.75,1.0,0.147,0.079,0.223
-TimesFM-2.5,AutoETS,0.9,0.75,1.0,0.156,0.075,0.244
-TimesFM-2.5,AutoARIMA,0.9,0.75,1.0,0.147,0.089,0.208
-TimesFM-2.5,Naive,0.9,0.75,1.0,0.284,0.181,0.37
-TimesFM-2.5,Seasonal Naive,0.95,0.85,1.0,0.234,0.156,0.306
-TimesFM-2.5,Drift,0.9,0.75,1.0,0.312,0.214,0.394
-TiRex,Chronos-2,0.2,0.05,0.4,-0.136,-0.233,-0.061
-TiRex,TimesFM-2.5,0.4,0.2,0.601,-0.017,-0.039,0.005
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,Moirai-2.0,0.8,0.6,0.95,0.031,-0.001,0.062
-TiRex,Chronos-Bolt,0.9,0.75,1.0,0.031,0.001,0.057
-TiRex,Stat. Ensemble,0.8,0.6,0.95,0.105,0.033,0.185
-TiRex,TabPFN-TS,0.75,0.55,0.95,0.004,-0.126,0.108
-TiRex,Toto-1.0,0.85,0.7,1.0,0.069,0.028,0.113
-TiRex,Sundial-Base,0.8,0.6,0.95,0.073,0.039,0.107
-TiRex,AutoTheta,0.85,0.65,1.0,0.132,0.066,0.208
-TiRex,AutoETS,0.8,0.6,0.95,0.142,0.061,0.233
-TiRex,AutoARIMA,0.9,0.75,1.0,0.133,0.08,0.189
-TiRex,Naive,0.9,0.75,1.0,0.272,0.172,0.357
-TiRex,Seasonal Naive,0.95,0.85,1.0,0.222,0.146,0.292
-TiRex,Drift,0.9,0.75,1.0,0.301,0.208,0.38
-Moirai-2.0,Chronos-2,0.1,0.0,0.25,-0.172,-0.265,-0.093
-Moirai-2.0,TimesFM-2.5,0.3,0.125,0.5,-0.049,-0.084,-0.019
-Moirai-2.0,TiRex,0.2,0.05,0.4,-0.031,-0.066,0.001
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Chronos-Bolt,0.575,0.375,0.775,0.0,-0.019,0.019
-Moirai-2.0,Stat. Ensemble,0.75,0.55,0.9,0.077,0.005,0.152
-Moirai-2.0,TabPFN-TS,0.6,0.4,0.8,-0.028,-0.162,0.088
-Moirai-2.0,Toto-1.0,0.6,0.399,0.8,0.039,0.012,0.077
-Moirai-2.0,Sundial-Base,0.7,0.5,0.9,0.044,0.014,0.075
-Moirai-2.0,AutoTheta,0.8,0.65,0.95,0.105,0.04,0.176
-Moirai-2.0,AutoETS,0.75,0.55,0.9,0.115,0.033,0.196
-Moirai-2.0,AutoARIMA,0.85,0.7,1.0,0.106,0.046,0.164
-Moirai-2.0,Naive,0.75,0.55,0.9,0.249,0.143,0.338
-Moirai-2.0,Seasonal Naive,0.75,0.55,0.9,0.197,0.115,0.268
-Moirai-2.0,Drift,0.75,0.55,0.9,0.279,0.178,0.362
-Chronos-Bolt,Chronos-2,0.05,0.0,0.15,-0.173,-0.262,-0.1
-Chronos-Bolt,TimesFM-2.5,0.2,0.075,0.35,-0.049,-0.074,-0.027
-Chronos-Bolt,TiRex,0.1,0.0,0.25,-0.032,-0.061,-0.001
-Chronos-Bolt,Moirai-2.0,0.425,0.225,0.625,-0.0,-0.019,0.019
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Stat. Ensemble,0.6,0.35,0.8,0.076,0.002,0.156
-Chronos-Bolt,TabPFN-TS,0.6,0.4,0.85,-0.028,-0.163,0.085
-Chronos-Bolt,Toto-1.0,0.7,0.5,0.9,0.039,0.01,0.078
-Chronos-Bolt,Sundial-Base,0.65,0.45,0.85,0.043,0.016,0.072
-Chronos-Bolt,AutoTheta,0.75,0.55,0.9,0.105,0.038,0.179
-Chronos-Bolt,AutoETS,0.85,0.65,1.0,0.115,0.031,0.204
-Chronos-Bolt,AutoARIMA,0.85,0.7,1.0,0.105,0.045,0.167
-Chronos-Bolt,Naive,0.85,0.65,1.0,0.249,0.14,0.338
-Chronos-Bolt,Seasonal Naive,0.85,0.65,1.0,0.197,0.112,0.272
-Chronos-Bolt,Drift,0.85,0.65,1.0,0.279,0.178,0.363
-Stat. Ensemble,Chronos-2,0.0,0.0,0.0,-0.27,-0.399,-0.153
-Stat. Ensemble,TimesFM-2.5,0.25,0.05,0.45,-0.136,-0.25,-0.052
-Stat. Ensemble,TiRex,0.2,0.05,0.4,-0.117,-0.227,-0.035
-Stat. Ensemble,Moirai-2.0,0.25,0.1,0.45,-0.083,-0.179,-0.005
-Stat. Ensemble,Chronos-Bolt,0.4,0.2,0.65,-0.083,-0.185,-0.002
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,TabPFN-TS,0.525,0.325,0.725,-0.113,-0.269,0.033
-Stat. Ensemble,Toto-1.0,0.4,0.2,0.65,-0.041,-0.11,0.022
-Stat. Ensemble,Sundial-Base,0.5,0.3,0.7,-0.036,-0.131,0.043
-Stat. Ensemble,AutoTheta,0.85,0.7,1.0,0.031,0.009,0.052
-Stat. Ensemble,AutoETS,0.95,0.85,1.0,0.041,0.013,0.071
-Stat. Ensemble,AutoARIMA,0.75,0.55,0.95,0.031,-0.011,0.072
-Stat. Ensemble,Naive,0.9,0.75,1.0,0.187,0.106,0.265
-Stat. Ensemble,Seasonal Naive,0.925,0.8,1.0,0.13,0.09,0.168
-Stat. Ensemble,Drift,0.95,0.85,1.0,0.219,0.144,0.293
-TabPFN-TS,Chronos-2,0.15,0.0,0.3,-0.14,-0.261,-0.051
-TabPFN-TS,TimesFM-2.5,0.3,0.1,0.5,-0.02,-0.142,0.101
-TabPFN-TS,TiRex,0.25,0.05,0.45,-0.004,-0.121,0.112
-TabPFN-TS,Moirai-2.0,0.4,0.2,0.6,0.027,-0.097,0.14
-TabPFN-TS,Chronos-Bolt,0.4,0.15,0.6,0.027,-0.092,0.14
-TabPFN-TS,Stat. Ensemble,0.475,0.275,0.675,0.102,-0.034,0.212
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Toto-1.0,0.55,0.35,0.75,0.065,-0.055,0.173
-TabPFN-TS,Sundial-Base,0.65,0.45,0.85,0.07,-0.034,0.168
-TabPFN-TS,AutoTheta,0.6,0.4,0.8,0.129,-0.007,0.242
-TabPFN-TS,AutoETS,0.55,0.35,0.75,0.139,-0.001,0.256
-TabPFN-TS,AutoARIMA,0.75,0.55,0.95,0.13,0.022,0.225
-TabPFN-TS,Naive,0.8,0.6,0.95,0.269,0.12,0.394
-TabPFN-TS,Seasonal Naive,0.8,0.625,0.925,0.219,0.088,0.326
-TabPFN-TS,Drift,0.85,0.7,1.0,0.298,0.155,0.423
-Toto-1.0,Chronos-2,0.05,0.0,0.15,-0.22,-0.318,-0.135
-Toto-1.0,TimesFM-2.5,0.2,0.05,0.375,-0.092,-0.148,-0.046
-Toto-1.0,TiRex,0.15,0.0,0.3,-0.074,-0.128,-0.029
-Toto-1.0,Moirai-2.0,0.4,0.2,0.601,-0.041,-0.083,-0.012
-Toto-1.0,Chronos-Bolt,0.3,0.1,0.5,-0.041,-0.084,-0.01
-Toto-1.0,Stat. Ensemble,0.6,0.35,0.8,0.039,-0.022,0.099
-Toto-1.0,TabPFN-TS,0.45,0.25,0.65,-0.07,-0.21,0.052
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,Sundial-Base,0.55,0.3,0.75,0.004,-0.04,0.038
-Toto-1.0,AutoTheta,0.75,0.55,0.9,0.068,0.015,0.12
-Toto-1.0,AutoETS,0.75,0.55,0.9,0.079,0.008,0.144
-Toto-1.0,AutoARIMA,0.7,0.5,0.9,0.069,0.019,0.118
-Toto-1.0,Naive,0.8,0.6,0.95,0.218,0.111,0.301
-Toto-1.0,Seasonal Naive,0.8,0.6,0.95,0.164,0.088,0.227
-Toto-1.0,Drift,0.8,0.6,0.95,0.249,0.152,0.325
-Sundial-Base,Chronos-2,0.05,0.0,0.2,-0.226,-0.321,-0.141
-Sundial-Base,TimesFM-2.5,0.05,0.0,0.2,-0.097,-0.134,-0.061
-Sundial-Base,TiRex,0.2,0.05,0.4,-0.079,-0.12,-0.04
-Sundial-Base,Moirai-2.0,0.3,0.1,0.5,-0.046,-0.081,-0.014
-Sundial-Base,Chronos-Bolt,0.35,0.15,0.55,-0.045,-0.077,-0.016
-Sundial-Base,Stat. Ensemble,0.5,0.3,0.7,0.035,-0.045,0.116
-Sundial-Base,TabPFN-TS,0.35,0.15,0.55,-0.075,-0.201,0.033
-Sundial-Base,Toto-1.0,0.45,0.25,0.7,-0.004,-0.04,0.038
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,AutoTheta,0.6,0.35,0.8,0.064,-0.009,0.142
-Sundial-Base,AutoETS,0.6,0.35,0.8,0.075,-0.013,0.163
-Sundial-Base,AutoARIMA,0.75,0.55,0.9,0.065,0.006,0.122
-Sundial-Base,Naive,0.75,0.55,0.9,0.215,0.092,0.312
-Sundial-Base,Seasonal Naive,0.75,0.55,0.9,0.16,0.068,0.237
-Sundial-Base,Drift,0.75,0.55,0.9,0.246,0.133,0.337
-AutoTheta,Chronos-2,0.0,0.0,0.0,-0.31,-0.447,-0.191
-AutoTheta,TimesFM-2.5,0.1,0.0,0.25,-0.172,-0.287,-0.085
-AutoTheta,TiRex,0.15,0.0,0.35,-0.153,-0.263,-0.071
-AutoTheta,Moirai-2.0,0.2,0.05,0.35,-0.117,-0.214,-0.042
-AutoTheta,Chronos-Bolt,0.25,0.1,0.45,-0.117,-0.218,-0.039
-AutoTheta,Stat. Ensemble,0.15,0.0,0.3,-0.032,-0.054,-0.009
-AutoTheta,TabPFN-TS,0.4,0.2,0.6,-0.148,-0.32,0.007
-AutoTheta,Toto-1.0,0.25,0.1,0.45,-0.073,-0.137,-0.015
-AutoTheta,Sundial-Base,0.4,0.2,0.65,-0.069,-0.166,0.009
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,AutoETS,0.55,0.35,0.75,0.011,-0.014,0.04
-AutoTheta,AutoARIMA,0.55,0.349,0.75,0.001,-0.04,0.048
-AutoTheta,Naive,0.85,0.65,1.0,0.161,0.08,0.236
-AutoTheta,Seasonal Naive,0.95,0.85,1.0,0.103,0.062,0.142
-AutoTheta,Drift,0.9,0.75,1.0,0.194,0.124,0.261
-AutoETS,Chronos-2,0.0,0.0,0.0,-0.325,-0.48,-0.19
-AutoETS,TimesFM-2.5,0.1,0.0,0.25,-0.185,-0.323,-0.081
-AutoETS,TiRex,0.2,0.05,0.4,-0.166,-0.303,-0.065
-AutoETS,Moirai-2.0,0.25,0.1,0.45,-0.13,-0.244,-0.035
-AutoETS,Chronos-Bolt,0.15,0.0,0.35,-0.13,-0.256,-0.032
-AutoETS,Stat. Ensemble,0.05,0.0,0.15,-0.043,-0.076,-0.013
-AutoETS,TabPFN-TS,0.45,0.25,0.65,-0.161,-0.344,0.001
-AutoETS,Toto-1.0,0.25,0.1,0.45,-0.085,-0.168,-0.009
-AutoETS,Sundial-Base,0.4,0.2,0.65,-0.081,-0.194,0.013
-AutoETS,AutoTheta,0.45,0.25,0.65,-0.011,-0.041,0.014
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,AutoARIMA,0.55,0.3,0.75,-0.011,-0.069,0.042
-AutoETS,Naive,0.8,0.6,0.95,0.151,0.064,0.232
-AutoETS,Seasonal Naive,0.85,0.65,1.0,0.093,0.047,0.135
-AutoETS,Drift,0.85,0.7,1.0,0.185,0.109,0.257
-AutoARIMA,Chronos-2,0.0,0.0,0.0,-0.311,-0.439,-0.2
-AutoARIMA,TimesFM-2.5,0.1,0.0,0.25,-0.172,-0.263,-0.097
-AutoARIMA,TiRex,0.1,0.0,0.25,-0.153,-0.233,-0.087
-AutoARIMA,Moirai-2.0,0.15,0.0,0.3,-0.118,-0.196,-0.049
-AutoARIMA,Chronos-Bolt,0.15,0.0,0.3,-0.118,-0.201,-0.047
-AutoARIMA,Stat. Ensemble,0.25,0.05,0.45,-0.032,-0.077,0.011
-AutoARIMA,TabPFN-TS,0.25,0.05,0.45,-0.149,-0.291,-0.022
-AutoARIMA,Toto-1.0,0.3,0.1,0.5,-0.074,-0.134,-0.019
-AutoARIMA,Sundial-Base,0.25,0.1,0.45,-0.069,-0.139,-0.006
-AutoARIMA,AutoTheta,0.45,0.25,0.651,-0.001,-0.051,0.039
-AutoARIMA,AutoETS,0.45,0.25,0.7,0.011,-0.044,0.064
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,Naive,0.7,0.5,0.9,0.16,0.072,0.243
-AutoARIMA,Seasonal Naive,0.8,0.6,0.95,0.102,0.056,0.141
-AutoARIMA,Drift,0.8,0.6,0.95,0.194,0.113,0.268
-Naive,Chronos-2,0.0,0.0,0.0,-0.561,-0.826,-0.336
-Naive,TimesFM-2.5,0.1,0.0,0.25,-0.396,-0.588,-0.221
-Naive,TiRex,0.1,0.0,0.25,-0.374,-0.555,-0.208
-Naive,Moirai-2.0,0.25,0.1,0.45,-0.332,-0.51,-0.167
-Naive,Chronos-Bolt,0.15,0.0,0.35,-0.331,-0.511,-0.163
-Naive,Stat. Ensemble,0.1,0.0,0.25,-0.229,-0.361,-0.119
-Naive,TabPFN-TS,0.2,0.05,0.4,-0.369,-0.651,-0.136
-Naive,Toto-1.0,0.2,0.05,0.4,-0.279,-0.43,-0.125
-Naive,Sundial-Base,0.25,0.1,0.45,-0.273,-0.454,-0.101
-Naive,AutoTheta,0.15,0.0,0.35,-0.192,-0.309,-0.087
-Naive,AutoETS,0.2,0.05,0.4,-0.178,-0.301,-0.068
-Naive,AutoARIMA,0.3,0.1,0.5,-0.191,-0.321,-0.078
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Seasonal Naive,0.375,0.225,0.525,-0.069,-0.161,0.001
-Naive,Drift,0.95,0.85,1.0,0.04,0.025,0.058
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-0.46,-0.635,-0.305
-Seasonal Naive,TimesFM-2.5,0.05,0.0,0.15,-0.306,-0.442,-0.185
-Seasonal Naive,TiRex,0.05,0.0,0.15,-0.285,-0.413,-0.17
-Seasonal Naive,Moirai-2.0,0.25,0.1,0.45,-0.245,-0.366,-0.13
-Seasonal Naive,Chronos-Bolt,0.15,0.0,0.35,-0.245,-0.374,-0.126
-Seasonal Naive,Stat. Ensemble,0.075,0.0,0.2,-0.15,-0.202,-0.099
-Seasonal Naive,TabPFN-TS,0.2,0.075,0.375,-0.28,-0.484,-0.097
-Seasonal Naive,Toto-1.0,0.2,0.05,0.4,-0.196,-0.294,-0.096
-Seasonal Naive,Sundial-Base,0.25,0.1,0.45,-0.191,-0.311,-0.073
-Seasonal Naive,AutoTheta,0.05,0.0,0.15,-0.115,-0.166,-0.066
-Seasonal Naive,AutoETS,0.15,0.0,0.35,-0.102,-0.156,-0.049
-Seasonal Naive,AutoARIMA,0.2,0.05,0.4,-0.114,-0.165,-0.06
-Seasonal Naive,Naive,0.625,0.475,0.775,0.065,-0.001,0.139
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Drift,0.95,0.85,1.0,0.102,0.042,0.167
-Drift,Chronos-2,0.0,0.0,0.0,-0.626,-0.892,-0.394
-Drift,TimesFM-2.5,0.1,0.0,0.25,-0.454,-0.651,-0.273
-Drift,TiRex,0.1,0.0,0.25,-0.43,-0.613,-0.262
-Drift,Moirai-2.0,0.25,0.1,0.45,-0.387,-0.568,-0.217
-Drift,Chronos-Bolt,0.15,0.0,0.35,-0.386,-0.569,-0.217
-Drift,Stat. Ensemble,0.05,0.0,0.15,-0.28,-0.414,-0.168
-Drift,TabPFN-TS,0.15,0.0,0.3,-0.425,-0.733,-0.183
-Drift,Toto-1.0,0.2,0.05,0.4,-0.332,-0.481,-0.179
-Drift,Sundial-Base,0.25,0.1,0.45,-0.326,-0.508,-0.153
-Drift,AutoTheta,0.1,0.0,0.25,-0.241,-0.353,-0.142
-Drift,AutoETS,0.15,0.0,0.3,-0.227,-0.346,-0.122
-Drift,AutoARIMA,0.2,0.05,0.4,-0.24,-0.366,-0.127
-Drift,Naive,0.05,0.0,0.15,-0.041,-0.061,-0.025
-Drift,Seasonal Naive,0.05,0.0,0.15,-0.113,-0.201,-0.044
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/domain_retail/pairwise_SQL.csv b/tables/domain_retail/pairwise_SQL.csv
deleted file mode 100644
index a8808c5bc6bc6776490cbb7c781ca64a0eb56e4b..0000000000000000000000000000000000000000
--- a/tables/domain_retail/pairwise_SQL.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TiRex,0.8,0.6,0.95,0.113,0.05,0.183
-Chronos-2,TimesFM-2.5,0.85,0.7,1.0,0.109,0.05,0.174
-Chronos-2,Chronos-Bolt,0.95,0.85,1.0,0.15,0.091,0.211
-Chronos-2,Moirai-2.0,0.95,0.85,1.0,0.157,0.095,0.219
-Chronos-2,Toto-1.0,0.95,0.85,1.0,0.189,0.119,0.253
-Chronos-2,TabPFN-TS,0.85,0.7,1.0,0.132,0.051,0.216
-Chronos-2,Stat. Ensemble,1.0,1.0,1.0,0.264,0.185,0.334
-Chronos-2,AutoARIMA,1.0,1.0,1.0,0.263,0.19,0.335
-Chronos-2,Sundial-Base,1.0,1.0,1.0,0.245,0.186,0.302
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.305,0.219,0.389
-Chronos-2,AutoETS,1.0,1.0,1.0,0.544,0.291,0.735
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.44,0.349,0.516
-Chronos-2,Naive,1.0,1.0,1.0,0.551,0.436,0.64
-Chronos-2,Drift,1.0,1.0,1.0,0.565,0.454,0.651
-TiRex,Chronos-2,0.2,0.05,0.4,-0.127,-0.224,-0.052
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,TimesFM-2.5,0.5,0.3,0.7,-0.005,-0.02,0.012
-TiRex,Chronos-Bolt,0.85,0.7,1.0,0.041,0.019,0.066
-TiRex,Moirai-2.0,0.85,0.7,1.0,0.05,0.022,0.081
-TiRex,Toto-1.0,0.9,0.75,1.0,0.085,0.046,0.129
-TiRex,TabPFN-TS,0.8,0.65,0.95,0.021,-0.113,0.133
-TiRex,Stat. Ensemble,1.0,1.0,1.0,0.17,0.103,0.244
-TiRex,AutoARIMA,1.0,1.0,1.0,0.169,0.119,0.221
-TiRex,Sundial-Base,0.95,0.85,1.0,0.149,0.116,0.183
-TiRex,AutoTheta,1.0,1.0,1.0,0.217,0.146,0.291
-TiRex,AutoETS,1.0,1.0,1.0,0.488,0.191,0.704
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.368,0.285,0.444
-TiRex,Naive,1.0,1.0,1.0,0.494,0.386,0.578
-TiRex,Drift,1.0,1.0,1.0,0.51,0.406,0.593
-TimesFM-2.5,Chronos-2,0.15,0.0,0.3,-0.122,-0.211,-0.053
-TimesFM-2.5,TiRex,0.5,0.3,0.7,0.005,-0.012,0.019
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,Chronos-Bolt,0.8,0.65,0.925,0.046,0.027,0.067
-TimesFM-2.5,Moirai-2.0,0.8,0.625,0.95,0.054,0.028,0.086
-TimesFM-2.5,Toto-1.0,0.8,0.625,0.95,0.089,0.048,0.136
-TimesFM-2.5,TabPFN-TS,0.75,0.55,0.95,0.026,-0.105,0.134
-TimesFM-2.5,Stat. Ensemble,0.95,0.85,1.0,0.174,0.102,0.254
-TimesFM-2.5,AutoARIMA,1.0,1.0,1.0,0.173,0.118,0.229
-TimesFM-2.5,Sundial-Base,1.0,1.0,1.0,0.153,0.125,0.183
-TimesFM-2.5,AutoTheta,0.95,0.85,1.0,0.221,0.141,0.299
-TimesFM-2.5,AutoETS,0.95,0.85,1.0,0.489,0.194,0.705
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.371,0.282,0.452
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.496,0.383,0.581
-TimesFM-2.5,Drift,1.0,1.0,1.0,0.512,0.404,0.595
-Chronos-Bolt,Chronos-2,0.05,0.0,0.15,-0.176,-0.268,-0.1
-Chronos-Bolt,TiRex,0.15,0.0,0.3,-0.043,-0.071,-0.019
-Chronos-Bolt,TimesFM-2.5,0.2,0.075,0.35,-0.048,-0.072,-0.027
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Moirai-2.0,0.625,0.425,0.8,0.009,-0.005,0.025
-Chronos-Bolt,Toto-1.0,0.75,0.575,0.9,0.046,0.016,0.087
-Chronos-Bolt,TabPFN-TS,0.65,0.45,0.85,-0.021,-0.159,0.096
-Chronos-Bolt,Stat. Ensemble,0.85,0.7,1.0,0.135,0.059,0.211
-Chronos-Bolt,AutoARIMA,0.85,0.7,1.0,0.133,0.079,0.19
-Chronos-Bolt,Sundial-Base,1.0,1.0,1.0,0.113,0.085,0.14
-Chronos-Bolt,AutoTheta,0.85,0.7,1.0,0.183,0.106,0.259
-Chronos-Bolt,AutoETS,0.85,0.7,1.0,0.468,0.158,0.691
-Chronos-Bolt,Seasonal Naive,0.95,0.85,1.0,0.341,0.248,0.419
-Chronos-Bolt,Naive,0.95,0.85,1.0,0.472,0.356,0.561
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.489,0.376,0.575
-Moirai-2.0,Chronos-2,0.05,0.0,0.15,-0.187,-0.28,-0.105
-Moirai-2.0,TiRex,0.15,0.0,0.3,-0.053,-0.088,-0.023
-Moirai-2.0,TimesFM-2.5,0.2,0.05,0.375,-0.058,-0.094,-0.029
-Moirai-2.0,Chronos-Bolt,0.375,0.2,0.575,-0.009,-0.026,0.005
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Toto-1.0,0.6,0.399,0.8,0.037,0.009,0.076
-Moirai-2.0,TabPFN-TS,0.55,0.35,0.75,-0.03,-0.173,0.09
-Moirai-2.0,Stat. Ensemble,0.85,0.7,1.0,0.127,0.05,0.204
-Moirai-2.0,AutoARIMA,0.85,0.7,1.0,0.125,0.069,0.182
-Moirai-2.0,Sundial-Base,0.95,0.85,1.0,0.104,0.077,0.13
-Moirai-2.0,AutoTheta,0.85,0.7,1.0,0.176,0.099,0.252
-Moirai-2.0,AutoETS,0.85,0.7,1.0,0.466,0.154,0.691
-Moirai-2.0,Seasonal Naive,0.9,0.75,1.0,0.335,0.24,0.415
-Moirai-2.0,Naive,0.9,0.75,1.0,0.467,0.348,0.557
-Moirai-2.0,Drift,0.95,0.85,1.0,0.484,0.368,0.573
-Toto-1.0,Chronos-2,0.05,0.0,0.15,-0.232,-0.339,-0.135
-Toto-1.0,TiRex,0.1,0.0,0.25,-0.093,-0.148,-0.048
-Toto-1.0,TimesFM-2.5,0.2,0.05,0.375,-0.098,-0.158,-0.05
-Toto-1.0,Chronos-Bolt,0.25,0.1,0.425,-0.048,-0.095,-0.016
-Toto-1.0,Moirai-2.0,0.4,0.2,0.601,-0.038,-0.083,-0.009
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,TabPFN-TS,0.4,0.2,0.6,-0.07,-0.211,0.053
-Toto-1.0,Stat. Ensemble,0.8,0.6,0.95,0.093,0.03,0.155
-Toto-1.0,AutoARIMA,0.85,0.7,1.0,0.092,0.047,0.141
-Toto-1.0,Sundial-Base,0.8,0.6,0.95,0.07,0.026,0.106
-Toto-1.0,AutoTheta,0.85,0.7,1.0,0.144,0.083,0.205
-Toto-1.0,AutoETS,0.85,0.7,1.0,0.447,0.124,0.688
-Toto-1.0,Seasonal Naive,0.9,0.75,1.0,0.309,0.224,0.379
-Toto-1.0,Naive,0.95,0.85,1.0,0.446,0.331,0.535
-Toto-1.0,Drift,0.95,0.85,1.0,0.464,0.352,0.552
-TabPFN-TS,Chronos-2,0.15,0.0,0.3,-0.152,-0.275,-0.053
-TabPFN-TS,TiRex,0.2,0.05,0.35,-0.022,-0.153,0.101
-TabPFN-TS,TimesFM-2.5,0.25,0.05,0.45,-0.027,-0.155,0.095
-TabPFN-TS,Chronos-Bolt,0.35,0.15,0.55,0.02,-0.106,0.137
-TabPFN-TS,Moirai-2.0,0.45,0.25,0.65,0.029,-0.099,0.148
-TabPFN-TS,Toto-1.0,0.6,0.4,0.8,0.065,-0.056,0.174
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Stat. Ensemble,0.675,0.475,0.875,0.152,0.038,0.257
-TabPFN-TS,AutoARIMA,0.75,0.55,0.9,0.151,0.04,0.249
-TabPFN-TS,Sundial-Base,0.75,0.55,0.9,0.13,0.03,0.224
-TabPFN-TS,AutoTheta,0.8,0.6,0.95,0.2,0.065,0.321
-TabPFN-TS,AutoETS,0.7,0.5,0.9,0.475,0.164,0.703
-TabPFN-TS,Seasonal Naive,0.85,0.7,0.975,0.354,0.221,0.462
-TabPFN-TS,Naive,0.9,0.75,1.0,0.483,0.342,0.595
-TabPFN-TS,Drift,0.9,0.75,1.0,0.499,0.364,0.61
-Stat. Ensemble,Chronos-2,0.0,0.0,0.0,-0.359,-0.501,-0.227
-Stat. Ensemble,TiRex,0.0,0.0,0.0,-0.205,-0.323,-0.115
-Stat. Ensemble,TimesFM-2.5,0.05,0.0,0.15,-0.211,-0.34,-0.113
-Stat. Ensemble,Chronos-Bolt,0.15,0.0,0.3,-0.156,-0.267,-0.062
-Stat. Ensemble,Moirai-2.0,0.15,0.0,0.3,-0.145,-0.256,-0.052
-Stat. Ensemble,Toto-1.0,0.2,0.05,0.4,-0.103,-0.183,-0.031
-Stat. Ensemble,TabPFN-TS,0.325,0.125,0.525,-0.179,-0.346,-0.04
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoARIMA,0.75,0.55,0.95,-0.002,-0.063,0.047
-Stat. Ensemble,Sundial-Base,0.55,0.35,0.75,-0.025,-0.123,0.055
-Stat. Ensemble,AutoTheta,0.85,0.7,1.0,0.056,0.003,0.105
-Stat. Ensemble,AutoETS,0.85,0.7,1.0,0.399,0.052,0.666
-Stat. Ensemble,Seasonal Naive,0.975,0.925,1.0,0.239,0.176,0.293
-Stat. Ensemble,Naive,1.0,1.0,1.0,0.39,0.284,0.48
-Stat. Ensemble,Drift,1.0,1.0,1.0,0.409,0.307,0.497
-AutoARIMA,Chronos-2,0.0,0.0,0.0,-0.357,-0.504,-0.234
-AutoARIMA,TiRex,0.0,0.0,0.0,-0.203,-0.284,-0.135
-AutoARIMA,TimesFM-2.5,0.0,0.0,0.0,-0.209,-0.298,-0.134
-AutoARIMA,Chronos-Bolt,0.15,0.0,0.3,-0.154,-0.235,-0.086
-AutoARIMA,Moirai-2.0,0.15,0.0,0.3,-0.143,-0.222,-0.074
-AutoARIMA,Toto-1.0,0.15,0.0,0.3,-0.101,-0.164,-0.05
-AutoARIMA,TabPFN-TS,0.25,0.1,0.45,-0.177,-0.331,-0.041
-AutoARIMA,Stat. Ensemble,0.25,0.05,0.45,0.002,-0.049,0.059
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,Sundial-Base,0.4,0.2,0.6,-0.024,-0.088,0.037
-AutoARIMA,AutoTheta,0.7,0.5,0.9,0.058,0.0,0.116
-AutoARIMA,AutoETS,0.75,0.55,0.95,0.395,0.042,0.661
-AutoARIMA,Seasonal Naive,1.0,1.0,1.0,0.24,0.165,0.309
-AutoARIMA,Naive,1.0,1.0,1.0,0.391,0.278,0.486
-AutoARIMA,Drift,1.0,1.0,1.0,0.41,0.302,0.502
-Sundial-Base,Chronos-2,0.0,0.0,0.0,-0.325,-0.432,-0.229
-Sundial-Base,TiRex,0.05,0.0,0.15,-0.175,-0.223,-0.132
-Sundial-Base,TimesFM-2.5,0.0,0.0,0.0,-0.181,-0.224,-0.143
-Sundial-Base,Chronos-Bolt,0.0,0.0,0.0,-0.127,-0.163,-0.093
-Sundial-Base,Moirai-2.0,0.05,0.0,0.15,-0.116,-0.15,-0.084
-Sundial-Base,Toto-1.0,0.2,0.05,0.4,-0.075,-0.118,-0.027
-Sundial-Base,TabPFN-TS,0.25,0.1,0.45,-0.15,-0.288,-0.031
-Sundial-Base,Stat. Ensemble,0.45,0.25,0.65,0.025,-0.059,0.109
-Sundial-Base,AutoARIMA,0.6,0.4,0.8,0.023,-0.039,0.081
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,AutoTheta,0.65,0.45,0.85,0.08,-0.01,0.169
-Sundial-Base,AutoETS,0.65,0.45,0.85,0.403,0.057,0.668
-Sundial-Base,Seasonal Naive,0.8,0.6,0.95,0.257,0.152,0.353
-Sundial-Base,Naive,0.85,0.7,1.0,0.405,0.266,0.51
-Sundial-Base,Drift,0.85,0.7,1.0,0.424,0.286,0.526
-AutoTheta,Chronos-2,0.0,0.0,0.0,-0.44,-0.637,-0.281
-AutoTheta,TiRex,0.0,0.0,0.0,-0.277,-0.411,-0.171
-AutoTheta,TimesFM-2.5,0.05,0.0,0.15,-0.283,-0.427,-0.164
-AutoTheta,Chronos-Bolt,0.15,0.0,0.3,-0.225,-0.349,-0.118
-AutoTheta,Moirai-2.0,0.15,0.0,0.3,-0.213,-0.337,-0.11
-AutoTheta,Toto-1.0,0.15,0.0,0.3,-0.168,-0.258,-0.09
-AutoTheta,TabPFN-TS,0.2,0.05,0.4,-0.25,-0.474,-0.07
-AutoTheta,Stat. Ensemble,0.15,0.0,0.3,-0.06,-0.117,-0.003
-AutoTheta,AutoARIMA,0.3,0.1,0.5,-0.061,-0.131,-0.0
-AutoTheta,Sundial-Base,0.35,0.15,0.55,-0.087,-0.203,0.01
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,AutoETS,0.55,0.35,0.8,0.369,-0.012,0.652
-AutoTheta,Seasonal Naive,0.95,0.85,1.0,0.193,0.137,0.247
-AutoTheta,Naive,0.95,0.85,1.0,0.353,0.251,0.43
-AutoTheta,Drift,1.0,1.0,1.0,0.374,0.277,0.447
-AutoETS,Chronos-2,0.0,0.0,0.0,-1.192,-2.773,-0.411
-AutoETS,TiRex,0.0,0.0,0.0,-0.953,-2.38,-0.237
-AutoETS,TimesFM-2.5,0.05,0.0,0.15,-0.958,-2.393,-0.241
-AutoETS,Chronos-Bolt,0.15,0.0,0.3,-0.881,-2.241,-0.188
-AutoETS,Moirai-2.0,0.15,0.0,0.3,-0.872,-2.24,-0.181
-AutoETS,Toto-1.0,0.15,0.0,0.3,-0.809,-2.209,-0.142
-AutoETS,TabPFN-TS,0.3,0.1,0.5,-0.905,-2.366,-0.197
-AutoETS,Stat. Ensemble,0.15,0.0,0.3,-0.665,-1.992,-0.055
-AutoETS,AutoARIMA,0.25,0.05,0.45,-0.653,-1.949,-0.043
-AutoETS,Sundial-Base,0.35,0.15,0.55,-0.676,-2.014,-0.06
-AutoETS,AutoTheta,0.45,0.2,0.65,-0.586,-1.876,0.012
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Seasonal Naive,0.8,0.6,0.95,-0.301,-1.412,0.175
-AutoETS,Naive,0.85,0.7,1.0,-0.043,-1.076,0.378
-AutoETS,Drift,0.85,0.7,1.0,-0.014,-1.022,0.397
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-0.785,-1.067,-0.536
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.583,-0.797,-0.399
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-0.59,-0.825,-0.393
-Seasonal Naive,Chronos-Bolt,0.05,0.0,0.15,-0.518,-0.722,-0.33
-Seasonal Naive,Moirai-2.0,0.1,0.0,0.25,-0.504,-0.709,-0.316
-Seasonal Naive,Toto-1.0,0.1,0.0,0.25,-0.448,-0.611,-0.288
-Seasonal Naive,TabPFN-TS,0.15,0.025,0.3,-0.549,-0.858,-0.284
-Seasonal Naive,Stat. Ensemble,0.025,0.0,0.075,-0.313,-0.414,-0.213
-Seasonal Naive,AutoARIMA,0.0,0.0,0.0,-0.315,-0.447,-0.197
-Seasonal Naive,Sundial-Base,0.2,0.05,0.4,-0.347,-0.545,-0.179
-Seasonal Naive,AutoTheta,0.05,0.0,0.15,-0.239,-0.328,-0.159
-Seasonal Naive,AutoETS,0.2,0.05,0.4,0.231,-0.212,0.585
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Naive,0.725,0.6,0.85,0.198,0.091,0.295
-Seasonal Naive,Drift,1.0,1.0,1.0,0.224,0.122,0.317
-Naive,Chronos-2,0.0,0.0,0.0,-1.226,-1.776,-0.774
-Naive,TiRex,0.0,0.0,0.0,-0.975,-1.371,-0.63
-Naive,TimesFM-2.5,0.0,0.0,0.0,-0.984,-1.389,-0.621
-Naive,Chronos-Bolt,0.05,0.0,0.15,-0.893,-1.279,-0.553
-Naive,Moirai-2.0,0.1,0.0,0.25,-0.876,-1.258,-0.534
-Naive,Toto-1.0,0.05,0.0,0.15,-0.807,-1.152,-0.495
-Naive,TabPFN-TS,0.1,0.0,0.25,-0.932,-1.47,-0.519
-Naive,Stat. Ensemble,0.0,0.0,0.0,-0.639,-0.922,-0.397
-Naive,AutoARIMA,0.0,0.0,0.0,-0.641,-0.945,-0.386
-Naive,Sundial-Base,0.15,0.0,0.3,-0.68,-1.04,-0.362
-Naive,AutoTheta,0.05,0.0,0.15,-0.546,-0.756,-0.335
-Naive,AutoETS,0.15,0.0,0.3,0.041,-0.607,0.518
-Naive,Seasonal Naive,0.275,0.15,0.4,-0.248,-0.419,-0.101
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,1.0,1.0,1.0,0.032,0.021,0.044
-Drift,Chronos-2,0.0,0.0,0.0,-1.3,-1.866,-0.83
-Drift,TiRex,0.0,0.0,0.0,-1.04,-1.458,-0.682
-Drift,TimesFM-2.5,0.0,0.0,0.0,-1.049,-1.467,-0.677
-Drift,Chronos-Bolt,0.0,0.0,0.0,-0.956,-1.356,-0.603
-Drift,Moirai-2.0,0.05,0.0,0.15,-0.938,-1.342,-0.582
-Drift,Toto-1.0,0.05,0.0,0.15,-0.866,-1.232,-0.544
-Drift,TabPFN-TS,0.1,0.0,0.25,-0.996,-1.564,-0.573
-Drift,Stat. Ensemble,0.0,0.0,0.0,-0.693,-0.988,-0.444
-Drift,AutoARIMA,0.0,0.0,0.0,-0.695,-1.006,-0.433
-Drift,Sundial-Base,0.15,0.0,0.3,-0.736,-1.111,-0.401
-Drift,AutoTheta,0.0,0.0,0.0,-0.597,-0.81,-0.383
-Drift,AutoETS,0.15,0.0,0.3,0.014,-0.659,0.505
-Drift,Seasonal Naive,0.0,0.0,0.0,-0.289,-0.465,-0.138
-Drift,Naive,0.0,0.0,0.0,-0.033,-0.046,-0.022
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/domain_retail/pairwise_WAPE.csv b/tables/domain_retail/pairwise_WAPE.csv
deleted file mode 100644
index b5d270e1cda7f10c6a720fcf1b7ea0333e4944a4..0000000000000000000000000000000000000000
--- a/tables/domain_retail/pairwise_WAPE.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TiRex,0.8,0.6,0.95,0.132,0.067,0.202
-Chronos-2,TimesFM-2.5,0.8,0.6,0.95,0.133,0.063,0.207
-Chronos-2,TabPFN-TS,0.75,0.55,0.95,0.071,0.008,0.135
-Chronos-2,Chronos-Bolt,0.95,0.85,1.0,0.191,0.119,0.266
-Chronos-2,Moirai-2.0,0.9,0.75,1.0,0.186,0.116,0.256
-Chronos-2,Toto-1.0,0.9,0.75,1.0,0.207,0.141,0.269
-Chronos-2,Stat. Ensemble,1.0,1.0,1.0,0.251,0.17,0.328
-Chronos-2,Sundial-Base,0.95,0.8,1.0,0.208,0.142,0.275
-Chronos-2,AutoARIMA,1.0,1.0,1.0,0.261,0.188,0.33
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.277,0.199,0.353
-Chronos-2,AutoETS,1.0,1.0,1.0,0.296,0.203,0.387
-Chronos-2,Naive,0.95,0.85,1.0,0.399,0.29,0.491
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.364,0.288,0.436
-Chronos-2,Drift,1.0,1.0,1.0,0.427,0.332,0.512
-TiRex,Chronos-2,0.2,0.05,0.4,-0.153,-0.253,-0.072
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,TimesFM-2.5,0.45,0.25,0.65,0.001,-0.019,0.021
-TiRex,TabPFN-TS,0.6,0.4,0.8,-0.07,-0.215,0.048
-TiRex,Chronos-Bolt,0.9,0.75,1.0,0.068,0.037,0.103
-TiRex,Moirai-2.0,0.9,0.75,1.0,0.062,0.034,0.095
-TiRex,Toto-1.0,0.95,0.8,1.0,0.086,0.053,0.125
-TiRex,Stat. Ensemble,0.9,0.75,1.0,0.137,0.052,0.228
-TiRex,Sundial-Base,0.8,0.6,0.95,0.088,0.049,0.127
-TiRex,AutoARIMA,0.9,0.75,1.0,0.148,0.077,0.221
-TiRex,AutoTheta,0.95,0.85,1.0,0.167,0.09,0.251
-TiRex,AutoETS,0.9,0.75,1.0,0.188,0.087,0.297
-TiRex,Naive,0.95,0.85,1.0,0.307,0.2,0.396
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.267,0.19,0.34
-TiRex,Drift,0.95,0.85,1.0,0.34,0.247,0.421
-TimesFM-2.5,Chronos-2,0.2,0.05,0.4,-0.153,-0.261,-0.068
-TimesFM-2.5,TiRex,0.55,0.35,0.75,-0.001,-0.021,0.019
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TabPFN-TS,0.65,0.45,0.85,-0.071,-0.223,0.052
-TimesFM-2.5,Chronos-Bolt,0.85,0.725,0.95,0.067,0.037,0.101
-TimesFM-2.5,Moirai-2.0,0.8,0.625,0.95,0.061,0.032,0.094
-TimesFM-2.5,Toto-1.0,0.75,0.575,0.925,0.086,0.043,0.132
-TimesFM-2.5,Stat. Ensemble,0.9,0.75,1.0,0.136,0.045,0.232
-TimesFM-2.5,Sundial-Base,0.9,0.75,1.0,0.087,0.052,0.122
-TimesFM-2.5,AutoARIMA,0.95,0.85,1.0,0.147,0.068,0.228
-TimesFM-2.5,AutoTheta,0.95,0.85,1.0,0.166,0.08,0.258
-TimesFM-2.5,AutoETS,0.95,0.85,1.0,0.188,0.079,0.303
-TimesFM-2.5,Naive,0.95,0.85,1.0,0.307,0.194,0.403
-TimesFM-2.5,Seasonal Naive,0.95,0.85,1.0,0.266,0.186,0.344
-TimesFM-2.5,Drift,0.95,0.85,1.0,0.339,0.237,0.429
-TabPFN-TS,Chronos-2,0.25,0.05,0.45,-0.077,-0.156,-0.008
-TabPFN-TS,TiRex,0.4,0.2,0.6,0.066,-0.051,0.177
-TabPFN-TS,TimesFM-2.5,0.35,0.15,0.55,0.066,-0.055,0.182
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Chronos-Bolt,0.6,0.4,0.8,0.129,0.005,0.24
-TabPFN-TS,Moirai-2.0,0.55,0.3,0.75,0.124,0.008,0.231
-TabPFN-TS,Toto-1.0,0.6,0.4,0.8,0.146,0.042,0.24
-TabPFN-TS,Stat. Ensemble,0.725,0.525,0.9,0.194,0.085,0.292
-TabPFN-TS,Sundial-Base,0.8,0.6,0.95,0.148,0.034,0.25
-TabPFN-TS,AutoARIMA,0.85,0.7,1.0,0.204,0.101,0.291
-TabPFN-TS,AutoTheta,0.8,0.6,0.95,0.222,0.109,0.322
-TabPFN-TS,AutoETS,0.75,0.55,0.9,0.242,0.11,0.353
-TabPFN-TS,Naive,0.95,0.85,1.0,0.352,0.228,0.461
-TabPFN-TS,Seasonal Naive,0.9,0.775,1.0,0.315,0.215,0.405
-TabPFN-TS,Drift,0.95,0.85,1.0,0.383,0.264,0.482
-Chronos-Bolt,Chronos-2,0.05,0.0,0.15,-0.236,-0.362,-0.135
-Chronos-Bolt,TiRex,0.1,0.0,0.25,-0.073,-0.115,-0.038
-Chronos-Bolt,TimesFM-2.5,0.15,0.05,0.275,-0.072,-0.112,-0.038
-Chronos-Bolt,TabPFN-TS,0.4,0.2,0.6,-0.148,-0.317,-0.005
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Moirai-2.0,0.475,0.3,0.65,-0.006,-0.032,0.019
-Chronos-Bolt,Toto-1.0,0.55,0.325,0.75,0.02,-0.025,0.064
-Chronos-Bolt,Stat. Ensemble,0.8,0.6,0.95,0.074,-0.033,0.18
-Chronos-Bolt,Sundial-Base,0.6,0.35,0.8,0.021,-0.011,0.053
-Chronos-Bolt,AutoARIMA,0.85,0.7,1.0,0.086,-0.014,0.17
-Chronos-Bolt,AutoTheta,0.9,0.75,1.0,0.106,0.008,0.208
-Chronos-Bolt,AutoETS,0.85,0.7,1.0,0.129,0.008,0.253
-Chronos-Bolt,Naive,0.85,0.7,1.0,0.257,0.121,0.363
-Chronos-Bolt,Seasonal Naive,0.85,0.7,1.0,0.213,0.119,0.299
-Chronos-Bolt,Drift,0.9,0.75,1.0,0.292,0.176,0.39
-Moirai-2.0,Chronos-2,0.1,0.0,0.25,-0.229,-0.345,-0.131
-Moirai-2.0,TiRex,0.1,0.0,0.25,-0.066,-0.104,-0.036
-Moirai-2.0,TimesFM-2.5,0.2,0.05,0.375,-0.065,-0.104,-0.033
-Moirai-2.0,TabPFN-TS,0.45,0.25,0.7,-0.141,-0.301,-0.008
-Moirai-2.0,Chronos-Bolt,0.525,0.35,0.7,0.006,-0.02,0.031
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Toto-1.0,0.55,0.325,0.751,0.026,-0.01,0.064
-Moirai-2.0,Stat. Ensemble,0.8,0.65,0.95,0.08,-0.017,0.174
-Moirai-2.0,Sundial-Base,0.6,0.35,0.8,0.027,-0.001,0.058
-Moirai-2.0,AutoARIMA,0.8,0.65,0.95,0.092,0.002,0.17
-Moirai-2.0,AutoTheta,0.85,0.7,1.0,0.112,0.023,0.2
-Moirai-2.0,AutoETS,0.8,0.65,0.95,0.135,0.024,0.244
-Moirai-2.0,Naive,0.8,0.65,0.95,0.261,0.134,0.365
-Moirai-2.0,Seasonal Naive,0.85,0.7,1.0,0.218,0.132,0.3
-Moirai-2.0,Drift,0.85,0.7,1.0,0.296,0.187,0.39
-Toto-1.0,Chronos-2,0.1,0.0,0.25,-0.261,-0.368,-0.164
-Toto-1.0,TiRex,0.05,0.0,0.2,-0.095,-0.142,-0.056
-Toto-1.0,TimesFM-2.5,0.25,0.075,0.425,-0.094,-0.152,-0.045
-Toto-1.0,TabPFN-TS,0.4,0.2,0.6,-0.172,-0.317,-0.044
-Toto-1.0,Chronos-Bolt,0.45,0.25,0.675,-0.02,-0.068,0.025
-Toto-1.0,Moirai-2.0,0.45,0.249,0.675,-0.027,-0.068,0.009
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,Stat. Ensemble,0.55,0.35,0.75,0.055,-0.018,0.129
-Toto-1.0,Sundial-Base,0.5,0.3,0.7,0.001,-0.042,0.045
-Toto-1.0,AutoARIMA,0.75,0.55,0.9,0.067,0.005,0.124
-Toto-1.0,AutoTheta,0.85,0.7,1.0,0.088,0.024,0.156
-Toto-1.0,AutoETS,0.8,0.65,0.95,0.112,0.022,0.207
-Toto-1.0,Naive,0.85,0.7,1.0,0.241,0.132,0.329
-Toto-1.0,Seasonal Naive,0.9,0.75,1.0,0.197,0.128,0.262
-Toto-1.0,Drift,0.9,0.75,1.0,0.277,0.182,0.356
-Stat. Ensemble,Chronos-2,0.0,0.0,0.0,-0.335,-0.487,-0.205
-Stat. Ensemble,TiRex,0.1,0.0,0.25,-0.158,-0.296,-0.055
-Stat. Ensemble,TimesFM-2.5,0.1,0.0,0.25,-0.158,-0.302,-0.047
-Stat. Ensemble,TabPFN-TS,0.275,0.1,0.475,-0.24,-0.412,-0.093
-Stat. Ensemble,Chronos-Bolt,0.2,0.05,0.4,-0.08,-0.219,0.032
-Stat. Ensemble,Moirai-2.0,0.2,0.05,0.35,-0.087,-0.211,0.016
-Stat. Ensemble,Toto-1.0,0.45,0.25,0.65,-0.058,-0.148,0.017
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,Sundial-Base,0.45,0.25,0.651,-0.057,-0.184,0.045
-Stat. Ensemble,AutoARIMA,0.7,0.5,0.9,0.013,-0.03,0.049
-Stat. Ensemble,AutoTheta,0.9,0.75,1.0,0.035,0.004,0.065
-Stat. Ensemble,AutoETS,0.95,0.85,1.0,0.06,0.016,0.115
-Stat. Ensemble,Naive,0.95,0.85,1.0,0.197,0.11,0.277
-Stat. Ensemble,Seasonal Naive,0.975,0.925,1.0,0.151,0.109,0.188
-Stat. Ensemble,Drift,0.95,0.85,1.0,0.235,0.159,0.308
-Sundial-Base,Chronos-2,0.05,0.0,0.2,-0.263,-0.379,-0.165
-Sundial-Base,TiRex,0.2,0.05,0.4,-0.096,-0.146,-0.052
-Sundial-Base,TimesFM-2.5,0.1,0.0,0.25,-0.095,-0.139,-0.055
-Sundial-Base,TabPFN-TS,0.2,0.05,0.4,-0.173,-0.334,-0.035
-Sundial-Base,Chronos-Bolt,0.4,0.2,0.65,-0.022,-0.055,0.011
-Sundial-Base,Moirai-2.0,0.4,0.2,0.65,-0.028,-0.062,0.001
-Sundial-Base,Toto-1.0,0.5,0.3,0.7,-0.001,-0.047,0.04
-Sundial-Base,Stat. Ensemble,0.55,0.349,0.75,0.054,-0.047,0.156
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,AutoARIMA,0.8,0.6,0.95,0.066,-0.032,0.151
-Sundial-Base,AutoTheta,0.65,0.45,0.85,0.087,-0.006,0.183
-Sundial-Base,AutoETS,0.65,0.45,0.85,0.11,-0.008,0.23
-Sundial-Base,Naive,0.8,0.6,0.95,0.24,0.101,0.351
-Sundial-Base,Seasonal Naive,0.8,0.6,0.95,0.196,0.103,0.284
-Sundial-Base,Drift,0.9,0.75,1.0,0.276,0.155,0.379
-AutoARIMA,Chronos-2,0.0,0.0,0.0,-0.353,-0.493,-0.231
-AutoARIMA,TiRex,0.1,0.0,0.25,-0.174,-0.284,-0.083
-AutoARIMA,TimesFM-2.5,0.05,0.0,0.15,-0.173,-0.296,-0.073
-AutoARIMA,TabPFN-TS,0.15,0.0,0.3,-0.256,-0.41,-0.113
-AutoARIMA,Chronos-Bolt,0.15,0.0,0.3,-0.094,-0.205,0.014
-AutoARIMA,Moirai-2.0,0.2,0.05,0.35,-0.101,-0.204,-0.002
-AutoARIMA,Toto-1.0,0.25,0.1,0.45,-0.072,-0.142,-0.005
-AutoARIMA,Stat. Ensemble,0.3,0.1,0.5,-0.013,-0.052,0.029
-AutoARIMA,Sundial-Base,0.2,0.05,0.4,-0.071,-0.179,0.031
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoTheta,0.55,0.35,0.75,0.022,-0.021,0.062
-AutoARIMA,AutoETS,0.55,0.35,0.75,0.047,-0.015,0.12
-AutoARIMA,Naive,0.8,0.6,0.95,0.187,0.107,0.262
-AutoARIMA,Seasonal Naive,0.9,0.75,1.0,0.139,0.1,0.176
-AutoARIMA,Drift,1.0,1.0,1.0,0.225,0.155,0.292
-AutoTheta,Chronos-2,0.0,0.0,0.0,-0.383,-0.546,-0.249
-AutoTheta,TiRex,0.05,0.0,0.15,-0.2,-0.335,-0.099
-AutoTheta,TimesFM-2.5,0.05,0.0,0.15,-0.2,-0.348,-0.087
-AutoTheta,TabPFN-TS,0.2,0.05,0.4,-0.285,-0.475,-0.123
-AutoTheta,Chronos-Bolt,0.1,0.0,0.25,-0.119,-0.263,-0.008
-AutoTheta,Moirai-2.0,0.15,0.0,0.3,-0.126,-0.25,-0.024
-AutoTheta,Toto-1.0,0.15,0.0,0.3,-0.097,-0.185,-0.024
-AutoTheta,Stat. Ensemble,0.1,0.0,0.25,-0.036,-0.069,-0.004
-AutoTheta,Sundial-Base,0.35,0.15,0.55,-0.095,-0.223,0.006
-AutoTheta,AutoARIMA,0.45,0.25,0.65,-0.023,-0.066,0.021
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,AutoETS,0.65,0.45,0.85,0.026,-0.019,0.079
-AutoTheta,Naive,0.85,0.7,1.0,0.168,0.076,0.251
-AutoTheta,Seasonal Naive,0.95,0.85,1.0,0.12,0.079,0.164
-AutoTheta,Drift,0.95,0.85,1.0,0.208,0.134,0.278
-AutoETS,Chronos-2,0.0,0.0,0.0,-0.42,-0.631,-0.254
-AutoETS,TiRex,0.1,0.0,0.25,-0.232,-0.422,-0.095
-AutoETS,TimesFM-2.5,0.05,0.0,0.15,-0.231,-0.436,-0.086
-AutoETS,TabPFN-TS,0.25,0.1,0.45,-0.319,-0.545,-0.124
-AutoETS,Chronos-Bolt,0.15,0.0,0.3,-0.149,-0.338,-0.008
-AutoETS,Moirai-2.0,0.2,0.05,0.35,-0.156,-0.323,-0.025
-AutoETS,Toto-1.0,0.2,0.05,0.35,-0.126,-0.261,-0.023
-AutoETS,Stat. Ensemble,0.05,0.0,0.15,-0.063,-0.13,-0.016
-AutoETS,Sundial-Base,0.35,0.15,0.55,-0.124,-0.298,0.008
-AutoETS,AutoARIMA,0.45,0.25,0.65,-0.05,-0.137,0.015
-AutoETS,AutoTheta,0.35,0.15,0.55,-0.026,-0.086,0.019
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Naive,0.85,0.7,1.0,0.146,0.035,0.239
-AutoETS,Seasonal Naive,0.9,0.75,1.0,0.097,0.028,0.152
-AutoETS,Drift,0.85,0.7,1.0,0.187,0.093,0.267
-Naive,Chronos-2,0.05,0.0,0.15,-0.663,-0.964,-0.408
-Naive,TiRex,0.05,0.0,0.15,-0.443,-0.656,-0.25
-Naive,TimesFM-2.5,0.05,0.0,0.15,-0.442,-0.676,-0.24
-Naive,TabPFN-TS,0.05,0.0,0.15,-0.544,-0.854,-0.296
-Naive,Chronos-Bolt,0.15,0.0,0.3,-0.345,-0.569,-0.138
-Naive,Moirai-2.0,0.2,0.05,0.35,-0.353,-0.574,-0.155
-Naive,Toto-1.0,0.15,0.0,0.3,-0.318,-0.491,-0.152
-Naive,Stat. Ensemble,0.05,0.0,0.15,-0.246,-0.383,-0.124
-Naive,Sundial-Base,0.2,0.05,0.4,-0.316,-0.541,-0.112
-Naive,AutoARIMA,0.2,0.05,0.4,-0.229,-0.355,-0.12
-Naive,AutoTheta,0.15,0.0,0.3,-0.202,-0.335,-0.082
-Naive,AutoETS,0.15,0.0,0.3,-0.171,-0.315,-0.037
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Seasonal Naive,0.375,0.225,0.525,-0.058,-0.148,0.031
-Naive,Drift,1.0,1.0,1.0,0.047,0.026,0.071
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-0.572,-0.772,-0.404
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.364,-0.514,-0.235
-Seasonal Naive,TimesFM-2.5,0.05,0.0,0.15,-0.363,-0.524,-0.228
-Seasonal Naive,TabPFN-TS,0.1,0.0,0.225,-0.46,-0.681,-0.274
-Seasonal Naive,Chronos-Bolt,0.15,0.0,0.3,-0.271,-0.426,-0.135
-Seasonal Naive,Moirai-2.0,0.15,0.0,0.3,-0.279,-0.429,-0.152
-Seasonal Naive,Toto-1.0,0.1,0.0,0.25,-0.246,-0.354,-0.147
-Seasonal Naive,Stat. Ensemble,0.025,0.0,0.075,-0.177,-0.231,-0.122
-Seasonal Naive,Sundial-Base,0.2,0.05,0.4,-0.244,-0.396,-0.115
-Seasonal Naive,AutoARIMA,0.1,0.0,0.25,-0.162,-0.213,-0.111
-Seasonal Naive,AutoTheta,0.05,0.0,0.15,-0.136,-0.197,-0.086
-Seasonal Naive,AutoETS,0.1,0.0,0.25,-0.107,-0.179,-0.029
-Seasonal Naive,Naive,0.625,0.475,0.775,0.055,-0.032,0.129
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Drift,0.95,0.85,1.0,0.1,0.03,0.167
-Drift,Chronos-2,0.0,0.0,0.0,-0.746,-1.051,-0.497
-Drift,TiRex,0.05,0.0,0.15,-0.515,-0.727,-0.327
-Drift,TimesFM-2.5,0.05,0.0,0.15,-0.514,-0.75,-0.311
-Drift,TabPFN-TS,0.05,0.0,0.15,-0.621,-0.932,-0.359
-Drift,Chronos-Bolt,0.1,0.0,0.25,-0.412,-0.638,-0.213
-Drift,Moirai-2.0,0.15,0.0,0.3,-0.421,-0.639,-0.23
-Drift,Toto-1.0,0.1,0.0,0.25,-0.384,-0.552,-0.223
-Drift,Stat. Ensemble,0.05,0.0,0.15,-0.308,-0.445,-0.189
-Drift,Sundial-Base,0.1,0.0,0.25,-0.382,-0.61,-0.183
-Drift,AutoARIMA,0.0,0.0,0.0,-0.291,-0.412,-0.184
-Drift,AutoTheta,0.05,0.0,0.15,-0.262,-0.386,-0.155
-Drift,AutoETS,0.15,0.0,0.3,-0.23,-0.365,-0.103
-Drift,Naive,0.0,0.0,0.0,-0.05,-0.076,-0.026
-Drift,Seasonal Naive,0.05,0.0,0.15,-0.111,-0.2,-0.031
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/domain_retail/pairwise_WQL.csv b/tables/domain_retail/pairwise_WQL.csv
deleted file mode 100644
index afeed17223ea90ccdf139cf6f287e297265d5c52..0000000000000000000000000000000000000000
--- a/tables/domain_retail/pairwise_WQL.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TiRex,0.8,0.6,0.95,0.126,0.06,0.196
-Chronos-2,TimesFM-2.5,0.85,0.7,1.0,0.121,0.056,0.189
-Chronos-2,TabPFN-TS,0.7,0.5,0.9,0.071,-0.006,0.147
-Chronos-2,Chronos-Bolt,0.95,0.85,1.0,0.18,0.114,0.243
-Chronos-2,Moirai-2.0,0.85,0.65,1.0,0.179,0.113,0.245
-Chronos-2,Toto-1.0,0.9,0.75,1.0,0.203,0.132,0.268
-Chronos-2,Stat. Ensemble,1.0,1.0,1.0,0.298,0.215,0.374
-Chronos-2,Sundial-Base,1.0,1.0,1.0,0.258,0.199,0.314
-Chronos-2,AutoARIMA,1.0,1.0,1.0,0.283,0.211,0.352
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.347,0.255,0.432
-Chronos-2,AutoETS,1.0,1.0,1.0,0.583,0.332,0.765
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.487,0.404,0.561
-Chronos-2,Naive,1.0,1.0,1.0,0.591,0.488,0.669
-Chronos-2,Drift,1.0,1.0,1.0,0.605,0.505,0.682
-TiRex,Chronos-2,0.2,0.05,0.4,-0.144,-0.244,-0.064
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,TimesFM-2.5,0.5,0.3,0.7,-0.006,-0.025,0.014
-TiRex,TabPFN-TS,0.6,0.4,0.8,-0.063,-0.209,0.061
-TiRex,Chronos-Bolt,0.9,0.75,1.0,0.061,0.035,0.091
-TiRex,Moirai-2.0,0.9,0.75,1.0,0.06,0.034,0.093
-TiRex,Toto-1.0,0.95,0.85,1.0,0.087,0.051,0.13
-TiRex,Stat. Ensemble,0.95,0.85,1.0,0.197,0.116,0.279
-TiRex,Sundial-Base,0.95,0.85,1.0,0.151,0.113,0.191
-TiRex,AutoARIMA,0.95,0.85,1.0,0.18,0.118,0.243
-TiRex,AutoTheta,0.95,0.85,1.0,0.253,0.167,0.338
-TiRex,AutoETS,0.95,0.85,1.0,0.526,0.225,0.736
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.413,0.332,0.489
-TiRex,Naive,1.0,1.0,1.0,0.532,0.429,0.611
-TiRex,Drift,1.0,1.0,1.0,0.548,0.448,0.625
-TimesFM-2.5,Chronos-2,0.15,0.0,0.3,-0.138,-0.233,-0.059
-TimesFM-2.5,TiRex,0.5,0.3,0.7,0.006,-0.014,0.024
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TabPFN-TS,0.65,0.45,0.85,-0.057,-0.2,0.063
-TimesFM-2.5,Chronos-Bolt,0.85,0.725,0.95,0.067,0.038,0.097
-TimesFM-2.5,Moirai-2.0,0.8,0.625,0.95,0.066,0.036,0.099
-TimesFM-2.5,Toto-1.0,0.75,0.575,0.925,0.093,0.047,0.143
-TimesFM-2.5,Stat. Ensemble,0.95,0.85,1.0,0.202,0.117,0.289
-TimesFM-2.5,Sundial-Base,0.95,0.85,1.0,0.156,0.12,0.192
-TimesFM-2.5,AutoARIMA,0.95,0.85,1.0,0.184,0.119,0.251
-TimesFM-2.5,AutoTheta,0.95,0.85,1.0,0.257,0.165,0.346
-TimesFM-2.5,AutoETS,0.95,0.85,1.0,0.527,0.231,0.737
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.416,0.331,0.495
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.534,0.428,0.616
-TimesFM-2.5,Drift,1.0,1.0,1.0,0.551,0.45,0.629
-TabPFN-TS,Chronos-2,0.3,0.1,0.5,-0.077,-0.172,0.006
-TabPFN-TS,TiRex,0.4,0.2,0.6,0.059,-0.065,0.173
-TabPFN-TS,TimesFM-2.5,0.35,0.15,0.55,0.054,-0.068,0.167
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Chronos-Bolt,0.6,0.4,0.8,0.117,-0.005,0.229
-TabPFN-TS,Moirai-2.0,0.65,0.45,0.85,0.116,-0.01,0.228
-TabPFN-TS,Toto-1.0,0.65,0.45,0.85,0.142,0.033,0.24
-TabPFN-TS,Stat. Ensemble,0.775,0.6,0.925,0.244,0.136,0.336
-TabPFN-TS,Sundial-Base,0.85,0.7,1.0,0.201,0.092,0.303
-TabPFN-TS,AutoARIMA,0.85,0.7,1.0,0.228,0.116,0.318
-TabPFN-TS,AutoTheta,0.85,0.7,1.0,0.297,0.169,0.408
-TabPFN-TS,AutoETS,0.8,0.6,0.95,0.551,0.27,0.751
-TabPFN-TS,Seasonal Naive,0.9,0.775,1.0,0.448,0.334,0.545
-TabPFN-TS,Naive,0.95,0.85,1.0,0.559,0.436,0.655
-TabPFN-TS,Drift,0.95,0.85,1.0,0.575,0.456,0.668
-Chronos-Bolt,Chronos-2,0.05,0.0,0.15,-0.219,-0.322,-0.129
-Chronos-Bolt,TiRex,0.1,0.0,0.25,-0.065,-0.1,-0.036
-Chronos-Bolt,TimesFM-2.5,0.15,0.05,0.275,-0.072,-0.107,-0.039
-Chronos-Bolt,TabPFN-TS,0.4,0.2,0.6,-0.132,-0.296,0.005
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Moirai-2.0,0.525,0.35,0.7,-0.001,-0.023,0.021
-Chronos-Bolt,Toto-1.0,0.65,0.45,0.825,0.028,-0.02,0.076
-Chronos-Bolt,Stat. Ensemble,0.85,0.7,1.0,0.144,0.053,0.238
-Chronos-Bolt,Sundial-Base,0.9,0.75,1.0,0.095,0.065,0.127
-Chronos-Bolt,AutoARIMA,0.9,0.75,1.0,0.126,0.055,0.194
-Chronos-Bolt,AutoTheta,0.9,0.75,1.0,0.204,0.106,0.299
-Chronos-Bolt,AutoETS,0.85,0.7,1.0,0.498,0.179,0.722
-Chronos-Bolt,Seasonal Naive,0.95,0.85,1.0,0.375,0.282,0.455
-Chronos-Bolt,Naive,0.95,0.85,1.0,0.501,0.387,0.59
-Chronos-Bolt,Drift,0.95,0.85,1.0,0.519,0.411,0.602
-Moirai-2.0,Chronos-2,0.15,0.0,0.35,-0.218,-0.324,-0.127
-Moirai-2.0,TiRex,0.1,0.0,0.25,-0.064,-0.102,-0.036
-Moirai-2.0,TimesFM-2.5,0.2,0.05,0.375,-0.07,-0.11,-0.038
-Moirai-2.0,TabPFN-TS,0.35,0.15,0.55,-0.131,-0.295,0.009
-Moirai-2.0,Chronos-Bolt,0.475,0.3,0.65,0.001,-0.022,0.023
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Toto-1.0,0.65,0.45,0.85,0.029,-0.012,0.07
-Moirai-2.0,Stat. Ensemble,0.85,0.7,1.0,0.145,0.063,0.23
-Moirai-2.0,Sundial-Base,0.9,0.75,1.0,0.096,0.066,0.128
-Moirai-2.0,AutoARIMA,0.9,0.75,1.0,0.127,0.065,0.19
-Moirai-2.0,AutoTheta,0.9,0.75,1.0,0.205,0.115,0.291
-Moirai-2.0,AutoETS,0.85,0.7,1.0,0.501,0.186,0.725
-Moirai-2.0,Seasonal Naive,0.9,0.75,1.0,0.375,0.287,0.452
-Moirai-2.0,Naive,0.9,0.75,1.0,0.502,0.387,0.587
-Moirai-2.0,Drift,0.95,0.85,1.0,0.519,0.41,0.603
-Toto-1.0,Chronos-2,0.1,0.0,0.25,-0.254,-0.366,-0.152
-Toto-1.0,TiRex,0.05,0.0,0.15,-0.096,-0.149,-0.054
-Toto-1.0,TimesFM-2.5,0.25,0.075,0.425,-0.102,-0.167,-0.049
-Toto-1.0,TabPFN-TS,0.35,0.15,0.55,-0.165,-0.316,-0.034
-Toto-1.0,Chronos-Bolt,0.35,0.175,0.55,-0.029,-0.082,0.019
-Toto-1.0,Moirai-2.0,0.35,0.15,0.55,-0.03,-0.075,0.012
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,Stat. Ensemble,0.85,0.7,1.0,0.12,0.055,0.184
-Toto-1.0,Sundial-Base,0.7,0.5,0.9,0.069,0.019,0.123
-Toto-1.0,AutoARIMA,0.85,0.7,1.0,0.101,0.059,0.146
-Toto-1.0,AutoTheta,0.9,0.75,1.0,0.181,0.112,0.251
-Toto-1.0,AutoETS,0.85,0.7,1.0,0.488,0.156,0.72
-Toto-1.0,Seasonal Naive,1.0,1.0,1.0,0.357,0.279,0.424
-Toto-1.0,Naive,1.0,1.0,1.0,0.487,0.378,0.569
-Toto-1.0,Drift,1.0,1.0,1.0,0.505,0.402,0.583
-Stat. Ensemble,Chronos-2,0.0,0.0,0.0,-0.425,-0.597,-0.273
-Stat. Ensemble,TiRex,0.05,0.0,0.15,-0.245,-0.387,-0.131
-Stat. Ensemble,TimesFM-2.5,0.05,0.0,0.15,-0.253,-0.406,-0.133
-Stat. Ensemble,TabPFN-TS,0.225,0.075,0.4,-0.324,-0.506,-0.158
-Stat. Ensemble,Chronos-Bolt,0.15,0.0,0.3,-0.169,-0.313,-0.056
-Stat. Ensemble,Moirai-2.0,0.15,0.0,0.3,-0.17,-0.298,-0.067
-Stat. Ensemble,Toto-1.0,0.15,0.0,0.3,-0.136,-0.226,-0.059
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,Sundial-Base,0.4,0.2,0.6,-0.058,-0.181,0.048
-Stat. Ensemble,AutoARIMA,0.65,0.45,0.85,-0.022,-0.075,0.021
-Stat. Ensemble,AutoTheta,0.85,0.7,1.0,0.07,0.018,0.117
-Stat. Ensemble,AutoETS,0.9,0.75,1.0,0.429,0.064,0.691
-Stat. Ensemble,Seasonal Naive,0.975,0.925,1.0,0.269,0.21,0.321
-Stat. Ensemble,Naive,1.0,1.0,1.0,0.417,0.314,0.502
-Stat. Ensemble,Drift,1.0,1.0,1.0,0.438,0.339,0.519
-Sundial-Base,Chronos-2,0.0,0.0,0.0,-0.347,-0.457,-0.248
-Sundial-Base,TiRex,0.05,0.0,0.15,-0.177,-0.236,-0.127
-Sundial-Base,TimesFM-2.5,0.05,0.0,0.15,-0.184,-0.237,-0.136
-Sundial-Base,TabPFN-TS,0.15,0.0,0.3,-0.251,-0.435,-0.101
-Sundial-Base,Chronos-Bolt,0.1,0.0,0.25,-0.105,-0.145,-0.069
-Sundial-Base,Moirai-2.0,0.1,0.0,0.25,-0.106,-0.147,-0.07
-Sundial-Base,Toto-1.0,0.3,0.1,0.5,-0.074,-0.14,-0.019
-Sundial-Base,Stat. Ensemble,0.6,0.4,0.8,0.055,-0.05,0.154
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,AutoARIMA,0.65,0.45,0.85,0.034,-0.055,0.116
-Sundial-Base,AutoTheta,0.75,0.55,0.901,0.12,0.006,0.226
-Sundial-Base,AutoETS,0.75,0.55,0.901,0.447,0.097,0.697
-Sundial-Base,Seasonal Naive,0.9,0.75,1.0,0.309,0.203,0.402
-Sundial-Base,Naive,0.9,0.75,1.0,0.449,0.314,0.553
-Sundial-Base,Drift,0.9,0.75,1.0,0.468,0.337,0.567
-AutoARIMA,Chronos-2,0.0,0.0,0.0,-0.395,-0.544,-0.267
-AutoARIMA,TiRex,0.05,0.0,0.15,-0.219,-0.321,-0.134
-AutoARIMA,TimesFM-2.5,0.05,0.0,0.15,-0.226,-0.336,-0.135
-AutoARIMA,TabPFN-TS,0.15,0.0,0.3,-0.296,-0.466,-0.132
-AutoARIMA,Chronos-Bolt,0.1,0.0,0.25,-0.144,-0.241,-0.058
-AutoARIMA,Moirai-2.0,0.1,0.0,0.25,-0.145,-0.235,-0.069
-AutoARIMA,Toto-1.0,0.15,0.0,0.3,-0.112,-0.17,-0.062
-AutoARIMA,Stat. Ensemble,0.35,0.15,0.55,0.021,-0.022,0.07
-AutoARIMA,Sundial-Base,0.35,0.15,0.55,-0.035,-0.131,0.052
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoTheta,0.75,0.55,0.95,0.089,0.037,0.149
-AutoARIMA,AutoETS,0.8,0.6,0.95,0.435,0.075,0.691
-AutoARIMA,Seasonal Naive,1.0,1.0,1.0,0.285,0.219,0.346
-AutoARIMA,Naive,1.0,1.0,1.0,0.429,0.327,0.513
-AutoARIMA,Drift,1.0,1.0,1.0,0.449,0.355,0.529
-AutoTheta,Chronos-2,0.0,0.0,0.0,-0.532,-0.759,-0.343
-AutoTheta,TiRex,0.05,0.0,0.15,-0.338,-0.51,-0.2
-AutoTheta,TimesFM-2.5,0.05,0.0,0.15,-0.346,-0.529,-0.198
-AutoTheta,TabPFN-TS,0.15,0.0,0.3,-0.423,-0.689,-0.203
-AutoTheta,Chronos-Bolt,0.1,0.0,0.25,-0.256,-0.426,-0.119
-AutoTheta,Moirai-2.0,0.1,0.0,0.25,-0.258,-0.411,-0.13
-AutoTheta,Toto-1.0,0.1,0.0,0.25,-0.221,-0.334,-0.126
-AutoTheta,Stat. Ensemble,0.15,0.0,0.3,-0.075,-0.132,-0.018
-AutoTheta,Sundial-Base,0.25,0.099,0.45,-0.137,-0.293,-0.006
-AutoTheta,AutoARIMA,0.25,0.05,0.45,-0.098,-0.175,-0.038
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,AutoETS,0.55,0.35,0.8,0.392,-0.012,0.671
-AutoTheta,Seasonal Naive,1.0,1.0,1.0,0.214,0.158,0.27
-AutoTheta,Naive,1.0,1.0,1.0,0.373,0.272,0.447
-AutoTheta,Drift,1.0,1.0,1.0,0.395,0.299,0.464
-AutoETS,Chronos-2,0.0,0.0,0.0,-1.396,-3.252,-0.496
-AutoETS,TiRex,0.05,0.0,0.15,-1.109,-2.782,-0.291
-AutoETS,TimesFM-2.5,0.05,0.0,0.15,-1.115,-2.802,-0.3
-AutoETS,TabPFN-TS,0.2,0.05,0.4,-1.228,-3.019,-0.37
-AutoETS,Chronos-Bolt,0.15,0.0,0.3,-0.99,-2.591,-0.219
-AutoETS,Moirai-2.0,0.15,0.0,0.3,-1.003,-2.631,-0.228
-AutoETS,Toto-1.0,0.15,0.0,0.3,-0.952,-2.567,-0.185
-AutoETS,Stat. Ensemble,0.1,0.0,0.25,-0.75,-2.233,-0.069
-AutoETS,Sundial-Base,0.25,0.099,0.45,-0.809,-2.3,-0.108
-AutoETS,AutoARIMA,0.2,0.05,0.4,-0.769,-2.239,-0.081
-AutoETS,AutoTheta,0.45,0.2,0.65,-0.644,-2.042,0.012
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Seasonal Naive,0.75,0.55,0.95,-0.32,-1.467,0.188
-AutoETS,Naive,0.85,0.7,1.0,-0.053,-1.109,0.384
-AutoETS,Drift,0.85,0.7,1.0,-0.021,-1.06,0.404
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-0.95,-1.275,-0.677
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.703,-0.957,-0.497
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-0.714,-0.982,-0.495
-Seasonal Naive,TabPFN-TS,0.1,0.0,0.225,-0.811,-1.198,-0.501
-Seasonal Naive,Chronos-Bolt,0.05,0.0,0.15,-0.599,-0.835,-0.393
-Seasonal Naive,Moirai-2.0,0.1,0.0,0.25,-0.601,-0.824,-0.402
-Seasonal Naive,Toto-1.0,0.0,0.0,0.0,-0.555,-0.736,-0.387
-Seasonal Naive,Stat. Ensemble,0.025,0.0,0.075,-0.368,-0.473,-0.266
-Seasonal Naive,Sundial-Base,0.1,0.0,0.25,-0.447,-0.673,-0.255
-Seasonal Naive,AutoARIMA,0.0,0.0,0.0,-0.398,-0.529,-0.28
-Seasonal Naive,AutoTheta,0.0,0.0,0.0,-0.273,-0.369,-0.188
-Seasonal Naive,AutoETS,0.25,0.05,0.45,0.242,-0.231,0.595
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Naive,0.725,0.6,0.85,0.202,0.09,0.304
-Seasonal Naive,Drift,0.95,0.85,1.0,0.23,0.125,0.325
-Naive,Chronos-2,0.0,0.0,0.0,-1.443,-2.025,-0.952
-Naive,TiRex,0.0,0.0,0.0,-1.135,-1.569,-0.753
-Naive,TimesFM-2.5,0.0,0.0,0.0,-1.148,-1.606,-0.749
-Naive,TabPFN-TS,0.05,0.0,0.15,-1.27,-1.898,-0.773
-Naive,Chronos-Bolt,0.05,0.0,0.15,-1.004,-1.437,-0.632
-Naive,Moirai-2.0,0.1,0.0,0.25,-1.006,-1.422,-0.631
-Naive,Toto-1.0,0.0,0.0,0.0,-0.948,-1.319,-0.609
-Naive,Stat. Ensemble,0.0,0.0,0.0,-0.715,-1.009,-0.457
-Naive,Sundial-Base,0.1,0.0,0.25,-0.814,-1.235,-0.458
-Naive,AutoARIMA,0.0,0.0,0.0,-0.752,-1.055,-0.486
-Naive,AutoTheta,0.0,0.0,0.0,-0.595,-0.807,-0.374
-Naive,AutoETS,0.15,0.0,0.3,0.051,-0.623,0.526
-Naive,Seasonal Naive,0.275,0.15,0.4,-0.253,-0.437,-0.099
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,0.95,0.85,1.0,0.036,0.022,0.051
-Drift,Chronos-2,0.0,0.0,0.0,-1.534,-2.145,-1.018
-Drift,TiRex,0.0,0.0,0.0,-1.214,-1.665,-0.811
-Drift,TimesFM-2.5,0.0,0.0,0.0,-1.227,-1.693,-0.82
-Drift,TabPFN-TS,0.05,0.0,0.15,-1.353,-2.009,-0.838
-Drift,Chronos-Bolt,0.05,0.0,0.15,-1.078,-1.51,-0.697
-Drift,Moirai-2.0,0.05,0.0,0.15,-1.08,-1.516,-0.696
-Drift,Toto-1.0,0.0,0.0,0.0,-1.02,-1.398,-0.672
-Drift,Stat. Ensemble,0.0,0.0,0.0,-0.778,-1.08,-0.514
-Drift,Sundial-Base,0.1,0.0,0.25,-0.88,-1.308,-0.508
-Drift,AutoARIMA,0.0,0.0,0.0,-0.816,-1.123,-0.55
-Drift,AutoTheta,0.0,0.0,0.0,-0.654,-0.866,-0.426
-Drift,AutoETS,0.15,0.0,0.3,0.021,-0.678,0.515
-Drift,Seasonal Naive,0.05,0.0,0.15,-0.3,-0.481,-0.143
-Drift,Naive,0.05,0.0,0.15,-0.037,-0.053,-0.022
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/frequency_daily/leaderboard_MASE.csv b/tables/frequency_daily/leaderboard_MASE.csv
deleted file mode 100644
index 8ecc18bc63bac9b97163cbed6d474bebd94c16cd..0000000000000000000000000000000000000000
--- a/tables/frequency_daily/leaderboard_MASE.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,87.5,32.33462583489032,0.0,0.34862936275497514,0.0,0.0
-TiRex,82.14285714285714,27.393757851738563,0.0,0.12056570828620417,0.0,0.0
-TimesFM-2.5,82.14285714285714,28.58993577814578,0.0,0.5763130827970966,0.1,0.0
-Moirai-2.0,71.07142857142857,27.327119457216774,0.0,0.24129671231988042,0.4,0.0
-Chronos-Bolt,68.57142857142856,26.21901130113915,0.0,0.1322703744317049,0.0,0.0
-Toto-1.0,64.28571428571429,25.161403711604645,0.0,10.207355941916667,0.1,0.0
-Sundial-Base,64.28571428571429,23.2064084542026,0.0,8.099000643582091,0.0,0.0
-TabPFN-TS,51.25000000000001,22.24063378407398,0.0,59.46589885165178,0.0,10.0
-Stat. Ensemble,44.28571428571429,19.015945347692732,0.0,148.58311610827104,0.0,5.0
-AutoETS,36.07142857142858,17.603485534435016,0.0,3.3284211108491193,0.0,0.0
-AutoARIMA,33.92857142857143,14.206772558259006,0.0,74.34524439111118,0.0,0.0
-AutoTheta,32.85714285714285,14.04647577833794,0.0,3.1050995276688527,0.0,0.0
-Seasonal Naive,13.392857142857142,0.0,0.0,0.33344394039464936,0.0,0.0
-Naive,12.142857142857146,-12.05830008930513,0.0,0.33027376482294407,0.0,0.0
-Drift,6.071428571428572,-13.72534923283335,0.0,0.3192311944547016,0.0,0.0
diff --git a/tables/frequency_daily/leaderboard_SQL.csv b/tables/frequency_daily/leaderboard_SQL.csv
deleted file mode 100644
index 182b6536def361a147efb73ad650cdd6f03117e2..0000000000000000000000000000000000000000
--- a/tables/frequency_daily/leaderboard_SQL.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,89.28571428571429,40.241553662568045,0.0,0.34862936275497514,0.0,0.0
-TiRex,86.07142857142858,35.70932539579903,0.0,0.12056570828620417,0.0,0.0
-TimesFM-2.5,81.78571428571428,36.215123642926486,0.0,0.5763130827970966,0.1,0.0
-Moirai-2.0,75.0,35.235748261795464,0.0,0.24129671231988042,0.4,0.0
-Chronos-Bolt,73.92857142857142,34.57369587246277,0.0,0.1322703744317049,0.0,0.0
-Toto-1.0,66.42857142857143,33.56878978918307,0.0,10.207355941916667,0.1,0.0
-TabPFN-TS,57.32142857142858,30.731316106319685,0.0,59.46589885165178,0.0,10.0
-Sundial-Base,47.14285714285714,26.53990685654952,0.0,8.099000643582091,0.0,0.0
-Stat. Ensemble,42.142857142857146,23.310736729304406,0.0,148.58311610827104,0.0,5.0
-AutoARIMA,38.214285714285715,21.22121312418056,0.0,74.34524439111118,0.0,0.0
-AutoETS,35.35714285714285,20.12076697801173,0.0,3.3284211108491193,0.0,0.0
-AutoTheta,26.071428571428573,15.776905389926565,0.0,3.1050995276688527,0.0,0.0
-Seasonal Naive,18.035714285714285,0.0,0.0,0.33344394039464936,0.0,0.0
-Naive,9.642857142857144,-43.69147280742762,0.0,0.33027376482294407,0.0,0.0
-Drift,3.571428571428571,-44.7554216841189,0.0,0.3192311944547016,0.0,0.0
diff --git a/tables/frequency_daily/leaderboard_WAPE.csv b/tables/frequency_daily/leaderboard_WAPE.csv
deleted file mode 100644
index 7a26151826a061e5f35bd24cb746b86860a3b6ec..0000000000000000000000000000000000000000
--- a/tables/frequency_daily/leaderboard_WAPE.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,88.21428571428572,34.73588594604664,0.0,0.34862936275497514,0.0,0.0
-TimesFM-2.5,82.5,30.331123145065753,0.0,0.5763130827970966,0.1,0.0
-TiRex,80.35714285714286,30.04838154281978,0.0,0.12056570828620417,0.0,0.0
-Moirai-2.0,70.0,29.395644929393384,0.0,0.24129671231988042,0.4,0.0
-Chronos-Bolt,67.14285714285715,27.11185183289192,0.0,0.1322703744317049,0.0,0.0
-Toto-1.0,62.85714285714287,27.120126304305725,0.0,10.207355941916667,0.1,0.0
-Sundial-Base,61.78571428571429,24.782966216672285,0.0,8.099000643582091,0.0,0.0
-TabPFN-TS,57.321428571428555,25.898630077241936,0.0,59.46589885165178,0.0,10.0
-Stat. Ensemble,46.42857142857142,20.048347663551425,0.0,148.58311610827104,0.0,5.0
-AutoARIMA,36.07142857142858,17.777947817676132,0.0,74.34524439111118,0.0,0.0
-AutoETS,36.07142857142857,18.813705921644818,0.0,3.3284211108491193,0.0,0.0
-AutoTheta,29.28571428571428,14.370876577265967,0.0,3.1050995276688527,0.0,0.0
-Naive,14.64285714285714,-11.759514056529575,0.0,0.33027376482294407,0.0,0.0
-Seasonal Naive,11.607142857142858,0.0,0.0,0.33344394039464936,0.0,0.0
-Drift,5.714285714285714,-13.858459934925316,0.0,0.3192311944547016,0.0,0.0
diff --git a/tables/frequency_daily/leaderboard_WQL.csv b/tables/frequency_daily/leaderboard_WQL.csv
deleted file mode 100644
index c8c1c5778d270b691f9f71929822e85e04da66db..0000000000000000000000000000000000000000
--- a/tables/frequency_daily/leaderboard_WQL.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,88.21428571428571,44.77656337400558,0.0,0.34862936275497514,0.0,0.0
-TiRex,84.28571428571429,40.60690863759879,0.0,0.12056570828620417,0.0,0.0
-TimesFM-2.5,83.57142857142857,40.69540369974936,0.0,0.5763130827970966,0.1,0.0
-Moirai-2.0,75.71428571428572,39.91164248768357,0.0,0.24129671231988042,0.4,0.0
-Chronos-Bolt,70.35714285714286,38.313765874575154,0.0,0.1322703744317049,0.0,0.0
-Toto-1.0,66.42857142857143,38.175979444656846,0.0,10.207355941916667,0.1,0.0
-TabPFN-TS,61.96428571428571,36.67704253513349,0.0,59.46589885165178,0.0,10.0
-Sundial-Base,48.57142857142856,31.246086693430332,0.0,8.099000643582091,0.0,0.0
-Stat. Ensemble,43.21428571428571,25.454460772291498,0.0,148.58311610827104,0.0,5.0
-AutoARIMA,41.07142857142857,25.85193480620731,0.0,74.34524439111118,0.0,0.0
-AutoETS,33.214285714285715,21.589312538875138,0.0,3.3284211108491193,0.0,0.0
-AutoTheta,25.000000000000007,16.511025466699557,0.0,3.1050995276688527,0.0,0.0
-Seasonal Naive,15.178571428571427,0.0,0.0,0.33344394039464936,0.0,0.0
-Naive,10.0,-44.1490350185211,0.0,0.33027376482294407,0.0,0.0
-Drift,3.214285714285714,-45.70449009907933,0.0,0.3192311944547016,0.0,0.0
diff --git a/tables/frequency_daily/pairwise_MASE.csv b/tables/frequency_daily/pairwise_MASE.csv
deleted file mode 100644
index 4e1d6474d84d268a1dd4da8585ba42bfb8f1816d..0000000000000000000000000000000000000000
--- a/tables/frequency_daily/pairwise_MASE.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TimesFM-2.5,0.6,0.4,0.8,0.052,-0.004,0.116
-Chronos-2,TiRex,0.5,0.3,0.7,0.068,0.007,0.144
-Chronos-2,Moirai-2.0,0.75,0.55,0.9,0.069,0.013,0.135
-Chronos-2,Chronos-Bolt,0.85,0.7,1.0,0.083,0.034,0.145
-Chronos-2,Sundial-Base,0.9,0.75,1.0,0.119,0.052,0.194
-Chronos-2,Toto-1.0,0.8,0.65,0.95,0.096,0.031,0.163
-Chronos-2,TabPFN-TS,0.95,0.85,1.0,0.13,0.052,0.21
-Chronos-2,Stat. Ensemble,0.95,0.85,1.0,0.164,0.11,0.226
-Chronos-2,AutoETS,0.95,0.85,1.0,0.179,0.118,0.24
-Chronos-2,AutoARIMA,1.0,1.0,1.0,0.211,0.141,0.283
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.213,0.149,0.284
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.323,0.255,0.4
-Chronos-2,Naive,1.0,1.0,1.0,0.396,0.313,0.486
-Chronos-2,Drift,1.0,1.0,1.0,0.405,0.33,0.491
-TimesFM-2.5,Chronos-2,0.4,0.2,0.6,-0.055,-0.131,0.004
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TiRex,0.5,0.3,0.7,0.016,-0.004,0.041
-TimesFM-2.5,Moirai-2.0,0.6,0.4,0.8,0.017,0.001,0.034
-TimesFM-2.5,Chronos-Bolt,0.75,0.55,0.9,0.032,0.008,0.064
-TimesFM-2.5,Sundial-Base,0.8,0.649,0.95,0.07,0.017,0.151
-TimesFM-2.5,Toto-1.0,0.75,0.575,0.9,0.046,0.022,0.07
-TimesFM-2.5,TabPFN-TS,0.85,0.7,1.0,0.082,-0.026,0.178
-TimesFM-2.5,Stat. Ensemble,0.95,0.85,1.0,0.118,0.075,0.164
-TimesFM-2.5,AutoETS,0.95,0.85,1.0,0.133,0.089,0.18
-TimesFM-2.5,AutoARIMA,1.0,1.0,1.0,0.168,0.111,0.229
-TimesFM-2.5,AutoTheta,0.95,0.85,1.0,0.169,0.107,0.244
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.286,0.221,0.371
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.363,0.286,0.442
-TimesFM-2.5,Drift,1.0,1.0,1.0,0.372,0.306,0.441
-TiRex,Chronos-2,0.5,0.3,0.7,-0.073,-0.169,-0.007
-TiRex,TimesFM-2.5,0.5,0.3,0.7,-0.017,-0.043,0.004
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,Moirai-2.0,0.75,0.55,0.95,0.001,-0.025,0.024
-TiRex,Chronos-Bolt,0.8,0.6,0.95,0.016,-0.013,0.041
-TiRex,Sundial-Base,0.7,0.5,0.9,0.055,0.002,0.123
-TiRex,Toto-1.0,0.75,0.55,0.9,0.03,-0.002,0.059
-TiRex,TabPFN-TS,0.9,0.75,1.0,0.066,-0.053,0.152
-TiRex,Stat. Ensemble,0.85,0.7,1.0,0.103,0.06,0.153
-TiRex,AutoETS,0.85,0.7,1.0,0.119,0.07,0.168
-TiRex,AutoARIMA,0.95,0.85,1.0,0.154,0.1,0.217
-TiRex,AutoTheta,0.95,0.85,1.0,0.155,0.096,0.223
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.274,0.214,0.351
-TiRex,Naive,1.0,1.0,1.0,0.352,0.281,0.426
-TiRex,Drift,1.0,1.0,1.0,0.362,0.299,0.427
-Moirai-2.0,Chronos-2,0.25,0.1,0.45,-0.074,-0.156,-0.014
-Moirai-2.0,TimesFM-2.5,0.4,0.2,0.6,-0.018,-0.035,-0.001
-Moirai-2.0,TiRex,0.25,0.05,0.45,-0.001,-0.024,0.024
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Chronos-Bolt,0.5,0.349,0.65,0.015,-0.006,0.043
-Moirai-2.0,Sundial-Base,0.55,0.35,0.75,0.054,-0.005,0.136
-Moirai-2.0,Toto-1.0,0.6,0.4,0.8,0.029,0.005,0.052
-Moirai-2.0,TabPFN-TS,0.7,0.5,0.9,0.065,-0.05,0.167
-Moirai-2.0,Stat. Ensemble,0.9,0.75,1.0,0.103,0.064,0.146
-Moirai-2.0,AutoETS,0.85,0.7,1.0,0.118,0.076,0.163
-Moirai-2.0,AutoARIMA,0.95,0.85,1.0,0.153,0.096,0.221
-Moirai-2.0,AutoTheta,1.0,1.0,1.0,0.155,0.096,0.23
-Moirai-2.0,Seasonal Naive,1.0,1.0,1.0,0.273,0.208,0.361
-Moirai-2.0,Naive,1.0,1.0,1.0,0.351,0.275,0.427
-Moirai-2.0,Drift,1.0,1.0,1.0,0.361,0.292,0.425
-Chronos-Bolt,Chronos-2,0.15,0.0,0.3,-0.09,-0.169,-0.035
-Chronos-Bolt,TimesFM-2.5,0.25,0.1,0.45,-0.033,-0.069,-0.008
-Chronos-Bolt,TiRex,0.2,0.05,0.4,-0.016,-0.043,0.013
-Chronos-Bolt,Moirai-2.0,0.5,0.35,0.651,-0.015,-0.045,0.006
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Sundial-Base,0.5,0.3,0.7,0.039,-0.003,0.099
-Chronos-Bolt,Toto-1.0,0.65,0.45,0.85,0.014,-0.029,0.046
-Chronos-Bolt,TabPFN-TS,0.7,0.5,0.9,0.051,-0.061,0.137
-Chronos-Bolt,Stat. Ensemble,0.85,0.7,1.0,0.089,0.044,0.137
-Chronos-Bolt,AutoETS,0.85,0.7,1.0,0.105,0.049,0.158
-Chronos-Bolt,AutoARIMA,0.95,0.85,1.0,0.14,0.077,0.205
-Chronos-Bolt,AutoTheta,1.0,1.0,1.0,0.142,0.093,0.197
-Chronos-Bolt,Seasonal Naive,1.0,1.0,1.0,0.262,0.207,0.334
-Chronos-Bolt,Naive,1.0,1.0,1.0,0.342,0.274,0.412
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.351,0.289,0.414
-Sundial-Base,Chronos-2,0.1,0.0,0.25,-0.135,-0.241,-0.055
-Sundial-Base,TimesFM-2.5,0.2,0.05,0.351,-0.075,-0.178,-0.018
-Sundial-Base,TiRex,0.3,0.1,0.5,-0.058,-0.14,-0.002
-Sundial-Base,Moirai-2.0,0.45,0.25,0.65,-0.057,-0.157,0.005
-Sundial-Base,Chronos-Bolt,0.5,0.3,0.7,-0.041,-0.11,0.003
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Toto-1.0,0.5,0.3,0.7,-0.026,-0.135,0.044
-Sundial-Base,TabPFN-TS,0.6,0.4,0.8,0.012,-0.089,0.08
-Sundial-Base,Stat. Ensemble,0.7,0.5,0.9,0.052,-0.051,0.126
-Sundial-Base,AutoETS,0.8,0.6,0.95,0.068,-0.047,0.15
-Sundial-Base,AutoARIMA,0.9,0.75,1.0,0.105,0.0,0.193
-Sundial-Base,AutoTheta,0.95,0.85,1.0,0.107,0.069,0.148
-Sundial-Base,Seasonal Naive,1.0,1.0,1.0,0.232,0.197,0.268
-Sundial-Base,Naive,1.0,1.0,1.0,0.315,0.253,0.381
-Sundial-Base,Drift,1.0,1.0,1.0,0.325,0.263,0.394
-Toto-1.0,Chronos-2,0.2,0.05,0.35,-0.106,-0.194,-0.032
-Toto-1.0,TimesFM-2.5,0.25,0.1,0.425,-0.048,-0.075,-0.022
-Toto-1.0,TiRex,0.25,0.1,0.45,-0.031,-0.062,0.002
-Toto-1.0,Moirai-2.0,0.4,0.2,0.6,-0.03,-0.055,-0.005
-Toto-1.0,Chronos-Bolt,0.35,0.15,0.55,-0.014,-0.049,0.028
-Toto-1.0,Sundial-Base,0.5,0.3,0.7,0.025,-0.046,0.119
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,TabPFN-TS,0.6,0.4,0.8,0.038,-0.089,0.144
-Toto-1.0,Stat. Ensemble,0.8,0.6,0.95,0.076,0.034,0.121
-Toto-1.0,AutoETS,0.9,0.75,1.0,0.092,0.049,0.133
-Toto-1.0,AutoARIMA,0.85,0.7,1.0,0.128,0.071,0.19
-Toto-1.0,AutoTheta,0.9,0.75,1.0,0.129,0.067,0.212
-Toto-1.0,Seasonal Naive,1.0,1.0,1.0,0.252,0.179,0.345
-Toto-1.0,Naive,1.0,1.0,1.0,0.332,0.257,0.414
-Toto-1.0,Drift,1.0,1.0,1.0,0.342,0.279,0.409
-TabPFN-TS,Chronos-2,0.05,0.0,0.15,-0.149,-0.266,-0.055
-TabPFN-TS,TimesFM-2.5,0.15,0.0,0.3,-0.089,-0.216,0.025
-TabPFN-TS,TiRex,0.1,0.0,0.25,-0.071,-0.18,0.05
-TabPFN-TS,Moirai-2.0,0.3,0.1,0.5,-0.07,-0.2,0.047
-TabPFN-TS,Chronos-Bolt,0.3,0.1,0.5,-0.054,-0.158,0.058
-TabPFN-TS,Sundial-Base,0.4,0.2,0.6,-0.013,-0.087,0.082
-TabPFN-TS,Toto-1.0,0.4,0.2,0.6,-0.039,-0.169,0.082
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Stat. Ensemble,0.625,0.425,0.825,0.04,-0.078,0.149
-TabPFN-TS,AutoETS,0.6,0.4,0.8,0.056,-0.066,0.169
-TabPFN-TS,AutoARIMA,0.75,0.55,0.901,0.094,-0.021,0.202
-TabPFN-TS,AutoTheta,0.7,0.5,0.9,0.095,0.008,0.198
-TabPFN-TS,Seasonal Naive,0.9,0.775,1.0,0.222,0.153,0.304
-TabPFN-TS,Naive,0.95,0.85,1.0,0.306,0.21,0.425
-TabPFN-TS,Drift,0.95,0.85,1.0,0.316,0.22,0.434
-Stat. Ensemble,Chronos-2,0.05,0.0,0.15,-0.197,-0.291,-0.123
-Stat. Ensemble,TimesFM-2.5,0.05,0.0,0.15,-0.134,-0.197,-0.081
-Stat. Ensemble,TiRex,0.15,0.0,0.3,-0.115,-0.18,-0.063
-Stat. Ensemble,Moirai-2.0,0.1,0.0,0.25,-0.114,-0.171,-0.068
-Stat. Ensemble,Chronos-Bolt,0.15,0.0,0.3,-0.098,-0.159,-0.046
-Stat. Ensemble,Sundial-Base,0.3,0.1,0.5,-0.055,-0.144,0.048
-Stat. Ensemble,Toto-1.0,0.2,0.05,0.4,-0.082,-0.137,-0.036
-Stat. Ensemble,TabPFN-TS,0.375,0.175,0.575,-0.041,-0.175,0.072
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoETS,0.75,0.55,0.95,0.017,-0.009,0.042
-Stat. Ensemble,AutoARIMA,0.6,0.4,0.8,0.056,0.005,0.104
-Stat. Ensemble,AutoTheta,0.8,0.6,0.95,0.058,0.002,0.143
-Stat. Ensemble,Seasonal Naive,0.875,0.75,1.0,0.19,0.101,0.291
-Stat. Ensemble,Naive,0.9,0.75,1.0,0.277,0.183,0.374
-Stat. Ensemble,Drift,0.9,0.75,1.0,0.288,0.199,0.374
-AutoETS,Chronos-2,0.05,0.0,0.15,-0.218,-0.316,-0.133
-AutoETS,TimesFM-2.5,0.05,0.0,0.15,-0.154,-0.22,-0.098
-AutoETS,TiRex,0.15,0.0,0.3,-0.135,-0.202,-0.075
-AutoETS,Moirai-2.0,0.15,0.0,0.3,-0.134,-0.195,-0.083
-AutoETS,Chronos-Bolt,0.15,0.0,0.3,-0.117,-0.188,-0.052
-AutoETS,Sundial-Base,0.2,0.05,0.4,-0.073,-0.176,0.045
-AutoETS,Toto-1.0,0.1,0.0,0.25,-0.101,-0.154,-0.052
-AutoETS,TabPFN-TS,0.4,0.2,0.6,-0.06,-0.203,0.062
-AutoETS,Stat. Ensemble,0.25,0.05,0.45,-0.017,-0.044,0.009
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,AutoARIMA,0.55,0.35,0.75,0.04,-0.015,0.097
-AutoETS,AutoTheta,0.5,0.3,0.7,0.041,-0.018,0.131
-AutoETS,Seasonal Naive,0.9,0.75,1.0,0.176,0.084,0.283
-AutoETS,Naive,0.8,0.65,0.95,0.265,0.161,0.361
-AutoETS,Drift,0.8,0.65,0.95,0.275,0.183,0.363
-AutoARIMA,Chronos-2,0.0,0.0,0.0,-0.268,-0.395,-0.164
-AutoARIMA,TimesFM-2.5,0.0,0.0,0.0,-0.201,-0.297,-0.125
-AutoARIMA,TiRex,0.05,0.0,0.15,-0.182,-0.278,-0.111
-AutoARIMA,Moirai-2.0,0.05,0.0,0.15,-0.181,-0.283,-0.106
-AutoARIMA,Chronos-Bolt,0.05,0.0,0.15,-0.163,-0.258,-0.083
-AutoARIMA,Sundial-Base,0.1,0.0,0.25,-0.117,-0.239,-0.0
-AutoARIMA,Toto-1.0,0.15,0.0,0.3,-0.146,-0.234,-0.076
-AutoARIMA,TabPFN-TS,0.25,0.099,0.45,-0.103,-0.253,0.021
-AutoARIMA,Stat. Ensemble,0.4,0.2,0.6,-0.059,-0.115,-0.005
-AutoARIMA,AutoETS,0.45,0.25,0.65,-0.041,-0.107,0.015
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoTheta,0.55,0.35,0.75,0.002,-0.093,0.103
-AutoARIMA,Seasonal Naive,0.9,0.75,1.0,0.142,0.039,0.25
-AutoARIMA,Naive,0.9,0.75,1.0,0.234,0.121,0.342
-AutoARIMA,Drift,0.9,0.75,1.0,0.246,0.141,0.346
-AutoTheta,Chronos-2,0.0,0.0,0.0,-0.27,-0.397,-0.175
-AutoTheta,TimesFM-2.5,0.05,0.0,0.15,-0.204,-0.323,-0.12
-AutoTheta,TiRex,0.05,0.0,0.15,-0.184,-0.287,-0.106
-AutoTheta,Moirai-2.0,0.0,0.0,0.0,-0.183,-0.298,-0.106
-AutoTheta,Chronos-Bolt,0.0,0.0,0.0,-0.165,-0.245,-0.102
-AutoTheta,Sundial-Base,0.05,0.0,0.15,-0.119,-0.174,-0.074
-AutoTheta,Toto-1.0,0.1,0.0,0.25,-0.149,-0.27,-0.071
-AutoTheta,TabPFN-TS,0.3,0.1,0.5,-0.105,-0.247,-0.008
-AutoTheta,Stat. Ensemble,0.2,0.05,0.4,-0.061,-0.167,-0.002
-AutoTheta,AutoETS,0.5,0.3,0.7,-0.043,-0.15,0.018
-AutoTheta,AutoARIMA,0.45,0.25,0.65,-0.002,-0.115,0.085
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Seasonal Naive,0.95,0.85,1.0,0.14,0.092,0.186
-AutoTheta,Naive,1.0,1.0,1.0,0.233,0.163,0.308
-AutoTheta,Drift,0.95,0.85,1.0,0.244,0.171,0.325
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-0.478,-0.668,-0.342
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-0.4,-0.591,-0.283
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.377,-0.541,-0.272
-Seasonal Naive,Moirai-2.0,0.0,0.0,0.0,-0.376,-0.565,-0.263
-Seasonal Naive,Chronos-Bolt,0.0,0.0,0.0,-0.355,-0.501,-0.261
-Seasonal Naive,Sundial-Base,0.0,0.0,0.0,-0.302,-0.366,-0.246
-Seasonal Naive,Toto-1.0,0.0,0.0,0.0,-0.336,-0.526,-0.217
-Seasonal Naive,TabPFN-TS,0.1,0.0,0.225,-0.286,-0.436,-0.18
-Seasonal Naive,Stat. Ensemble,0.125,0.0,0.25,-0.235,-0.411,-0.113
-Seasonal Naive,AutoETS,0.1,0.0,0.25,-0.214,-0.395,-0.092
-Seasonal Naive,AutoARIMA,0.1,0.0,0.25,-0.166,-0.333,-0.04
-Seasonal Naive,AutoTheta,0.05,0.0,0.15,-0.163,-0.229,-0.101
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Naive,0.65,0.45,0.85,0.108,0.029,0.194
-Seasonal Naive,Drift,0.75,0.55,0.9,0.121,0.027,0.218
-Naive,Chronos-2,0.0,0.0,0.0,-0.656,-0.945,-0.455
-Naive,TimesFM-2.5,0.0,0.0,0.0,-0.569,-0.792,-0.4
-Naive,TiRex,0.0,0.0,0.0,-0.543,-0.743,-0.391
-Naive,Moirai-2.0,0.0,0.0,0.0,-0.542,-0.746,-0.38
-Naive,Chronos-Bolt,0.0,0.0,0.0,-0.519,-0.699,-0.378
-Naive,Sundial-Base,0.0,0.0,0.0,-0.459,-0.615,-0.338
-Naive,Toto-1.0,0.0,0.0,0.0,-0.497,-0.706,-0.346
-Naive,TabPFN-TS,0.05,0.0,0.15,-0.441,-0.74,-0.266
-Naive,Stat. Ensemble,0.1,0.0,0.25,-0.384,-0.597,-0.223
-Naive,AutoETS,0.2,0.05,0.35,-0.36,-0.565,-0.192
-Naive,AutoARIMA,0.1,0.0,0.25,-0.306,-0.52,-0.138
-Naive,AutoTheta,0.0,0.0,0.0,-0.304,-0.445,-0.195
-Naive,Seasonal Naive,0.35,0.15,0.55,-0.121,-0.24,-0.03
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,0.9,0.75,1.0,0.015,-0.023,0.042
-Drift,Chronos-2,0.0,0.0,0.0,-0.681,-0.963,-0.492
-Drift,TimesFM-2.5,0.0,0.0,0.0,-0.593,-0.79,-0.441
-Drift,TiRex,0.0,0.0,0.0,-0.566,-0.745,-0.427
-Drift,Moirai-2.0,0.0,0.0,0.0,-0.565,-0.739,-0.413
-Drift,Chronos-Bolt,0.0,0.0,0.0,-0.541,-0.708,-0.406
-Drift,Sundial-Base,0.0,0.0,0.0,-0.481,-0.65,-0.356
-Drift,Toto-1.0,0.0,0.0,0.0,-0.52,-0.691,-0.387
-Drift,TabPFN-TS,0.05,0.0,0.15,-0.463,-0.768,-0.282
-Drift,Stat. Ensemble,0.1,0.0,0.25,-0.404,-0.599,-0.248
-Drift,AutoETS,0.2,0.05,0.35,-0.38,-0.569,-0.224
-Drift,AutoARIMA,0.1,0.0,0.25,-0.326,-0.529,-0.164
-Drift,AutoTheta,0.05,0.0,0.15,-0.323,-0.481,-0.206
-Drift,Seasonal Naive,0.25,0.1,0.45,-0.137,-0.279,-0.028
-Drift,Naive,0.1,0.0,0.25,-0.015,-0.043,0.023
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/frequency_daily/pairwise_SQL.csv b/tables/frequency_daily/pairwise_SQL.csv
deleted file mode 100644
index 988182f661966d508cc6f5839047a89ba89d1b84..0000000000000000000000000000000000000000
--- a/tables/frequency_daily/pairwise_SQL.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TiRex,0.55,0.35,0.75,0.07,0.01,0.142
-Chronos-2,TimesFM-2.5,0.6,0.4,0.8,0.063,0.008,0.13
-Chronos-2,Moirai-2.0,0.8,0.6,0.95,0.077,0.019,0.148
-Chronos-2,Chronos-Bolt,0.85,0.7,1.0,0.087,0.033,0.151
-Chronos-2,Toto-1.0,0.9,0.75,1.0,0.1,0.031,0.173
-Chronos-2,TabPFN-TS,0.95,0.85,1.0,0.137,0.06,0.221
-Chronos-2,Sundial-Base,0.95,0.85,1.0,0.187,0.125,0.255
-Chronos-2,Stat. Ensemble,0.95,0.85,1.0,0.221,0.157,0.29
-Chronos-2,AutoARIMA,1.0,1.0,1.0,0.241,0.162,0.318
-Chronos-2,AutoETS,0.95,0.85,1.0,0.252,0.186,0.316
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.29,0.211,0.369
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.402,0.335,0.481
-Chronos-2,Naive,1.0,1.0,1.0,0.584,0.506,0.665
-Chronos-2,Drift,1.0,1.0,1.0,0.587,0.512,0.666
-TiRex,Chronos-2,0.45,0.25,0.65,-0.076,-0.166,-0.01
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,TimesFM-2.5,0.55,0.35,0.75,-0.008,-0.026,0.008
-TiRex,Moirai-2.0,0.75,0.55,0.95,0.007,-0.014,0.029
-TiRex,Chronos-Bolt,0.75,0.55,0.95,0.017,0.0,0.036
-TiRex,Toto-1.0,0.85,0.7,1.0,0.032,-0.002,0.06
-TiRex,TabPFN-TS,0.9,0.75,1.0,0.072,-0.049,0.161
-TiRex,Sundial-Base,0.9,0.75,1.0,0.125,0.078,0.184
-TiRex,Stat. Ensemble,0.95,0.85,1.0,0.162,0.107,0.218
-TiRex,AutoARIMA,1.0,1.0,1.0,0.184,0.123,0.25
-TiRex,AutoETS,0.95,0.85,1.0,0.195,0.141,0.254
-TiRex,AutoTheta,1.0,1.0,1.0,0.237,0.173,0.305
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.357,0.297,0.424
-TiRex,Naive,1.0,1.0,1.0,0.553,0.486,0.622
-TiRex,Drift,1.0,1.0,1.0,0.556,0.49,0.623
-TimesFM-2.5,Chronos-2,0.4,0.2,0.6,-0.067,-0.149,-0.008
-TimesFM-2.5,TiRex,0.45,0.25,0.65,0.008,-0.008,0.026
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,Moirai-2.0,0.6,0.4,0.8,0.015,-0.002,0.034
-TimesFM-2.5,Chronos-Bolt,0.7,0.5,0.875,0.025,0.005,0.046
-TimesFM-2.5,Toto-1.0,0.7,0.525,0.875,0.04,0.01,0.068
-TimesFM-2.5,TabPFN-TS,0.8,0.649,0.95,0.079,-0.034,0.172
-TimesFM-2.5,Sundial-Base,1.0,1.0,1.0,0.132,0.085,0.2
-TimesFM-2.5,Stat. Ensemble,0.95,0.85,1.0,0.168,0.116,0.224
-TimesFM-2.5,AutoARIMA,0.95,0.85,1.0,0.19,0.129,0.256
-TimesFM-2.5,AutoETS,0.9,0.75,1.0,0.201,0.149,0.259
-TimesFM-2.5,AutoTheta,1.0,1.0,1.0,0.243,0.172,0.316
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.362,0.299,0.435
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.556,0.485,0.629
-TimesFM-2.5,Drift,1.0,1.0,1.0,0.559,0.492,0.628
-Moirai-2.0,Chronos-2,0.2,0.05,0.4,-0.084,-0.174,-0.019
-Moirai-2.0,TiRex,0.25,0.05,0.45,-0.007,-0.03,0.014
-Moirai-2.0,TimesFM-2.5,0.4,0.2,0.6,-0.015,-0.035,0.002
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Chronos-Bolt,0.45,0.3,0.6,0.01,-0.007,0.033
-Moirai-2.0,Toto-1.0,0.6,0.4,0.8,0.025,-0.004,0.05
-Moirai-2.0,TabPFN-TS,0.7,0.5,0.9,0.065,-0.055,0.163
-Moirai-2.0,Sundial-Base,0.95,0.85,1.0,0.118,0.065,0.194
-Moirai-2.0,Stat. Ensemble,0.95,0.85,1.0,0.155,0.105,0.208
-Moirai-2.0,AutoARIMA,1.0,1.0,1.0,0.178,0.117,0.248
-Moirai-2.0,AutoETS,1.0,1.0,1.0,0.189,0.141,0.245
-Moirai-2.0,AutoTheta,1.0,1.0,1.0,0.231,0.163,0.305
-Moirai-2.0,Seasonal Naive,1.0,1.0,1.0,0.352,0.286,0.426
-Moirai-2.0,Naive,1.0,1.0,1.0,0.549,0.477,0.622
-Moirai-2.0,Drift,1.0,1.0,1.0,0.553,0.483,0.624
-Chronos-Bolt,Chronos-2,0.15,0.0,0.3,-0.095,-0.178,-0.034
-Chronos-Bolt,TiRex,0.25,0.05,0.45,-0.018,-0.037,-0.0
-Chronos-Bolt,TimesFM-2.5,0.3,0.125,0.5,-0.026,-0.048,-0.005
-Chronos-Bolt,Moirai-2.0,0.55,0.4,0.7,-0.01,-0.034,0.007
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Toto-1.0,0.6,0.4,0.8,0.015,-0.026,0.048
-Chronos-Bolt,TabPFN-TS,0.7,0.5,0.9,0.055,-0.061,0.144
-Chronos-Bolt,Sundial-Base,1.0,1.0,1.0,0.109,0.067,0.168
-Chronos-Bolt,Stat. Ensemble,0.95,0.85,1.0,0.147,0.093,0.203
-Chronos-Bolt,AutoARIMA,0.95,0.85,1.0,0.169,0.107,0.24
-Chronos-Bolt,AutoETS,0.9,0.75,1.0,0.181,0.126,0.24
-Chronos-Bolt,AutoTheta,1.0,1.0,1.0,0.223,0.164,0.288
-Chronos-Bolt,Seasonal Naive,1.0,1.0,1.0,0.346,0.288,0.41
-Chronos-Bolt,Naive,1.0,1.0,1.0,0.545,0.475,0.615
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.548,0.481,0.617
-Toto-1.0,Chronos-2,0.1,0.0,0.25,-0.112,-0.209,-0.032
-Toto-1.0,TiRex,0.15,0.0,0.3,-0.033,-0.063,0.002
-Toto-1.0,TimesFM-2.5,0.3,0.125,0.475,-0.041,-0.073,-0.01
-Toto-1.0,Moirai-2.0,0.4,0.2,0.6,-0.026,-0.053,0.004
-Toto-1.0,Chronos-Bolt,0.4,0.2,0.6,-0.015,-0.05,0.026
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,TabPFN-TS,0.6,0.4,0.8,0.041,-0.096,0.148
-Toto-1.0,Sundial-Base,0.75,0.55,0.95,0.096,0.027,0.182
-Toto-1.0,Stat. Ensemble,0.9,0.75,1.0,0.134,0.078,0.19
-Toto-1.0,AutoARIMA,0.85,0.7,1.0,0.157,0.094,0.227
-Toto-1.0,AutoETS,0.9,0.75,1.0,0.168,0.118,0.222
-Toto-1.0,AutoTheta,0.95,0.85,1.0,0.211,0.14,0.297
-Toto-1.0,Seasonal Naive,1.0,1.0,1.0,0.336,0.263,0.42
-Toto-1.0,Naive,1.0,1.0,1.0,0.538,0.462,0.612
-Toto-1.0,Drift,1.0,1.0,1.0,0.541,0.471,0.61
-TabPFN-TS,Chronos-2,0.05,0.0,0.15,-0.159,-0.283,-0.064
-TabPFN-TS,TiRex,0.1,0.0,0.25,-0.077,-0.192,0.047
-TabPFN-TS,TimesFM-2.5,0.2,0.05,0.351,-0.086,-0.207,0.033
-TabPFN-TS,Moirai-2.0,0.3,0.1,0.5,-0.07,-0.195,0.052
-TabPFN-TS,Chronos-Bolt,0.3,0.1,0.5,-0.059,-0.168,0.058
-TabPFN-TS,Toto-1.0,0.4,0.2,0.6,-0.043,-0.173,0.087
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Sundial-Base,0.7,0.5,0.9,0.057,-0.026,0.15
-TabPFN-TS,Stat. Ensemble,0.675,0.475,0.85,0.097,-0.01,0.203
-TabPFN-TS,AutoARIMA,0.75,0.55,0.9,0.121,0.004,0.235
-TabPFN-TS,AutoETS,0.7,0.5,0.9,0.133,0.012,0.244
-TabPFN-TS,AutoTheta,0.9,0.75,1.0,0.178,0.076,0.291
-TabPFN-TS,Seasonal Naive,0.95,0.875,1.0,0.307,0.228,0.4
-TabPFN-TS,Naive,1.0,1.0,1.0,0.518,0.42,0.627
-TabPFN-TS,Drift,1.0,1.0,1.0,0.521,0.422,0.63
-Sundial-Base,Chronos-2,0.05,0.0,0.15,-0.229,-0.342,-0.143
-Sundial-Base,TiRex,0.1,0.0,0.25,-0.143,-0.226,-0.085
-Sundial-Base,TimesFM-2.5,0.0,0.0,0.0,-0.152,-0.249,-0.093
-Sundial-Base,Moirai-2.0,0.05,0.0,0.15,-0.134,-0.241,-0.069
-Sundial-Base,Chronos-Bolt,0.0,0.0,0.0,-0.123,-0.202,-0.071
-Sundial-Base,Toto-1.0,0.25,0.05,0.45,-0.106,-0.223,-0.027
-Sundial-Base,TabPFN-TS,0.3,0.1,0.5,-0.061,-0.176,0.025
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Stat. Ensemble,0.6,0.4,0.8,0.042,-0.066,0.128
-Sundial-Base,AutoARIMA,0.75,0.55,0.9,0.068,-0.04,0.165
-Sundial-Base,AutoETS,0.65,0.45,0.85,0.08,-0.033,0.174
-Sundial-Base,AutoTheta,0.85,0.7,1.0,0.128,0.071,0.189
-Sundial-Base,Seasonal Naive,1.0,1.0,1.0,0.265,0.223,0.311
-Sundial-Base,Naive,1.0,1.0,1.0,0.489,0.412,0.568
-Sundial-Base,Drift,1.0,1.0,1.0,0.493,0.412,0.573
-Stat. Ensemble,Chronos-2,0.05,0.0,0.15,-0.283,-0.408,-0.187
-Stat. Ensemble,TiRex,0.05,0.0,0.15,-0.193,-0.279,-0.12
-Stat. Ensemble,TimesFM-2.5,0.05,0.0,0.15,-0.202,-0.288,-0.131
-Stat. Ensemble,Moirai-2.0,0.05,0.0,0.15,-0.184,-0.263,-0.118
-Stat. Ensemble,Chronos-Bolt,0.05,0.0,0.15,-0.172,-0.255,-0.103
-Stat. Ensemble,Toto-1.0,0.1,0.0,0.25,-0.154,-0.235,-0.085
-Stat. Ensemble,TabPFN-TS,0.325,0.15,0.525,-0.107,-0.254,0.01
-Stat. Ensemble,Sundial-Base,0.4,0.2,0.6,-0.044,-0.147,0.061
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoARIMA,0.55,0.35,0.75,0.027,-0.044,0.088
-Stat. Ensemble,AutoETS,0.75,0.55,0.9,0.04,-0.021,0.097
-Stat. Ensemble,AutoTheta,0.85,0.7,1.0,0.089,0.007,0.184
-Stat. Ensemble,Seasonal Naive,0.875,0.75,1.0,0.233,0.144,0.329
-Stat. Ensemble,Naive,0.9,0.75,1.0,0.466,0.366,0.559
-Stat. Ensemble,Drift,0.9,0.75,1.0,0.47,0.376,0.559
-AutoARIMA,Chronos-2,0.0,0.0,0.0,-0.318,-0.467,-0.193
-AutoARIMA,TiRex,0.0,0.0,0.0,-0.225,-0.334,-0.14
-AutoARIMA,TimesFM-2.5,0.05,0.0,0.15,-0.235,-0.345,-0.148
-AutoARIMA,Moirai-2.0,0.0,0.0,0.0,-0.216,-0.33,-0.132
-AutoARIMA,Chronos-Bolt,0.05,0.0,0.15,-0.204,-0.315,-0.12
-AutoARIMA,Toto-1.0,0.15,0.0,0.3,-0.186,-0.294,-0.104
-AutoARIMA,TabPFN-TS,0.25,0.1,0.45,-0.137,-0.308,-0.004
-AutoARIMA,Sundial-Base,0.25,0.1,0.45,-0.072,-0.198,0.038
-AutoARIMA,Stat. Ensemble,0.45,0.25,0.65,-0.027,-0.096,0.042
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoETS,0.65,0.45,0.85,0.014,-0.063,0.085
-AutoARIMA,AutoTheta,0.8,0.65,0.95,0.065,-0.037,0.17
-AutoARIMA,Seasonal Naive,0.9,0.75,1.0,0.212,0.108,0.317
-AutoARIMA,Naive,0.9,0.75,1.0,0.452,0.342,0.553
-AutoARIMA,Drift,0.9,0.75,1.0,0.456,0.348,0.554
-AutoETS,Chronos-2,0.05,0.0,0.15,-0.337,-0.463,-0.228
-AutoETS,TiRex,0.05,0.0,0.15,-0.242,-0.34,-0.164
-AutoETS,TimesFM-2.5,0.1,0.0,0.25,-0.252,-0.349,-0.175
-AutoETS,Moirai-2.0,0.0,0.0,0.0,-0.233,-0.324,-0.164
-AutoETS,Chronos-Bolt,0.1,0.0,0.25,-0.221,-0.316,-0.144
-AutoETS,Toto-1.0,0.1,0.0,0.25,-0.202,-0.285,-0.134
-AutoETS,TabPFN-TS,0.3,0.1,0.5,-0.153,-0.323,-0.012
-AutoETS,Sundial-Base,0.35,0.15,0.55,-0.087,-0.211,0.032
-AutoETS,Stat. Ensemble,0.25,0.1,0.45,-0.042,-0.108,0.02
-AutoETS,AutoARIMA,0.35,0.15,0.55,-0.014,-0.093,0.059
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,AutoTheta,0.7,0.5,0.9,0.052,-0.031,0.15
-AutoETS,Seasonal Naive,0.8,0.6,0.95,0.201,0.099,0.306
-AutoETS,Naive,0.9,0.75,1.0,0.444,0.337,0.542
-AutoETS,Drift,0.9,0.75,1.0,0.448,0.35,0.54
-AutoTheta,Chronos-2,0.0,0.0,0.0,-0.409,-0.586,-0.267
-AutoTheta,TiRex,0.0,0.0,0.0,-0.31,-0.439,-0.209
-AutoTheta,TimesFM-2.5,0.0,0.0,0.0,-0.32,-0.462,-0.208
-AutoTheta,Moirai-2.0,0.0,0.0,0.0,-0.3,-0.438,-0.195
-AutoTheta,Chronos-Bolt,0.0,0.0,0.0,-0.287,-0.404,-0.196
-AutoTheta,Toto-1.0,0.05,0.0,0.15,-0.268,-0.423,-0.162
-AutoTheta,TabPFN-TS,0.1,0.0,0.25,-0.216,-0.41,-0.082
-AutoTheta,Sundial-Base,0.15,0.0,0.3,-0.147,-0.233,-0.076
-AutoTheta,Stat. Ensemble,0.15,0.0,0.3,-0.098,-0.226,-0.007
-AutoTheta,AutoARIMA,0.2,0.05,0.35,-0.069,-0.205,0.036
-AutoTheta,AutoETS,0.3,0.1,0.5,-0.054,-0.177,0.03
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Seasonal Naive,0.85,0.65,1.0,0.158,0.102,0.209
-AutoTheta,Naive,0.95,0.85,1.0,0.414,0.325,0.495
-AutoTheta,Drift,0.9,0.75,1.0,0.418,0.325,0.505
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-0.673,-0.927,-0.503
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.555,-0.736,-0.422
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-0.568,-0.771,-0.426
-Seasonal Naive,Moirai-2.0,0.0,0.0,0.0,-0.544,-0.741,-0.401
-Seasonal Naive,Chronos-Bolt,0.0,0.0,0.0,-0.528,-0.695,-0.404
-Seasonal Naive,Toto-1.0,0.0,0.0,0.0,-0.505,-0.723,-0.357
-Seasonal Naive,TabPFN-TS,0.05,0.0,0.125,-0.444,-0.667,-0.295
-Seasonal Naive,Sundial-Base,0.0,0.0,0.0,-0.361,-0.451,-0.287
-Seasonal Naive,Stat. Ensemble,0.125,0.0,0.25,-0.304,-0.49,-0.169
-Seasonal Naive,AutoARIMA,0.1,0.0,0.25,-0.269,-0.465,-0.121
-Seasonal Naive,AutoETS,0.2,0.05,0.4,-0.252,-0.441,-0.11
-Seasonal Naive,AutoTheta,0.15,0.0,0.35,-0.187,-0.263,-0.114
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Naive,0.95,0.85,1.0,0.304,0.226,0.392
-Seasonal Naive,Drift,0.95,0.85,1.0,0.309,0.214,0.403
-Naive,Chronos-2,0.0,0.0,0.0,-1.405,-1.983,-1.026
-Naive,TiRex,0.0,0.0,0.0,-1.235,-1.643,-0.944
-Naive,TimesFM-2.5,0.0,0.0,0.0,-1.253,-1.698,-0.943
-Naive,Moirai-2.0,0.0,0.0,0.0,-1.219,-1.644,-0.913
-Naive,Chronos-Bolt,0.0,0.0,0.0,-1.196,-1.597,-0.904
-Naive,Toto-1.0,0.0,0.0,0.0,-1.163,-1.579,-0.858
-Naive,TabPFN-TS,0.0,0.0,0.0,-1.074,-1.683,-0.724
-Naive,Sundial-Base,0.0,0.0,0.0,-0.956,-1.314,-0.7
-Naive,Stat. Ensemble,0.1,0.0,0.25,-0.874,-1.265,-0.578
-Naive,AutoARIMA,0.1,0.0,0.25,-0.824,-1.239,-0.519
-Naive,AutoETS,0.1,0.0,0.25,-0.799,-1.184,-0.509
-Naive,AutoTheta,0.05,0.0,0.15,-0.706,-0.979,-0.481
-Naive,Seasonal Naive,0.05,0.0,0.15,-0.437,-0.644,-0.292
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,0.95,0.85,1.0,0.007,-0.028,0.029
-Drift,Chronos-2,0.0,0.0,0.0,-1.422,-1.991,-1.048
-Drift,TiRex,0.0,0.0,0.0,-1.252,-1.652,-0.959
-Drift,TimesFM-2.5,0.0,0.0,0.0,-1.269,-1.689,-0.969
-Drift,Moirai-2.0,0.0,0.0,0.0,-1.235,-1.657,-0.934
-Drift,Chronos-Bolt,0.0,0.0,0.0,-1.212,-1.613,-0.926
-Drift,Toto-1.0,0.0,0.0,0.0,-1.179,-1.566,-0.889
-Drift,TabPFN-TS,0.0,0.0,0.0,-1.09,-1.705,-0.731
-Drift,Sundial-Base,0.0,0.0,0.0,-0.971,-1.341,-0.7
-Drift,Stat. Ensemble,0.1,0.0,0.25,-0.888,-1.266,-0.602
-Drift,AutoARIMA,0.1,0.0,0.25,-0.837,-1.24,-0.533
-Drift,AutoETS,0.1,0.0,0.25,-0.812,-1.174,-0.538
-Drift,AutoTheta,0.1,0.0,0.25,-0.719,-1.02,-0.482
-Drift,Seasonal Naive,0.05,0.0,0.15,-0.448,-0.674,-0.272
-Drift,Naive,0.05,0.0,0.15,-0.007,-0.03,0.027
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/frequency_daily/pairwise_WAPE.csv b/tables/frequency_daily/pairwise_WAPE.csv
deleted file mode 100644
index fb1f27b5c0b885bea76843f8c54d726a8755d391..0000000000000000000000000000000000000000
--- a/tables/frequency_daily/pairwise_WAPE.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TimesFM-2.5,0.55,0.35,0.75,0.063,0.007,0.129
-Chronos-2,TiRex,0.65,0.45,0.85,0.067,0.006,0.137
-Chronos-2,Moirai-2.0,0.75,0.55,0.9,0.076,0.014,0.145
-Chronos-2,Chronos-Bolt,0.9,0.75,1.0,0.105,0.046,0.168
-Chronos-2,Toto-1.0,0.75,0.55,0.9,0.104,0.036,0.178
-Chronos-2,Sundial-Base,0.95,0.85,1.0,0.132,0.057,0.22
-Chronos-2,TabPFN-TS,0.9,0.75,1.0,0.119,0.044,0.198
-Chronos-2,Stat. Ensemble,1.0,1.0,1.0,0.184,0.128,0.244
-Chronos-2,AutoARIMA,0.95,0.85,1.0,0.206,0.143,0.273
-Chronos-2,AutoETS,0.95,0.85,1.0,0.196,0.13,0.264
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.238,0.164,0.318
-Chronos-2,Naive,1.0,1.0,1.0,0.416,0.323,0.51
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.347,0.269,0.434
-Chronos-2,Drift,1.0,1.0,1.0,0.427,0.345,0.517
-TimesFM-2.5,Chronos-2,0.45,0.25,0.65,-0.067,-0.148,-0.007
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TiRex,0.45,0.25,0.65,0.004,-0.014,0.022
-TimesFM-2.5,Moirai-2.0,0.65,0.475,0.85,0.013,-0.004,0.03
-TimesFM-2.5,Chronos-Bolt,0.85,0.7,0.975,0.044,0.014,0.084
-TimesFM-2.5,Toto-1.0,0.7,0.525,0.875,0.044,0.01,0.076
-TimesFM-2.5,Sundial-Base,0.85,0.7,1.0,0.074,0.012,0.161
-TimesFM-2.5,TabPFN-TS,0.8,0.6,0.95,0.06,-0.063,0.159
-TimesFM-2.5,Stat. Ensemble,0.9,0.75,1.0,0.129,0.084,0.171
-TimesFM-2.5,AutoARIMA,1.0,1.0,1.0,0.153,0.107,0.202
-TimesFM-2.5,AutoETS,0.95,0.85,1.0,0.142,0.094,0.191
-TimesFM-2.5,AutoTheta,0.95,0.85,1.0,0.186,0.118,0.269
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.377,0.298,0.459
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.303,0.233,0.39
-TimesFM-2.5,Drift,1.0,1.0,1.0,0.388,0.318,0.46
-TiRex,Chronos-2,0.35,0.15,0.55,-0.072,-0.159,-0.006
-TiRex,TimesFM-2.5,0.55,0.35,0.75,-0.004,-0.023,0.014
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,Moirai-2.0,0.65,0.45,0.85,0.009,-0.01,0.028
-TiRex,Chronos-Bolt,0.7,0.5,0.9,0.04,0.005,0.087
-TiRex,Toto-1.0,0.8,0.649,0.95,0.04,0.016,0.061
-TiRex,Sundial-Base,0.7,0.5,0.9,0.07,-0.003,0.166
-TiRex,TabPFN-TS,0.7,0.5,0.9,0.056,-0.077,0.163
-TiRex,Stat. Ensemble,0.9,0.75,1.0,0.125,0.083,0.169
-TiRex,AutoARIMA,0.95,0.85,1.0,0.149,0.106,0.2
-TiRex,AutoETS,0.95,0.85,1.0,0.138,0.094,0.184
-TiRex,AutoTheta,1.0,1.0,1.0,0.183,0.115,0.269
-TiRex,Naive,1.0,1.0,1.0,0.374,0.294,0.463
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.3,0.223,0.394
-TiRex,Drift,1.0,1.0,1.0,0.386,0.316,0.461
-Moirai-2.0,Chronos-2,0.25,0.1,0.45,-0.082,-0.17,-0.014
-Moirai-2.0,TimesFM-2.5,0.35,0.15,0.525,-0.013,-0.031,0.004
-Moirai-2.0,TiRex,0.35,0.15,0.55,-0.009,-0.029,0.009
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Chronos-Bolt,0.5,0.349,0.65,0.031,0.001,0.07
-Moirai-2.0,Toto-1.0,0.55,0.35,0.75,0.031,0.002,0.058
-Moirai-2.0,Sundial-Base,0.45,0.25,0.65,0.061,-0.007,0.152
-Moirai-2.0,TabPFN-TS,0.65,0.45,0.85,0.047,-0.079,0.15
-Moirai-2.0,Stat. Ensemble,0.85,0.7,1.0,0.117,0.078,0.155
-Moirai-2.0,AutoARIMA,0.95,0.85,1.0,0.141,0.095,0.192
-Moirai-2.0,AutoETS,0.9,0.75,1.0,0.13,0.086,0.174
-Moirai-2.0,AutoTheta,1.0,1.0,1.0,0.175,0.108,0.255
-Moirai-2.0,Naive,1.0,1.0,1.0,0.368,0.29,0.45
-Moirai-2.0,Seasonal Naive,1.0,1.0,1.0,0.294,0.225,0.379
-Moirai-2.0,Drift,1.0,1.0,1.0,0.38,0.313,0.45
-Chronos-Bolt,Chronos-2,0.1,0.0,0.25,-0.117,-0.202,-0.048
-Chronos-Bolt,TimesFM-2.5,0.15,0.025,0.3,-0.046,-0.091,-0.014
-Chronos-Bolt,TiRex,0.3,0.1,0.5,-0.042,-0.096,-0.005
-Chronos-Bolt,Moirai-2.0,0.5,0.35,0.651,-0.032,-0.075,-0.001
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Toto-1.0,0.6,0.4,0.8,-0.0,-0.059,0.043
-Chronos-Bolt,Sundial-Base,0.5,0.3,0.7,0.031,-0.019,0.097
-Chronos-Bolt,TabPFN-TS,0.65,0.45,0.85,0.016,-0.095,0.097
-Chronos-Bolt,Stat. Ensemble,0.85,0.65,1.0,0.088,0.045,0.134
-Chronos-Bolt,AutoARIMA,0.9,0.75,1.0,0.114,0.054,0.17
-Chronos-Bolt,AutoETS,0.85,0.7,1.0,0.102,0.041,0.159
-Chronos-Bolt,AutoTheta,1.0,1.0,1.0,0.149,0.096,0.209
-Chronos-Bolt,Naive,1.0,1.0,1.0,0.348,0.277,0.422
-Chronos-Bolt,Seasonal Naive,1.0,1.0,1.0,0.271,0.212,0.338
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.36,0.294,0.429
-Toto-1.0,Chronos-2,0.25,0.1,0.45,-0.117,-0.217,-0.037
-Toto-1.0,TimesFM-2.5,0.3,0.125,0.475,-0.046,-0.082,-0.01
-Toto-1.0,TiRex,0.2,0.05,0.351,-0.042,-0.065,-0.017
-Toto-1.0,Moirai-2.0,0.45,0.25,0.65,-0.032,-0.062,-0.002
-Toto-1.0,Chronos-Bolt,0.4,0.2,0.6,0.0,-0.045,0.056
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,Sundial-Base,0.45,0.25,0.65,0.031,-0.054,0.141
-Toto-1.0,TabPFN-TS,0.55,0.35,0.75,0.016,-0.127,0.134
-Toto-1.0,Stat. Ensemble,0.65,0.45,0.85,0.088,0.039,0.137
-Toto-1.0,AutoARIMA,0.85,0.7,1.0,0.114,0.07,0.156
-Toto-1.0,AutoETS,0.85,0.7,1.0,0.102,0.052,0.148
-Toto-1.0,AutoTheta,0.9,0.75,1.0,0.149,0.074,0.246
-Toto-1.0,Naive,0.95,0.85,1.0,0.348,0.267,0.434
-Toto-1.0,Seasonal Naive,1.0,1.0,1.0,0.271,0.19,0.369
-Toto-1.0,Drift,1.0,1.0,1.0,0.36,0.29,0.434
-Sundial-Base,Chronos-2,0.05,0.0,0.15,-0.153,-0.283,-0.06
-Sundial-Base,TimesFM-2.5,0.15,0.0,0.3,-0.08,-0.192,-0.012
-Sundial-Base,TiRex,0.3,0.1,0.5,-0.075,-0.2,0.003
-Sundial-Base,Moirai-2.0,0.55,0.35,0.75,-0.065,-0.179,0.007
-Sundial-Base,Chronos-Bolt,0.5,0.3,0.7,-0.032,-0.107,0.019
-Sundial-Base,Toto-1.0,0.55,0.35,0.75,-0.032,-0.165,0.051
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,TabPFN-TS,0.45,0.25,0.65,-0.015,-0.117,0.048
-Sundial-Base,Stat. Ensemble,0.75,0.55,0.9,0.059,-0.045,0.137
-Sundial-Base,AutoARIMA,0.85,0.7,1.0,0.085,-0.04,0.18
-Sundial-Base,AutoETS,0.75,0.55,0.9,0.074,-0.047,0.162
-Sundial-Base,AutoTheta,0.9,0.75,1.0,0.122,0.079,0.166
-Sundial-Base,Naive,0.95,0.85,1.0,0.327,0.258,0.4
-Sundial-Base,Seasonal Naive,0.95,0.85,1.0,0.248,0.204,0.292
-Sundial-Base,Drift,0.95,0.85,1.0,0.339,0.265,0.414
-TabPFN-TS,Chronos-2,0.1,0.0,0.25,-0.135,-0.246,-0.046
-TabPFN-TS,TimesFM-2.5,0.2,0.05,0.4,-0.064,-0.189,0.059
-TabPFN-TS,TiRex,0.3,0.1,0.5,-0.059,-0.195,0.071
-TabPFN-TS,Moirai-2.0,0.35,0.15,0.55,-0.05,-0.177,0.073
-TabPFN-TS,Chronos-Bolt,0.35,0.15,0.55,-0.017,-0.107,0.087
-TabPFN-TS,Toto-1.0,0.45,0.25,0.65,-0.017,-0.155,0.113
-TabPFN-TS,Sundial-Base,0.55,0.35,0.75,0.015,-0.051,0.104
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Stat. Ensemble,0.675,0.475,0.85,0.073,-0.034,0.175
-TabPFN-TS,AutoARIMA,0.75,0.55,0.901,0.099,-0.022,0.213
-TabPFN-TS,AutoETS,0.7,0.5,0.9,0.087,-0.038,0.2
-TabPFN-TS,AutoTheta,0.8,0.65,0.95,0.135,0.057,0.227
-TabPFN-TS,Naive,0.95,0.85,1.0,0.337,0.236,0.452
-TabPFN-TS,Seasonal Naive,0.9,0.775,1.0,0.259,0.182,0.338
-TabPFN-TS,Drift,0.95,0.85,1.0,0.349,0.251,0.462
-Stat. Ensemble,Chronos-2,0.0,0.0,0.0,-0.225,-0.323,-0.147
-Stat. Ensemble,TimesFM-2.5,0.1,0.0,0.25,-0.148,-0.206,-0.092
-Stat. Ensemble,TiRex,0.1,0.0,0.25,-0.143,-0.203,-0.091
-Stat. Ensemble,Moirai-2.0,0.15,0.0,0.3,-0.132,-0.183,-0.084
-Stat. Ensemble,Chronos-Bolt,0.15,0.0,0.35,-0.097,-0.155,-0.047
-Stat. Ensemble,Toto-1.0,0.35,0.15,0.55,-0.097,-0.159,-0.041
-Stat. Ensemble,Sundial-Base,0.25,0.1,0.45,-0.063,-0.159,0.043
-Stat. Ensemble,TabPFN-TS,0.325,0.15,0.525,-0.079,-0.212,0.033
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoARIMA,0.55,0.3,0.75,0.028,-0.014,0.066
-Stat. Ensemble,AutoETS,0.8,0.6,0.95,0.015,-0.018,0.043
-Stat. Ensemble,AutoTheta,0.85,0.699,1.0,0.066,0.009,0.147
-Stat. Ensemble,Naive,0.95,0.85,1.0,0.285,0.196,0.376
-Stat. Ensemble,Seasonal Naive,0.925,0.8,1.0,0.2,0.121,0.291
-Stat. Ensemble,Drift,1.0,1.0,1.0,0.298,0.212,0.383
-AutoARIMA,Chronos-2,0.05,0.0,0.15,-0.26,-0.375,-0.167
-AutoARIMA,TimesFM-2.5,0.0,0.0,0.0,-0.18,-0.254,-0.12
-AutoARIMA,TiRex,0.05,0.0,0.15,-0.175,-0.25,-0.118
-AutoARIMA,Moirai-2.0,0.05,0.0,0.15,-0.165,-0.237,-0.105
-AutoARIMA,Chronos-Bolt,0.1,0.0,0.25,-0.128,-0.205,-0.057
-AutoARIMA,Toto-1.0,0.15,0.0,0.3,-0.128,-0.185,-0.075
-AutoARIMA,Sundial-Base,0.15,0.0,0.3,-0.093,-0.22,0.039
-AutoARIMA,TabPFN-TS,0.25,0.099,0.45,-0.11,-0.27,0.021
-AutoARIMA,Stat. Ensemble,0.45,0.25,0.7,-0.028,-0.071,0.013
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoETS,0.5,0.3,0.7,-0.013,-0.053,0.024
-AutoARIMA,AutoTheta,0.65,0.45,0.85,0.04,-0.042,0.142
-AutoARIMA,Naive,0.85,0.7,1.0,0.264,0.165,0.37
-AutoARIMA,Seasonal Naive,0.95,0.85,1.0,0.178,0.083,0.287
-AutoARIMA,Drift,0.85,0.7,1.0,0.278,0.186,0.37
-AutoETS,Chronos-2,0.05,0.0,0.15,-0.244,-0.358,-0.15
-AutoETS,TimesFM-2.5,0.05,0.0,0.15,-0.165,-0.235,-0.104
-AutoETS,TiRex,0.05,0.0,0.15,-0.161,-0.225,-0.103
-AutoETS,Moirai-2.0,0.1,0.0,0.25,-0.15,-0.211,-0.094
-AutoETS,Chronos-Bolt,0.15,0.0,0.3,-0.114,-0.189,-0.043
-AutoETS,Toto-1.0,0.15,0.0,0.3,-0.114,-0.174,-0.055
-AutoETS,Sundial-Base,0.25,0.1,0.45,-0.079,-0.193,0.045
-AutoETS,TabPFN-TS,0.3,0.1,0.5,-0.096,-0.251,0.037
-AutoETS,Stat. Ensemble,0.2,0.05,0.4,-0.015,-0.045,0.018
-AutoETS,AutoARIMA,0.5,0.3,0.7,0.013,-0.025,0.05
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,AutoTheta,0.6,0.4,0.8,0.052,-0.008,0.143
-AutoETS,Naive,0.75,0.55,0.9,0.274,0.174,0.368
-AutoETS,Seasonal Naive,0.95,0.85,1.0,0.188,0.099,0.292
-AutoETS,Drift,0.95,0.85,1.0,0.287,0.195,0.372
-AutoTheta,Chronos-2,0.0,0.0,0.0,-0.312,-0.466,-0.197
-AutoTheta,TimesFM-2.5,0.05,0.0,0.15,-0.229,-0.369,-0.134
-AutoTheta,TiRex,0.0,0.0,0.0,-0.224,-0.367,-0.13
-AutoTheta,Moirai-2.0,0.0,0.0,0.0,-0.213,-0.343,-0.121
-AutoTheta,Chronos-Bolt,0.0,0.0,0.0,-0.175,-0.264,-0.106
-AutoTheta,Toto-1.0,0.1,0.0,0.25,-0.175,-0.326,-0.08
-AutoTheta,Sundial-Base,0.1,0.0,0.25,-0.138,-0.199,-0.086
-AutoTheta,TabPFN-TS,0.2,0.05,0.35,-0.156,-0.293,-0.061
-AutoTheta,Stat. Ensemble,0.15,0.0,0.301,-0.071,-0.173,-0.009
-AutoTheta,AutoARIMA,0.35,0.15,0.55,-0.041,-0.165,0.04
-AutoTheta,AutoETS,0.4,0.2,0.6,-0.055,-0.167,0.008
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Naive,0.9,0.75,1.0,0.234,0.157,0.314
-AutoTheta,Seasonal Naive,0.95,0.85,1.0,0.144,0.096,0.191
-AutoTheta,Drift,0.9,0.75,1.0,0.248,0.171,0.331
-Naive,Chronos-2,0.0,0.0,0.0,-0.712,-1.04,-0.477
-Naive,TimesFM-2.5,0.0,0.0,0.0,-0.604,-0.849,-0.424
-Naive,TiRex,0.0,0.0,0.0,-0.598,-0.862,-0.417
-Naive,Moirai-2.0,0.0,0.0,0.0,-0.583,-0.819,-0.408
-Naive,Chronos-Bolt,0.0,0.0,0.0,-0.533,-0.729,-0.384
-Naive,Toto-1.0,0.05,0.0,0.15,-0.533,-0.766,-0.365
-Naive,Sundial-Base,0.05,0.0,0.15,-0.486,-0.666,-0.348
-Naive,TabPFN-TS,0.05,0.0,0.15,-0.508,-0.823,-0.31
-Naive,Stat. Ensemble,0.05,0.0,0.15,-0.398,-0.602,-0.244
-Naive,AutoARIMA,0.15,0.0,0.3,-0.359,-0.588,-0.197
-Naive,AutoETS,0.25,0.1,0.45,-0.377,-0.582,-0.21
-Naive,AutoTheta,0.1,0.0,0.25,-0.305,-0.458,-0.186
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Seasonal Naive,0.4,0.2,0.601,-0.118,-0.238,-0.028
-Naive,Drift,0.95,0.85,1.0,0.018,-0.013,0.042
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-0.532,-0.768,-0.369
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-0.435,-0.641,-0.304
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.43,-0.649,-0.287
-Seasonal Naive,Moirai-2.0,0.0,0.0,0.0,-0.416,-0.61,-0.29
-Seasonal Naive,Chronos-Bolt,0.0,0.0,0.0,-0.372,-0.51,-0.269
-Seasonal Naive,Toto-1.0,0.0,0.0,0.0,-0.372,-0.584,-0.234
-Seasonal Naive,Sundial-Base,0.05,0.0,0.15,-0.329,-0.412,-0.256
-Seasonal Naive,TabPFN-TS,0.1,0.0,0.225,-0.35,-0.512,-0.223
-Seasonal Naive,Stat. Ensemble,0.075,0.0,0.2,-0.251,-0.411,-0.138
-Seasonal Naive,AutoARIMA,0.05,0.0,0.15,-0.216,-0.403,-0.091
-Seasonal Naive,AutoETS,0.05,0.0,0.15,-0.232,-0.412,-0.11
-Seasonal Naive,AutoTheta,0.05,0.0,0.15,-0.168,-0.236,-0.106
-Seasonal Naive,Naive,0.6,0.399,0.8,0.105,0.027,0.192
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Drift,0.65,0.45,0.85,0.122,0.03,0.215
-Drift,Chronos-2,0.0,0.0,0.0,-0.745,-1.069,-0.526
-Drift,TimesFM-2.5,0.0,0.0,0.0,-0.634,-0.85,-0.466
-Drift,TiRex,0.0,0.0,0.0,-0.628,-0.854,-0.461
-Drift,Moirai-2.0,0.0,0.0,0.0,-0.613,-0.817,-0.455
-Drift,Chronos-Bolt,0.0,0.0,0.0,-0.562,-0.751,-0.416
-Drift,Toto-1.0,0.0,0.0,0.0,-0.562,-0.767,-0.408
-Drift,Sundial-Base,0.05,0.0,0.15,-0.514,-0.706,-0.361
-Drift,TabPFN-TS,0.05,0.0,0.15,-0.537,-0.859,-0.335
-Drift,Stat. Ensemble,0.0,0.0,0.0,-0.424,-0.62,-0.27
-Drift,AutoARIMA,0.15,0.0,0.3,-0.385,-0.587,-0.229
-Drift,AutoETS,0.05,0.0,0.15,-0.402,-0.593,-0.242
-Drift,AutoTheta,0.1,0.0,0.25,-0.33,-0.495,-0.206
-Drift,Naive,0.05,0.0,0.15,-0.019,-0.044,0.013
-Drift,Seasonal Naive,0.35,0.15,0.55,-0.139,-0.274,-0.031
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/frequency_daily/pairwise_WQL.csv b/tables/frequency_daily/pairwise_WQL.csv
deleted file mode 100644
index dcc49842ff98749f33fa351c0decc30cc33329bd..0000000000000000000000000000000000000000
--- a/tables/frequency_daily/pairwise_WQL.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TiRex,0.6,0.4,0.8,0.07,0.006,0.143
-Chronos-2,TimesFM-2.5,0.55,0.35,0.75,0.069,0.01,0.138
-Chronos-2,Moirai-2.0,0.75,0.55,0.9,0.081,0.017,0.152
-Chronos-2,Chronos-Bolt,0.85,0.7,1.0,0.105,0.042,0.17
-Chronos-2,Toto-1.0,0.75,0.55,0.9,0.107,0.033,0.185
-Chronos-2,TabPFN-TS,0.9,0.75,1.0,0.128,0.05,0.205
-Chronos-2,Sundial-Base,0.95,0.85,1.0,0.197,0.129,0.273
-Chronos-2,Stat. Ensemble,1.0,1.0,1.0,0.259,0.195,0.329
-Chronos-2,AutoARIMA,1.0,1.0,1.0,0.255,0.179,0.328
-Chronos-2,AutoETS,1.0,1.0,1.0,0.296,0.221,0.369
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.339,0.252,0.418
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.448,0.371,0.518
-Chronos-2,Naive,1.0,1.0,1.0,0.617,0.542,0.686
-Chronos-2,Drift,1.0,1.0,1.0,0.621,0.548,0.689
-TiRex,Chronos-2,0.4,0.2,0.6,-0.076,-0.167,-0.006
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,TimesFM-2.5,0.55,0.35,0.75,-0.001,-0.021,0.019
-TiRex,Moirai-2.0,0.7,0.5,0.9,0.012,-0.005,0.029
-TiRex,Chronos-Bolt,0.75,0.55,0.95,0.037,0.007,0.075
-TiRex,Toto-1.0,0.9,0.75,1.0,0.039,0.014,0.062
-TiRex,TabPFN-TS,0.65,0.45,0.85,0.062,-0.073,0.164
-TiRex,Sundial-Base,0.9,0.75,1.0,0.136,0.071,0.22
-TiRex,Stat. Ensemble,0.95,0.85,1.0,0.203,0.144,0.264
-TiRex,AutoARIMA,1.0,1.0,1.0,0.199,0.139,0.261
-TiRex,AutoETS,1.0,1.0,1.0,0.243,0.178,0.307
-TiRex,AutoTheta,1.0,1.0,1.0,0.289,0.209,0.369
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.406,0.332,0.479
-TiRex,Naive,1.0,1.0,1.0,0.588,0.514,0.651
-TiRex,Drift,1.0,1.0,1.0,0.592,0.522,0.653
-TimesFM-2.5,Chronos-2,0.45,0.25,0.65,-0.074,-0.161,-0.01
-TimesFM-2.5,TiRex,0.45,0.25,0.65,0.001,-0.019,0.021
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,Moirai-2.0,0.65,0.475,0.85,0.013,-0.004,0.03
-TimesFM-2.5,Chronos-Bolt,0.85,0.7,0.975,0.039,0.014,0.065
-TimesFM-2.5,Toto-1.0,0.75,0.575,0.9,0.041,0.002,0.076
-TimesFM-2.5,TabPFN-TS,0.8,0.6,0.95,0.063,-0.06,0.158
-TimesFM-2.5,Sundial-Base,0.95,0.85,1.0,0.137,0.084,0.213
-TimesFM-2.5,Stat. Ensemble,0.95,0.85,1.0,0.204,0.146,0.262
-TimesFM-2.5,AutoARIMA,0.95,0.85,1.0,0.2,0.139,0.261
-TimesFM-2.5,AutoETS,0.9,0.75,1.0,0.244,0.177,0.311
-TimesFM-2.5,AutoTheta,1.0,1.0,1.0,0.29,0.21,0.366
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.407,0.34,0.474
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.589,0.518,0.65
-TimesFM-2.5,Drift,1.0,1.0,1.0,0.593,0.524,0.653
-Moirai-2.0,Chronos-2,0.25,0.1,0.45,-0.088,-0.179,-0.017
-Moirai-2.0,TiRex,0.3,0.1,0.5,-0.012,-0.03,0.005
-Moirai-2.0,TimesFM-2.5,0.35,0.15,0.525,-0.013,-0.031,0.004
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Chronos-Bolt,0.55,0.375,0.701,0.026,-0.0,0.057
-Moirai-2.0,Toto-1.0,0.55,0.35,0.75,0.028,-0.004,0.056
-Moirai-2.0,TabPFN-TS,0.65,0.45,0.85,0.051,-0.082,0.152
-Moirai-2.0,Sundial-Base,0.95,0.85,1.0,0.126,0.064,0.208
-Moirai-2.0,Stat. Ensemble,1.0,1.0,1.0,0.194,0.134,0.255
-Moirai-2.0,AutoARIMA,1.0,1.0,1.0,0.19,0.13,0.256
-Moirai-2.0,AutoETS,1.0,1.0,1.0,0.234,0.168,0.303
-Moirai-2.0,AutoTheta,1.0,1.0,1.0,0.28,0.198,0.357
-Moirai-2.0,Seasonal Naive,1.0,1.0,1.0,0.399,0.326,0.47
-Moirai-2.0,Naive,1.0,1.0,1.0,0.583,0.509,0.646
-Moirai-2.0,Drift,1.0,1.0,1.0,0.588,0.518,0.647
-Chronos-Bolt,Chronos-2,0.15,0.0,0.3,-0.117,-0.205,-0.044
-Chronos-Bolt,TiRex,0.25,0.05,0.45,-0.039,-0.081,-0.007
-Chronos-Bolt,TimesFM-2.5,0.15,0.025,0.3,-0.04,-0.07,-0.015
-Chronos-Bolt,Moirai-2.0,0.45,0.299,0.625,-0.027,-0.061,0.0
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Toto-1.0,0.6,0.4,0.8,0.002,-0.054,0.044
-Chronos-Bolt,TabPFN-TS,0.65,0.45,0.85,0.026,-0.095,0.112
-Chronos-Bolt,Sundial-Base,0.85,0.65,1.0,0.103,0.052,0.168
-Chronos-Bolt,Stat. Ensemble,0.95,0.85,1.0,0.173,0.115,0.231
-Chronos-Bolt,AutoARIMA,0.9,0.75,1.0,0.168,0.107,0.232
-Chronos-Bolt,AutoETS,0.9,0.75,1.0,0.213,0.142,0.283
-Chronos-Bolt,AutoTheta,1.0,1.0,1.0,0.261,0.19,0.328
-Chronos-Bolt,Seasonal Naive,1.0,1.0,1.0,0.383,0.321,0.445
-Chronos-Bolt,Naive,1.0,1.0,1.0,0.572,0.502,0.634
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.577,0.512,0.637
-Toto-1.0,Chronos-2,0.25,0.1,0.45,-0.12,-0.228,-0.035
-Toto-1.0,TiRex,0.1,0.0,0.25,-0.041,-0.067,-0.014
-Toto-1.0,TimesFM-2.5,0.25,0.1,0.425,-0.042,-0.083,-0.002
-Toto-1.0,Moirai-2.0,0.45,0.25,0.65,-0.029,-0.059,0.004
-Toto-1.0,Chronos-Bolt,0.4,0.2,0.6,-0.002,-0.046,0.051
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,TabPFN-TS,0.55,0.35,0.75,0.024,-0.13,0.138
-Toto-1.0,Sundial-Base,0.65,0.45,0.85,0.101,0.02,0.206
-Toto-1.0,Stat. Ensemble,0.9,0.75,1.0,0.171,0.103,0.244
-Toto-1.0,AutoARIMA,0.85,0.7,1.0,0.166,0.1,0.238
-Toto-1.0,AutoETS,0.9,0.75,1.0,0.212,0.139,0.288
-Toto-1.0,AutoTheta,1.0,1.0,1.0,0.259,0.169,0.351
-Toto-1.0,Seasonal Naive,1.0,1.0,1.0,0.382,0.296,0.466
-Toto-1.0,Naive,1.0,1.0,1.0,0.571,0.493,0.638
-Toto-1.0,Drift,1.0,1.0,1.0,0.576,0.499,0.637
-TabPFN-TS,Chronos-2,0.1,0.0,0.25,-0.147,-0.257,-0.053
-TabPFN-TS,TiRex,0.35,0.15,0.55,-0.066,-0.197,0.068
-TabPFN-TS,TimesFM-2.5,0.2,0.05,0.4,-0.068,-0.188,0.057
-TabPFN-TS,Moirai-2.0,0.35,0.15,0.55,-0.054,-0.18,0.076
-TabPFN-TS,Chronos-Bolt,0.35,0.15,0.55,-0.027,-0.127,0.087
-TabPFN-TS,Toto-1.0,0.45,0.25,0.65,-0.024,-0.16,0.115
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Sundial-Base,0.7,0.5,0.9,0.079,0.008,0.166
-TabPFN-TS,Stat. Ensemble,0.725,0.525,0.9,0.151,0.042,0.258
-TabPFN-TS,AutoARIMA,0.8,0.6,0.95,0.146,0.021,0.264
-TabPFN-TS,AutoETS,0.8,0.6,0.95,0.192,0.062,0.31
-TabPFN-TS,AutoTheta,0.9,0.75,1.0,0.242,0.133,0.346
-TabPFN-TS,Seasonal Naive,0.95,0.875,1.0,0.367,0.276,0.452
-TabPFN-TS,Naive,1.0,1.0,1.0,0.561,0.46,0.657
-TabPFN-TS,Drift,1.0,1.0,1.0,0.565,0.468,0.662
-Sundial-Base,Chronos-2,0.05,0.0,0.15,-0.245,-0.375,-0.148
-Sundial-Base,TiRex,0.1,0.0,0.25,-0.158,-0.281,-0.077
-Sundial-Base,TimesFM-2.5,0.05,0.0,0.15,-0.159,-0.27,-0.092
-Sundial-Base,Moirai-2.0,0.05,0.0,0.15,-0.144,-0.262,-0.068
-Sundial-Base,Chronos-Bolt,0.15,0.0,0.35,-0.115,-0.202,-0.054
-Sundial-Base,Toto-1.0,0.35,0.15,0.55,-0.112,-0.26,-0.02
-Sundial-Base,TabPFN-TS,0.3,0.1,0.5,-0.086,-0.199,-0.009
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Stat. Ensemble,0.6,0.4,0.8,0.078,-0.041,0.168
-Sundial-Base,AutoARIMA,0.7,0.5,0.9,0.073,-0.055,0.172
-Sundial-Base,AutoETS,0.65,0.45,0.85,0.123,-0.008,0.224
-Sundial-Base,AutoTheta,0.8,0.6,0.95,0.176,0.105,0.25
-Sundial-Base,Seasonal Naive,1.0,1.0,1.0,0.312,0.257,0.367
-Sundial-Base,Naive,1.0,1.0,1.0,0.523,0.445,0.597
-Sundial-Base,Drift,1.0,1.0,1.0,0.528,0.449,0.602
-Stat. Ensemble,Chronos-2,0.0,0.0,0.0,-0.35,-0.49,-0.242
-Stat. Ensemble,TiRex,0.05,0.0,0.15,-0.255,-0.359,-0.168
-Stat. Ensemble,TimesFM-2.5,0.05,0.0,0.15,-0.257,-0.356,-0.171
-Stat. Ensemble,Moirai-2.0,0.0,0.0,0.0,-0.241,-0.342,-0.154
-Stat. Ensemble,Chronos-Bolt,0.05,0.0,0.15,-0.208,-0.3,-0.13
-Stat. Ensemble,Toto-1.0,0.1,0.0,0.25,-0.206,-0.322,-0.114
-Stat. Ensemble,TabPFN-TS,0.275,0.1,0.475,-0.177,-0.347,-0.044
-Stat. Ensemble,Sundial-Base,0.4,0.2,0.6,-0.084,-0.201,0.04
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoARIMA,0.5,0.25,0.7,-0.005,-0.059,0.039
-Stat. Ensemble,AutoETS,0.8,0.6,0.95,0.049,-0.009,0.106
-Stat. Ensemble,AutoTheta,0.9,0.75,1.0,0.107,0.03,0.194
-Stat. Ensemble,Seasonal Naive,0.925,0.8,1.0,0.255,0.176,0.338
-Stat. Ensemble,Naive,1.0,1.0,1.0,0.483,0.391,0.567
-Stat. Ensemble,Drift,1.0,1.0,1.0,0.488,0.399,0.572
-AutoARIMA,Chronos-2,0.0,0.0,0.0,-0.343,-0.488,-0.218
-AutoARIMA,TiRex,0.0,0.0,0.0,-0.248,-0.354,-0.162
-AutoARIMA,TimesFM-2.5,0.05,0.0,0.15,-0.25,-0.353,-0.162
-AutoARIMA,Moirai-2.0,0.0,0.0,0.0,-0.234,-0.345,-0.149
-AutoARIMA,Chronos-Bolt,0.1,0.0,0.25,-0.202,-0.302,-0.12
-AutoARIMA,Toto-1.0,0.15,0.0,0.3,-0.199,-0.312,-0.111
-AutoARIMA,TabPFN-TS,0.2,0.05,0.4,-0.171,-0.359,-0.021
-AutoARIMA,Sundial-Base,0.3,0.1,0.5,-0.078,-0.208,0.052
-AutoARIMA,Stat. Ensemble,0.5,0.3,0.75,0.005,-0.04,0.055
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoETS,0.75,0.55,0.9,0.054,0.005,0.11
-AutoARIMA,AutoTheta,0.85,0.7,1.0,0.112,0.026,0.209
-AutoARIMA,Seasonal Naive,0.95,0.85,1.0,0.259,0.166,0.35
-AutoARIMA,Naive,0.95,0.85,1.0,0.486,0.386,0.577
-AutoARIMA,Drift,0.95,0.85,1.0,0.491,0.395,0.58
-AutoETS,Chronos-2,0.0,0.0,0.0,-0.42,-0.584,-0.283
-AutoETS,TiRex,0.0,0.0,0.0,-0.32,-0.443,-0.216
-AutoETS,TimesFM-2.5,0.1,0.0,0.25,-0.322,-0.451,-0.215
-AutoETS,Moirai-2.0,0.0,0.0,0.0,-0.305,-0.435,-0.202
-AutoETS,Chronos-Bolt,0.1,0.0,0.25,-0.271,-0.395,-0.165
-AutoETS,Toto-1.0,0.1,0.0,0.25,-0.268,-0.405,-0.162
-AutoETS,TabPFN-TS,0.2,0.05,0.4,-0.238,-0.449,-0.066
-AutoETS,Sundial-Base,0.35,0.15,0.55,-0.14,-0.289,0.008
-AutoETS,Stat. Ensemble,0.2,0.05,0.4,-0.052,-0.118,0.009
-AutoETS,AutoARIMA,0.25,0.1,0.45,-0.057,-0.124,-0.005
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,AutoTheta,0.7,0.5,0.9,0.061,-0.025,0.161
-AutoETS,Seasonal Naive,0.85,0.65,1.0,0.216,0.121,0.317
-AutoETS,Naive,0.9,0.75,1.0,0.456,0.355,0.549
-AutoETS,Drift,0.9,0.75,1.0,0.462,0.365,0.555
-AutoTheta,Chronos-2,0.0,0.0,0.0,-0.512,-0.719,-0.337
-AutoTheta,TiRex,0.0,0.0,0.0,-0.406,-0.585,-0.264
-AutoTheta,TimesFM-2.5,0.0,0.0,0.0,-0.408,-0.577,-0.266
-AutoTheta,Moirai-2.0,0.0,0.0,0.0,-0.389,-0.555,-0.247
-AutoTheta,Chronos-Bolt,0.0,0.0,0.0,-0.353,-0.488,-0.235
-AutoTheta,Toto-1.0,0.0,0.0,0.0,-0.35,-0.542,-0.204
-AutoTheta,TabPFN-TS,0.1,0.0,0.25,-0.318,-0.529,-0.154
-AutoTheta,Sundial-Base,0.2,0.05,0.4,-0.214,-0.333,-0.118
-AutoTheta,Stat. Ensemble,0.1,0.0,0.25,-0.12,-0.241,-0.031
-AutoTheta,AutoARIMA,0.15,0.0,0.3,-0.126,-0.264,-0.027
-AutoTheta,AutoETS,0.3,0.1,0.5,-0.065,-0.193,0.024
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Seasonal Naive,0.85,0.7,1.0,0.165,0.111,0.215
-AutoTheta,Naive,0.9,0.75,1.0,0.421,0.332,0.503
-AutoTheta,Drift,0.9,0.75,1.0,0.427,0.334,0.515
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-0.811,-1.075,-0.59
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.684,-0.918,-0.498
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-0.686,-0.901,-0.515
-Seasonal Naive,Moirai-2.0,0.0,0.0,0.0,-0.664,-0.888,-0.484
-Seasonal Naive,Chronos-Bolt,0.0,0.0,0.0,-0.621,-0.801,-0.472
-Seasonal Naive,Toto-1.0,0.0,0.0,0.0,-0.617,-0.872,-0.42
-Seasonal Naive,TabPFN-TS,0.05,0.0,0.125,-0.579,-0.824,-0.381
-Seasonal Naive,Sundial-Base,0.0,0.0,0.0,-0.454,-0.579,-0.346
-Seasonal Naive,Stat. Ensemble,0.075,0.0,0.2,-0.341,-0.512,-0.213
-Seasonal Naive,AutoARIMA,0.05,0.0,0.15,-0.349,-0.539,-0.2
-Seasonal Naive,AutoETS,0.15,0.0,0.35,-0.275,-0.464,-0.138
-Seasonal Naive,AutoTheta,0.15,0.0,0.3,-0.198,-0.273,-0.125
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Naive,0.8,0.6,0.95,0.306,0.221,0.392
-Seasonal Naive,Drift,0.85,0.7,1.0,0.314,0.217,0.405
-Naive,Chronos-2,0.0,0.0,0.0,-1.61,-2.18,-1.183
-Naive,TiRex,0.0,0.0,0.0,-1.427,-1.861,-1.056
-Naive,TimesFM-2.5,0.0,0.0,0.0,-1.431,-1.857,-1.076
-Naive,Moirai-2.0,0.0,0.0,0.0,-1.399,-1.824,-1.038
-Naive,Chronos-Bolt,0.0,0.0,0.0,-1.337,-1.735,-1.009
-Naive,Toto-1.0,0.0,0.0,0.0,-1.332,-1.759,-0.974
-Naive,TabPFN-TS,0.0,0.0,0.0,-1.276,-1.915,-0.852
-Naive,Sundial-Base,0.0,0.0,0.0,-1.097,-1.48,-0.802
-Naive,Stat. Ensemble,0.0,0.0,0.0,-0.934,-1.31,-0.642
-Naive,AutoARIMA,0.05,0.0,0.15,-0.944,-1.364,-0.629
-Naive,AutoETS,0.1,0.0,0.25,-0.838,-1.216,-0.551
-Naive,AutoTheta,0.1,0.0,0.25,-0.727,-1.011,-0.497
-Naive,Seasonal Naive,0.2,0.05,0.4,-0.441,-0.644,-0.284
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,0.95,0.85,1.0,0.011,-0.019,0.03
-Drift,Chronos-2,0.0,0.0,0.0,-1.638,-2.219,-1.211
-Drift,TiRex,0.0,0.0,0.0,-1.453,-1.88,-1.093
-Drift,TimesFM-2.5,0.0,0.0,0.0,-1.457,-1.885,-1.102
-Drift,Moirai-2.0,0.0,0.0,0.0,-1.425,-1.836,-1.076
-Drift,Chronos-Bolt,0.0,0.0,0.0,-1.362,-1.756,-1.048
-Drift,Toto-1.0,0.0,0.0,0.0,-1.357,-1.757,-0.995
-Drift,TabPFN-TS,0.0,0.0,0.0,-1.301,-1.962,-0.88
-Drift,Sundial-Base,0.0,0.0,0.0,-1.119,-1.512,-0.815
-Drift,Stat. Ensemble,0.0,0.0,0.0,-0.955,-1.336,-0.664
-Drift,AutoARIMA,0.05,0.0,0.15,-0.965,-1.381,-0.653
-Drift,AutoETS,0.1,0.0,0.25,-0.858,-1.247,-0.575
-Drift,AutoTheta,0.1,0.0,0.25,-0.745,-1.06,-0.502
-Drift,Seasonal Naive,0.15,0.0,0.3,-0.457,-0.679,-0.276
-Drift,Naive,0.05,0.0,0.15,-0.011,-0.031,0.019
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/frequency_hourly/leaderboard_MASE.csv b/tables/frequency_hourly/leaderboard_MASE.csv
deleted file mode 100644
index 5dcf72c974f33efc315fd97ee3b673ac24f01f21..0000000000000000000000000000000000000000
--- a/tables/frequency_hourly/leaderboard_MASE.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,93.18181818181819,43.27459392940457,0.0,1.8613627837499997,0.0,0.0
-TiRex,77.5974025974026,32.8898005652727,0.0,1.6098432725,0.0,0.0
-TimesFM-2.5,76.78571428571429,33.495947984841536,0.0,36.094269344715904,0.13636363636363635,0.0
-TabPFN-TS,72.4025974025974,37.03738049424087,0.0,209.256031124375,0.0,0.0
-Toto-1.0,71.91558441558443,32.91567356681183,0.0,66.21775966082386,0.13636363636363635,0.0
-Chronos-Bolt,67.04545454545455,30.36785516060497,0.0,1.188736898153409,0.0,0.0
-Moirai-2.0,66.72077922077922,31.366273254344446,0.0,2.7443964685511366,0.4090909090909091,0.0
-Sundial-Base,65.58441558441558,33.222788259935065,0.0,8.613333634910715,0.0,0.0
-Stat. Ensemble,38.63636363636364,9.898493888478555,0.0,2423.04841224875,0.0,4.545454545454546
-AutoARIMA,33.11688311688313,5.982141659287521,0.0,2309.733690728125,0.0,4.545454545454546
-AutoTheta,29.220779220779225,3.9989847727641026,0.0,5.755807038238637,0.0,0.0
-Seasonal Naive,24.999999999999996,0.0,0.0,0.48711988500000003,0.0,0.0
-Naive,14.935064935064934,-42.822027329975775,0.0,0.4947083875,0.0,0.0
-AutoETS,9.74025974025974,-40.06899253716452,0.0,13.10401027465909,0.0,0.0
-Drift,8.116883116883116,-48.09174159738534,0.0,0.47339400249999997,0.0,0.0
diff --git a/tables/frequency_hourly/leaderboard_SQL.csv b/tables/frequency_hourly/leaderboard_SQL.csv
deleted file mode 100644
index 21ed1e463412b5a6156ad8dba01cd5cdde265b1e..0000000000000000000000000000000000000000
--- a/tables/frequency_hourly/leaderboard_SQL.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,94.48051948051949,54.953226018906975,0.0,1.8613627837499997,0.0,0.0
-TiRex,83.11688311688312,46.668743688275406,0.0,1.6098432725,0.0,0.0
-TimesFM-2.5,77.75974025974025,46.31983640086111,0.0,36.094269344715904,0.13636363636363635,0.0
-TabPFN-TS,74.67532467532466,49.0537508694169,0.0,209.256031124375,0.0,0.0
-Toto-1.0,73.53896103896103,45.92776459924427,0.0,66.21775966082386,0.13636363636363635,0.0
-Chronos-Bolt,68.34415584415586,43.86628917011185,0.0,1.188736898153409,0.0,0.0
-Moirai-2.0,67.69480519480518,44.43807109311596,0.0,2.7443964685511366,0.4090909090909091,0.0
-Sundial-Base,58.11688311688312,42.15221432677937,0.0,8.613333634910715,0.0,0.0
-AutoARIMA,40.909090909090914,15.192949434763204,0.0,2309.733690728125,0.0,4.545454545454546
-Stat. Ensemble,36.36363636363637,11.071814783556256,0.0,2423.04841224875,0.0,4.545454545454546
-Seasonal Naive,23.701298701298704,0.0,0.0,0.48711988500000003,0.0,0.0
-AutoTheta,18.831168831168828,-18.399683257143185,0.0,5.755807038238637,0.0,0.0
-AutoETS,16.233766233766236,-115.54487614262277,0.0,13.10401027465909,0.0,0.0
-Naive,12.337662337662337,-88.45845966507049,0.0,0.4947083875,0.0,0.0
-Drift,3.896103896103896,-93.63270989430306,0.0,0.47339400249999997,0.0,0.0
diff --git a/tables/frequency_hourly/leaderboard_WAPE.csv b/tables/frequency_hourly/leaderboard_WAPE.csv
deleted file mode 100644
index 7904adb7d1c630d2a8d43415530a0877b7847612..0000000000000000000000000000000000000000
--- a/tables/frequency_hourly/leaderboard_WAPE.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,92.20779220779221,48.442211622642596,0.0,1.8613627837499997,0.0,0.0
-TabPFN-TS,74.35064935064936,43.04207391797321,0.0,209.256031124375,0.0,0.0
-TiRex,74.02597402597402,38.16990011187224,0.0,1.6098432725,0.0,0.0
-TimesFM-2.5,73.53896103896103,38.84505904491324,0.0,36.094269344715904,0.13636363636363635,0.0
-Moirai-2.0,68.66883116883118,36.99654962186136,0.0,2.7443964685511366,0.4090909090909091,0.0
-Chronos-Bolt,68.34415584415584,37.34153521192375,0.0,1.188736898153409,0.0,0.0
-Toto-1.0,68.34415584415584,37.127692710312544,0.0,66.21775966082386,0.13636363636363635,0.0
-Sundial-Base,61.68831168831168,37.11101321471857,0.0,8.613333634910715,0.0,0.0
-Stat. Ensemble,39.285714285714285,13.827496123030514,0.0,2423.04841224875,0.0,4.545454545454546
-AutoARIMA,27.92207792207792,3.7229772082420842,0.0,2309.733690728125,0.0,4.545454545454546
-AutoTheta,27.597402597402592,8.112534719932462,0.0,5.755807038238637,0.0,0.0
-Seasonal Naive,22.727272727272723,0.0,0.0,0.48711988500000003,0.0,0.0
-Naive,21.1038961038961,-23.683182625995535,0.0,0.4947083875,0.0,0.0
-AutoETS,17.207792207792206,-40.71283512465331,0.0,13.10401027465909,0.0,0.0
-Drift,12.987012987012985,-28.29415186104791,0.0,0.47339400249999997,0.0,0.0
diff --git a/tables/frequency_hourly/leaderboard_WQL.csv b/tables/frequency_hourly/leaderboard_WQL.csv
deleted file mode 100644
index ab09594c5da42cce2fd0615854b89e0a20df830d..0000000000000000000000000000000000000000
--- a/tables/frequency_hourly/leaderboard_WQL.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,94.48051948051949,59.682309139891906,0.0,1.8613627837499997,0.0,0.0
-TiRex,82.14285714285714,51.65057902169086,0.0,1.6098432725,0.0,0.0
-TimesFM-2.5,77.11038961038962,51.631051239780376,0.0,36.094269344715904,0.13636363636363635,0.0
-TabPFN-TS,76.2987012987013,54.56690402717588,0.0,209.256031124375,0.0,0.0
-Toto-1.0,70.94155844155841,50.29303698824681,0.0,66.21775966082386,0.13636363636363635,0.0
-Chronos-Bolt,68.99350649350649,50.06921700286738,0.0,1.188736898153409,0.0,0.0
-Moirai-2.0,68.01948051948051,49.586247339686665,0.0,2.7443964685511366,0.4090909090909091,0.0
-Sundial-Base,57.46753246753248,46.24435266062466,0.0,8.613333634910715,0.0,0.0
-AutoARIMA,38.63636363636363,16.242226994766373,0.0,2309.733690728125,0.0,4.545454545454546
-Stat. Ensemble,38.311688311688314,13.067151299916691,0.0,2423.04841224875,0.0,4.545454545454546
-Seasonal Naive,23.701298701298704,0.0,0.0,0.48711988500000003,0.0,0.0
-AutoTheta,19.155844155844157,-14.943560751678797,0.0,5.755807038238637,0.0,0.0
-AutoETS,15.909090909090912,-129.66660309670814,0.0,13.10401027465909,0.0,0.0
-Naive,13.311688311688313,-74.36309674872763,0.0,0.4947083875,0.0,0.0
-Drift,5.51948051948052,-79.2278868482116,0.0,0.47339400249999997,0.0,0.0
diff --git a/tables/frequency_hourly/pairwise_MASE.csv b/tables/frequency_hourly/pairwise_MASE.csv
deleted file mode 100644
index 1b95f2b400adced536b4d705e6c0e0d82f72b6fa..0000000000000000000000000000000000000000
--- a/tables/frequency_hourly/pairwise_MASE.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TiRex,0.773,0.591,0.955,0.155,0.074,0.232
-Chronos-2,TimesFM-2.5,0.773,0.591,0.909,0.147,0.067,0.222
-Chronos-2,TabPFN-TS,0.773,0.591,0.909,0.099,0.05,0.148
-Chronos-2,Toto-1.0,0.818,0.636,0.955,0.154,0.078,0.231
-Chronos-2,Chronos-Bolt,1.0,1.0,1.0,0.185,0.109,0.258
-Chronos-2,Moirai-2.0,1.0,1.0,1.0,0.174,0.102,0.242
-Chronos-2,Sundial-Base,0.909,0.773,1.0,0.151,0.089,0.223
-Chronos-2,Stat. Ensemble,1.0,1.0,1.0,0.37,0.293,0.446
-Chronos-2,AutoARIMA,1.0,1.0,1.0,0.397,0.316,0.477
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.409,0.34,0.473
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.433,0.348,0.515
-Chronos-2,Naive,1.0,1.0,1.0,0.603,0.516,0.671
-Chronos-2,AutoETS,1.0,1.0,1.0,0.595,0.509,0.672
-Chronos-2,Drift,1.0,1.0,1.0,0.617,0.53,0.683
-TiRex,Chronos-2,0.227,0.045,0.409,-0.183,-0.301,-0.08
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,TimesFM-2.5,0.5,0.273,0.727,-0.009,-0.042,0.022
-TiRex,TabPFN-TS,0.5,0.317,0.727,-0.066,-0.195,0.026
-TiRex,Toto-1.0,0.636,0.455,0.818,-0.0,-0.055,0.035
-TiRex,Chronos-Bolt,0.682,0.499,0.864,0.036,-0.009,0.097
-TiRex,Moirai-2.0,0.636,0.409,0.818,0.022,-0.002,0.045
-TiRex,Sundial-Base,0.773,0.591,0.909,-0.005,-0.116,0.079
-TiRex,Stat. Ensemble,1.0,1.0,1.0,0.255,0.193,0.323
-TiRex,AutoARIMA,0.955,0.864,1.0,0.286,0.22,0.357
-TiRex,AutoTheta,1.0,1.0,1.0,0.301,0.243,0.359
-TiRex,Seasonal Naive,0.955,0.864,1.0,0.329,0.253,0.409
-TiRex,Naive,1.0,1.0,1.0,0.53,0.444,0.599
-TiRex,AutoETS,1.0,1.0,1.0,0.521,0.434,0.607
-TiRex,Drift,1.0,1.0,1.0,0.547,0.463,0.615
-TimesFM-2.5,Chronos-2,0.227,0.091,0.409,-0.172,-0.285,-0.072
-TimesFM-2.5,TiRex,0.5,0.273,0.727,0.009,-0.023,0.041
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TabPFN-TS,0.591,0.364,0.773,-0.056,-0.184,0.038
-TimesFM-2.5,Toto-1.0,0.523,0.318,0.705,0.009,-0.035,0.043
-TimesFM-2.5,Chronos-Bolt,0.568,0.386,0.75,0.045,-0.004,0.102
-TimesFM-2.5,Moirai-2.0,0.705,0.523,0.864,0.031,-0.006,0.066
-TimesFM-2.5,Sundial-Base,0.727,0.545,0.909,0.004,-0.108,0.094
-TimesFM-2.5,Stat. Ensemble,0.955,0.864,1.0,0.262,0.183,0.343
-TimesFM-2.5,AutoARIMA,0.955,0.864,1.0,0.293,0.213,0.37
-TimesFM-2.5,AutoTheta,1.0,1.0,1.0,0.307,0.236,0.376
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.335,0.248,0.422
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.534,0.442,0.606
-TimesFM-2.5,AutoETS,1.0,1.0,1.0,0.525,0.435,0.616
-TimesFM-2.5,Drift,1.0,1.0,1.0,0.551,0.462,0.621
-TabPFN-TS,Chronos-2,0.227,0.091,0.409,-0.11,-0.174,-0.053
-TabPFN-TS,TiRex,0.5,0.273,0.683,0.062,-0.027,0.163
-TabPFN-TS,TimesFM-2.5,0.409,0.227,0.636,0.053,-0.039,0.156
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Toto-1.0,0.545,0.364,0.727,0.061,-0.036,0.17
-TabPFN-TS,Chronos-Bolt,0.545,0.364,0.727,0.096,0.005,0.19
-TabPFN-TS,Moirai-2.0,0.636,0.409,0.818,0.083,0.004,0.169
-TabPFN-TS,Sundial-Base,0.5,0.273,0.727,0.057,-0.042,0.158
-TabPFN-TS,Stat. Ensemble,0.909,0.773,1.0,0.301,0.219,0.379
-TabPFN-TS,AutoARIMA,0.909,0.773,1.0,0.33,0.242,0.418
-TabPFN-TS,AutoTheta,0.955,0.864,1.0,0.344,0.271,0.413
-TabPFN-TS,Seasonal Naive,1.0,1.0,1.0,0.37,0.286,0.455
-TabPFN-TS,Naive,1.0,1.0,1.0,0.559,0.454,0.636
-TabPFN-TS,AutoETS,1.0,1.0,1.0,0.55,0.463,0.634
-TabPFN-TS,Drift,1.0,1.0,1.0,0.575,0.474,0.648
-Toto-1.0,Chronos-2,0.182,0.045,0.364,-0.183,-0.301,-0.084
-Toto-1.0,TiRex,0.364,0.182,0.545,0.0,-0.037,0.052
-Toto-1.0,TimesFM-2.5,0.477,0.295,0.682,-0.009,-0.045,0.034
-Toto-1.0,TabPFN-TS,0.455,0.273,0.636,-0.065,-0.205,0.035
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,Chronos-Bolt,0.568,0.364,0.75,0.037,-0.015,0.099
-Toto-1.0,Moirai-2.0,0.568,0.364,0.75,0.023,-0.02,0.084
-Toto-1.0,Sundial-Base,0.591,0.364,0.818,-0.005,-0.119,0.095
-Toto-1.0,Stat. Ensemble,0.955,0.864,1.0,0.255,0.173,0.347
-Toto-1.0,AutoARIMA,0.955,0.864,1.0,0.286,0.206,0.382
-Toto-1.0,AutoTheta,1.0,1.0,1.0,0.301,0.231,0.382
-Toto-1.0,Seasonal Naive,0.955,0.864,1.0,0.329,0.236,0.432
-Toto-1.0,Naive,1.0,1.0,1.0,0.53,0.438,0.604
-Toto-1.0,AutoETS,1.0,1.0,1.0,0.521,0.429,0.618
-Toto-1.0,Drift,1.0,1.0,1.0,0.547,0.457,0.619
-Chronos-Bolt,Chronos-2,0.0,0.0,0.0,-0.228,-0.347,-0.122
-Chronos-Bolt,TiRex,0.318,0.136,0.501,-0.038,-0.107,0.009
-Chronos-Bolt,TimesFM-2.5,0.432,0.25,0.614,-0.047,-0.114,0.004
-Chronos-Bolt,TabPFN-TS,0.455,0.273,0.636,-0.106,-0.235,-0.005
-Chronos-Bolt,Toto-1.0,0.432,0.25,0.636,-0.038,-0.11,0.015
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Moirai-2.0,0.523,0.364,0.682,-0.015,-0.081,0.032
-Chronos-Bolt,Sundial-Base,0.545,0.364,0.773,-0.043,-0.163,0.058
-Chronos-Bolt,Stat. Ensemble,0.909,0.773,1.0,0.227,0.141,0.313
-Chronos-Bolt,AutoARIMA,0.955,0.864,1.0,0.259,0.171,0.342
-Chronos-Bolt,AutoTheta,0.955,0.864,1.0,0.275,0.196,0.348
-Chronos-Bolt,Seasonal Naive,0.909,0.817,1.0,0.304,0.206,0.4
-Chronos-Bolt,Naive,1.0,1.0,1.0,0.512,0.43,0.581
-Chronos-Bolt,AutoETS,0.955,0.864,1.0,0.503,0.396,0.601
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.53,0.448,0.597
-Moirai-2.0,Chronos-2,0.0,0.0,0.0,-0.21,-0.319,-0.113
-Moirai-2.0,TiRex,0.364,0.182,0.591,-0.023,-0.047,0.002
-Moirai-2.0,TimesFM-2.5,0.295,0.136,0.477,-0.032,-0.071,0.006
-Moirai-2.0,TabPFN-TS,0.364,0.182,0.591,-0.09,-0.203,-0.004
-Moirai-2.0,Toto-1.0,0.432,0.25,0.636,-0.023,-0.091,0.02
-Moirai-2.0,Chronos-Bolt,0.477,0.318,0.636,0.014,-0.033,0.075
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Sundial-Base,0.591,0.364,0.773,-0.028,-0.134,0.055
-Moirai-2.0,Stat. Ensemble,0.955,0.864,1.0,0.238,0.176,0.304
-Moirai-2.0,AutoARIMA,0.909,0.773,1.0,0.27,0.203,0.337
-Moirai-2.0,AutoTheta,1.0,1.0,1.0,0.285,0.227,0.342
-Moirai-2.0,Seasonal Naive,0.955,0.864,1.0,0.314,0.236,0.392
-Moirai-2.0,Naive,1.0,1.0,1.0,0.519,0.431,0.592
-Moirai-2.0,AutoETS,1.0,1.0,1.0,0.51,0.424,0.595
-Moirai-2.0,Drift,1.0,1.0,1.0,0.537,0.451,0.605
-Sundial-Base,Chronos-2,0.091,0.0,0.227,-0.177,-0.288,-0.097
-Sundial-Base,TiRex,0.227,0.091,0.409,0.005,-0.086,0.104
-Sundial-Base,TimesFM-2.5,0.273,0.091,0.455,-0.004,-0.104,0.098
-Sundial-Base,TabPFN-TS,0.5,0.273,0.727,-0.061,-0.188,0.041
-Sundial-Base,Toto-1.0,0.409,0.182,0.636,0.005,-0.105,0.107
-Sundial-Base,Chronos-Bolt,0.455,0.227,0.636,0.041,-0.062,0.14
-Sundial-Base,Moirai-2.0,0.409,0.227,0.636,0.027,-0.058,0.119
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Stat. Ensemble,0.955,0.864,1.0,0.259,0.173,0.345
-Sundial-Base,AutoARIMA,0.909,0.773,1.0,0.29,0.204,0.373
-Sundial-Base,AutoTheta,1.0,1.0,1.0,0.304,0.232,0.377
-Sundial-Base,Seasonal Naive,0.955,0.864,1.0,0.332,0.242,0.422
-Sundial-Base,Naive,1.0,1.0,1.0,0.532,0.426,0.619
-Sundial-Base,AutoETS,1.0,1.0,1.0,0.523,0.435,0.617
-Sundial-Base,Drift,1.0,1.0,1.0,0.549,0.444,0.634
-Stat. Ensemble,Chronos-2,0.0,0.0,0.0,-0.588,-0.804,-0.414
-Stat. Ensemble,TiRex,0.0,0.0,0.0,-0.343,-0.478,-0.238
-Stat. Ensemble,TimesFM-2.5,0.045,0.0,0.136,-0.355,-0.523,-0.224
-Stat. Ensemble,TabPFN-TS,0.091,0.0,0.227,-0.431,-0.609,-0.281
-Stat. Ensemble,Toto-1.0,0.045,0.0,0.136,-0.343,-0.532,-0.209
-Stat. Ensemble,Chronos-Bolt,0.091,0.0,0.227,-0.294,-0.456,-0.165
-Stat. Ensemble,Moirai-2.0,0.045,0.0,0.136,-0.313,-0.436,-0.214
-Stat. Ensemble,Sundial-Base,0.045,0.0,0.136,-0.349,-0.527,-0.21
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoARIMA,0.75,0.568,0.909,0.042,0.005,0.08
-Stat. Ensemble,AutoTheta,0.727,0.5,0.909,0.061,0.021,0.101
-Stat. Ensemble,Seasonal Naive,0.75,0.591,0.909,0.099,0.047,0.156
-Stat. Ensemble,Naive,0.909,0.773,1.0,0.369,0.266,0.458
-Stat. Ensemble,AutoETS,1.0,1.0,1.0,0.357,0.247,0.481
-Stat. Ensemble,Drift,0.909,0.773,1.0,0.392,0.29,0.477
-AutoARIMA,Chronos-2,0.0,0.0,0.0,-0.657,-0.913,-0.462
-AutoARIMA,TiRex,0.045,0.0,0.136,-0.401,-0.556,-0.282
-AutoARIMA,TimesFM-2.5,0.045,0.0,0.136,-0.414,-0.588,-0.271
-AutoARIMA,TabPFN-TS,0.091,0.0,0.227,-0.493,-0.717,-0.319
-AutoARIMA,Toto-1.0,0.045,0.0,0.136,-0.401,-0.618,-0.26
-AutoARIMA,Chronos-Bolt,0.045,0.0,0.136,-0.35,-0.519,-0.207
-AutoARIMA,Moirai-2.0,0.091,0.0,0.227,-0.37,-0.508,-0.254
-AutoARIMA,Sundial-Base,0.091,0.0,0.227,-0.408,-0.596,-0.256
-AutoARIMA,Stat. Ensemble,0.25,0.091,0.432,-0.043,-0.088,-0.005
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoTheta,0.545,0.318,0.727,0.021,-0.031,0.069
-AutoARIMA,Seasonal Naive,0.705,0.5,0.864,0.06,0.013,0.109
-AutoARIMA,Naive,0.864,0.682,1.0,0.342,0.226,0.439
-AutoARIMA,AutoETS,0.909,0.773,1.0,0.329,0.203,0.458
-AutoARIMA,Drift,0.909,0.773,1.0,0.365,0.252,0.46
-AutoTheta,Chronos-2,0.0,0.0,0.0,-0.692,-0.897,-0.515
-AutoTheta,TiRex,0.0,0.0,0.0,-0.43,-0.56,-0.32
-AutoTheta,TimesFM-2.5,0.0,0.0,0.0,-0.444,-0.603,-0.308
-AutoTheta,TabPFN-TS,0.045,0.0,0.136,-0.525,-0.703,-0.371
-AutoTheta,Toto-1.0,0.0,0.0,0.0,-0.431,-0.617,-0.3
-AutoTheta,Chronos-Bolt,0.045,0.0,0.136,-0.379,-0.534,-0.243
-AutoTheta,Moirai-2.0,0.0,0.0,0.0,-0.399,-0.519,-0.293
-AutoTheta,Sundial-Base,0.0,0.0,0.0,-0.438,-0.605,-0.302
-AutoTheta,Stat. Ensemble,0.273,0.091,0.5,-0.065,-0.112,-0.022
-AutoTheta,AutoARIMA,0.455,0.273,0.682,-0.021,-0.075,0.03
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Seasonal Naive,0.636,0.455,0.818,0.04,-0.036,0.112
-AutoTheta,Naive,0.818,0.636,0.955,0.328,0.221,0.419
-AutoTheta,AutoETS,0.955,0.864,1.0,0.315,0.196,0.441
-AutoTheta,Drift,0.864,0.682,1.0,0.352,0.248,0.441
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-0.763,-1.06,-0.534
-Seasonal Naive,TiRex,0.045,0.0,0.136,-0.49,-0.691,-0.338
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-0.504,-0.73,-0.33
-Seasonal Naive,TabPFN-TS,0.0,0.0,0.0,-0.588,-0.835,-0.401
-Seasonal Naive,Toto-1.0,0.045,0.0,0.136,-0.491,-0.761,-0.31
-Seasonal Naive,Chronos-Bolt,0.091,0.0,0.183,-0.436,-0.667,-0.26
-Seasonal Naive,Moirai-2.0,0.045,0.0,0.136,-0.457,-0.645,-0.309
-Seasonal Naive,Sundial-Base,0.045,0.0,0.136,-0.498,-0.73,-0.32
-Seasonal Naive,Stat. Ensemble,0.25,0.091,0.409,-0.11,-0.184,-0.05
-Seasonal Naive,AutoARIMA,0.295,0.136,0.5,-0.064,-0.122,-0.013
-Seasonal Naive,AutoTheta,0.364,0.182,0.545,-0.042,-0.126,0.035
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Naive,0.773,0.591,0.909,0.3,0.152,0.419
-Seasonal Naive,AutoETS,0.773,0.591,0.909,0.286,0.145,0.428
-Seasonal Naive,Drift,0.773,0.591,0.909,0.325,0.178,0.442
-Naive,Chronos-2,0.0,0.0,0.0,-1.518,-2.04,-1.064
-Naive,TiRex,0.0,0.0,0.0,-1.128,-1.496,-0.798
-Naive,TimesFM-2.5,0.0,0.0,0.0,-1.148,-1.535,-0.793
-Naive,TabPFN-TS,0.0,0.0,0.0,-1.268,-1.745,-0.83
-Naive,Toto-1.0,0.0,0.0,0.0,-1.129,-1.528,-0.778
-Naive,Chronos-Bolt,0.0,0.0,0.0,-1.051,-1.384,-0.754
-Naive,Moirai-2.0,0.0,0.0,0.0,-1.081,-1.448,-0.758
-Naive,Sundial-Base,0.0,0.0,0.0,-1.139,-1.625,-0.741
-Naive,Stat. Ensemble,0.091,0.0,0.227,-0.585,-0.844,-0.362
-Naive,AutoARIMA,0.136,0.0,0.318,-0.519,-0.781,-0.293
-Naive,AutoTheta,0.182,0.045,0.364,-0.488,-0.722,-0.283
-Naive,Seasonal Naive,0.227,0.091,0.409,-0.428,-0.722,-0.18
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,AutoETS,0.545,0.364,0.727,-0.02,-0.276,0.204
-Naive,Drift,0.909,0.773,1.0,0.036,0.019,0.055
-AutoETS,Chronos-2,0.0,0.0,0.0,-1.469,-2.047,-1.037
-AutoETS,TiRex,0.0,0.0,0.0,-1.087,-1.548,-0.767
-AutoETS,TimesFM-2.5,0.0,0.0,0.0,-1.106,-1.604,-0.771
-AutoETS,TabPFN-TS,0.0,0.0,0.0,-1.225,-1.732,-0.861
-AutoETS,Toto-1.0,0.0,0.0,0.0,-1.088,-1.617,-0.75
-AutoETS,Chronos-Bolt,0.045,0.0,0.136,-1.012,-1.506,-0.657
-AutoETS,Moirai-2.0,0.0,0.0,0.0,-1.041,-1.467,-0.735
-AutoETS,Sundial-Base,0.0,0.0,0.0,-1.098,-1.611,-0.77
-AutoETS,Stat. Ensemble,0.0,0.0,0.0,-0.555,-0.926,-0.328
-AutoETS,AutoARIMA,0.091,0.0,0.227,-0.49,-0.845,-0.255
-AutoETS,AutoTheta,0.045,0.0,0.136,-0.459,-0.79,-0.244
-AutoETS,Seasonal Naive,0.227,0.091,0.409,-0.401,-0.748,-0.169
-AutoETS,Naive,0.455,0.273,0.636,0.019,-0.257,0.216
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Drift,0.5,0.273,0.682,0.054,-0.22,0.246
-Drift,Chronos-2,0.0,0.0,0.0,-1.611,-2.152,-1.128
-Drift,TiRex,0.0,0.0,0.0,-1.207,-1.595,-0.861
-Drift,TimesFM-2.5,0.0,0.0,0.0,-1.227,-1.637,-0.858
-Drift,TabPFN-TS,0.0,0.0,0.0,-1.352,-1.839,-0.901
-Drift,Toto-1.0,0.0,0.0,0.0,-1.208,-1.624,-0.841
-Drift,Chronos-Bolt,0.0,0.0,0.0,-1.127,-1.479,-0.81
-Drift,Moirai-2.0,0.0,0.0,0.0,-1.158,-1.532,-0.822
-Drift,Sundial-Base,0.0,0.0,0.0,-1.218,-1.736,-0.799
-Drift,Stat. Ensemble,0.091,0.0,0.227,-0.644,-0.912,-0.408
-Drift,AutoARIMA,0.091,0.0,0.227,-0.575,-0.851,-0.337
-Drift,AutoTheta,0.136,0.0,0.318,-0.543,-0.788,-0.33
-Drift,Seasonal Naive,0.227,0.091,0.409,-0.481,-0.792,-0.216
-Drift,Naive,0.091,0.0,0.227,-0.037,-0.058,-0.02
-Drift,AutoETS,0.5,0.318,0.727,-0.057,-0.326,0.181
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/frequency_hourly/pairwise_SQL.csv b/tables/frequency_hourly/pairwise_SQL.csv
deleted file mode 100644
index 9e7619a74e79be44efcf2559bee57b79c0a236a8..0000000000000000000000000000000000000000
--- a/tables/frequency_hourly/pairwise_SQL.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TiRex,0.818,0.636,0.955,0.155,0.076,0.23
-Chronos-2,TimesFM-2.5,0.818,0.636,0.955,0.161,0.079,0.235
-Chronos-2,TabPFN-TS,0.818,0.681,0.955,0.116,0.064,0.166
-Chronos-2,Toto-1.0,0.818,0.636,0.955,0.167,0.09,0.247
-Chronos-2,Chronos-Bolt,1.0,1.0,1.0,0.198,0.125,0.266
-Chronos-2,Moirai-2.0,1.0,1.0,1.0,0.189,0.118,0.257
-Chronos-2,Sundial-Base,0.955,0.864,1.0,0.221,0.162,0.292
-Chronos-2,AutoARIMA,1.0,1.0,1.0,0.469,0.401,0.535
-Chronos-2,Stat. Ensemble,1.0,1.0,1.0,0.493,0.431,0.55
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.55,0.483,0.612
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.62,0.56,0.676
-Chronos-2,AutoETS,1.0,1.0,1.0,0.778,0.638,0.877
-Chronos-2,Naive,1.0,1.0,1.0,0.761,0.708,0.807
-Chronos-2,Drift,1.0,1.0,1.0,0.767,0.713,0.813
-TiRex,Chronos-2,0.182,0.045,0.364,-0.184,-0.299,-0.082
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,TimesFM-2.5,0.636,0.455,0.818,0.006,-0.026,0.038
-TiRex,TabPFN-TS,0.545,0.318,0.727,-0.047,-0.184,0.054
-TiRex,Toto-1.0,0.818,0.636,0.955,0.014,-0.036,0.044
-TiRex,Chronos-Bolt,0.773,0.591,0.909,0.05,0.008,0.102
-TiRex,Moirai-2.0,0.864,0.727,1.0,0.04,0.019,0.062
-TiRex,Sundial-Base,0.818,0.636,0.955,0.078,-0.015,0.15
-TiRex,AutoARIMA,1.0,1.0,1.0,0.371,0.298,0.444
-TiRex,Stat. Ensemble,1.0,1.0,1.0,0.4,0.331,0.468
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.467,0.393,0.537
-TiRex,AutoTheta,1.0,1.0,1.0,0.55,0.47,0.622
-TiRex,AutoETS,1.0,1.0,1.0,0.739,0.579,0.857
-TiRex,Naive,1.0,1.0,1.0,0.717,0.643,0.777
-TiRex,Drift,1.0,1.0,1.0,0.725,0.651,0.782
-TimesFM-2.5,Chronos-2,0.182,0.045,0.364,-0.192,-0.308,-0.086
-TimesFM-2.5,TiRex,0.364,0.182,0.545,-0.007,-0.039,0.025
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TabPFN-TS,0.591,0.364,0.773,-0.054,-0.192,0.05
-TimesFM-2.5,Toto-1.0,0.568,0.364,0.75,0.007,-0.035,0.039
-TimesFM-2.5,Chronos-Bolt,0.614,0.432,0.795,0.044,-0.001,0.096
-TimesFM-2.5,Moirai-2.0,0.75,0.568,0.909,0.034,-0.006,0.07
-TimesFM-2.5,Sundial-Base,0.818,0.636,0.955,0.072,-0.029,0.158
-TimesFM-2.5,AutoARIMA,1.0,1.0,1.0,0.367,0.284,0.448
-TimesFM-2.5,Stat. Ensemble,1.0,1.0,1.0,0.396,0.316,0.471
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.463,0.379,0.539
-TimesFM-2.5,AutoTheta,1.0,1.0,1.0,0.547,0.457,0.627
-TimesFM-2.5,AutoETS,1.0,1.0,1.0,0.737,0.575,0.858
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.715,0.64,0.775
-TimesFM-2.5,Drift,1.0,1.0,1.0,0.723,0.649,0.783
-TabPFN-TS,Chronos-2,0.182,0.045,0.319,-0.131,-0.2,-0.069
-TabPFN-TS,TiRex,0.455,0.273,0.682,0.045,-0.058,0.156
-TabPFN-TS,TimesFM-2.5,0.409,0.227,0.636,0.051,-0.052,0.161
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Toto-1.0,0.545,0.364,0.727,0.058,-0.055,0.174
-TabPFN-TS,Chronos-Bolt,0.545,0.318,0.773,0.092,-0.008,0.19
-TabPFN-TS,Moirai-2.0,0.636,0.455,0.818,0.083,-0.009,0.179
-TabPFN-TS,Sundial-Base,0.727,0.545,0.909,0.119,0.017,0.225
-TabPFN-TS,AutoARIMA,0.955,0.864,1.0,0.399,0.318,0.479
-TabPFN-TS,Stat. Ensemble,1.0,1.0,1.0,0.427,0.358,0.495
-TabPFN-TS,Seasonal Naive,1.0,1.0,1.0,0.491,0.421,0.56
-TabPFN-TS,AutoTheta,1.0,1.0,1.0,0.57,0.492,0.643
-TabPFN-TS,AutoETS,1.0,1.0,1.0,0.753,0.591,0.864
-TabPFN-TS,Naive,1.0,1.0,1.0,0.73,0.668,0.784
-TabPFN-TS,Drift,1.0,1.0,1.0,0.737,0.675,0.791
-Toto-1.0,Chronos-2,0.182,0.045,0.364,-0.2,-0.328,-0.099
-Toto-1.0,TiRex,0.182,0.045,0.364,-0.014,-0.046,0.035
-Toto-1.0,TimesFM-2.5,0.432,0.25,0.636,-0.007,-0.041,0.033
-Toto-1.0,TabPFN-TS,0.455,0.273,0.636,-0.061,-0.211,0.053
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,Chronos-Bolt,0.614,0.432,0.795,0.037,-0.012,0.093
-Toto-1.0,Moirai-2.0,0.614,0.409,0.795,0.027,-0.014,0.083
-Toto-1.0,Sundial-Base,0.818,0.636,0.955,0.065,-0.035,0.153
-Toto-1.0,AutoARIMA,1.0,1.0,1.0,0.362,0.279,0.448
-Toto-1.0,Stat. Ensemble,1.0,1.0,1.0,0.392,0.313,0.472
-Toto-1.0,Seasonal Naive,1.0,1.0,1.0,0.459,0.371,0.544
-Toto-1.0,AutoTheta,1.0,1.0,1.0,0.543,0.455,0.623
-Toto-1.0,AutoETS,1.0,1.0,1.0,0.736,0.568,0.859
-Toto-1.0,Naive,1.0,1.0,1.0,0.713,0.636,0.773
-Toto-1.0,Drift,1.0,1.0,1.0,0.721,0.644,0.779
-Chronos-Bolt,Chronos-2,0.0,0.0,0.0,-0.246,-0.363,-0.143
-Chronos-Bolt,TiRex,0.227,0.091,0.409,-0.053,-0.114,-0.008
-Chronos-Bolt,TimesFM-2.5,0.386,0.205,0.568,-0.046,-0.106,0.001
-Chronos-Bolt,TabPFN-TS,0.455,0.227,0.682,-0.102,-0.235,0.008
-Chronos-Bolt,Toto-1.0,0.386,0.205,0.568,-0.038,-0.103,0.012
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Moirai-2.0,0.477,0.318,0.636,-0.01,-0.07,0.032
-Chronos-Bolt,Sundial-Base,0.773,0.591,0.909,0.03,-0.083,0.123
-Chronos-Bolt,AutoARIMA,0.955,0.864,1.0,0.338,0.256,0.419
-Chronos-Bolt,Stat. Ensemble,0.955,0.864,1.0,0.369,0.287,0.445
-Chronos-Bolt,Seasonal Naive,0.955,0.864,1.0,0.439,0.356,0.522
-Chronos-Bolt,AutoTheta,1.0,1.0,1.0,0.526,0.446,0.602
-Chronos-Bolt,AutoETS,1.0,1.0,1.0,0.726,0.541,0.853
-Chronos-Bolt,Naive,1.0,1.0,1.0,0.702,0.636,0.761
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.71,0.644,0.769
-Moirai-2.0,Chronos-2,0.0,0.0,0.0,-0.233,-0.346,-0.133
-Moirai-2.0,TiRex,0.136,0.0,0.273,-0.042,-0.066,-0.019
-Moirai-2.0,TimesFM-2.5,0.25,0.091,0.432,-0.035,-0.076,0.006
-Moirai-2.0,TabPFN-TS,0.364,0.182,0.545,-0.091,-0.218,0.009
-Moirai-2.0,Toto-1.0,0.386,0.205,0.591,-0.028,-0.09,0.014
-Moirai-2.0,Chronos-Bolt,0.523,0.364,0.682,0.01,-0.033,0.065
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Sundial-Base,0.818,0.636,0.955,0.04,-0.054,0.117
-Moirai-2.0,AutoARIMA,1.0,1.0,1.0,0.345,0.271,0.422
-Moirai-2.0,Stat. Ensemble,1.0,1.0,1.0,0.375,0.307,0.444
-Moirai-2.0,Seasonal Naive,1.0,1.0,1.0,0.444,0.371,0.518
-Moirai-2.0,AutoTheta,1.0,1.0,1.0,0.531,0.449,0.604
-Moirai-2.0,AutoETS,1.0,1.0,1.0,0.73,0.556,0.852
-Moirai-2.0,Naive,1.0,1.0,1.0,0.705,0.63,0.767
-Moirai-2.0,Drift,1.0,1.0,1.0,0.713,0.64,0.774
-Sundial-Base,Chronos-2,0.045,0.0,0.136,-0.284,-0.412,-0.193
-Sundial-Base,TiRex,0.182,0.045,0.364,-0.085,-0.177,0.014
-Sundial-Base,TimesFM-2.5,0.182,0.045,0.364,-0.078,-0.187,0.028
-Sundial-Base,TabPFN-TS,0.273,0.091,0.455,-0.135,-0.29,-0.017
-Sundial-Base,Toto-1.0,0.182,0.045,0.364,-0.07,-0.181,0.034
-Sundial-Base,Chronos-Bolt,0.227,0.091,0.409,-0.031,-0.141,0.076
-Sundial-Base,Moirai-2.0,0.182,0.045,0.364,-0.041,-0.133,0.051
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,AutoARIMA,0.909,0.773,1.0,0.318,0.235,0.4
-Sundial-Base,Stat. Ensemble,0.955,0.864,1.0,0.349,0.276,0.422
-Sundial-Base,Seasonal Naive,1.0,1.0,1.0,0.422,0.34,0.501
-Sundial-Base,AutoTheta,1.0,1.0,1.0,0.511,0.435,0.59
-Sundial-Base,AutoETS,1.0,1.0,1.0,0.722,0.535,0.847
-Sundial-Base,Naive,1.0,1.0,1.0,0.693,0.608,0.759
-Sundial-Base,Drift,1.0,1.0,1.0,0.701,0.618,0.766
-AutoARIMA,Chronos-2,0.0,0.0,0.0,-0.883,-1.149,-0.669
-AutoARIMA,TiRex,0.0,0.0,0.0,-0.59,-0.8,-0.425
-AutoARIMA,TimesFM-2.5,0.0,0.0,0.0,-0.58,-0.811,-0.396
-AutoARIMA,TabPFN-TS,0.045,0.0,0.136,-0.665,-0.918,-0.467
-AutoARIMA,Toto-1.0,0.0,0.0,0.0,-0.568,-0.811,-0.387
-AutoARIMA,Chronos-Bolt,0.045,0.0,0.136,-0.511,-0.72,-0.345
-AutoARIMA,Moirai-2.0,0.0,0.0,0.0,-0.526,-0.73,-0.371
-AutoARIMA,Sundial-Base,0.091,0.0,0.227,-0.466,-0.666,-0.308
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,Stat. Ensemble,0.659,0.455,0.819,0.046,0.011,0.086
-AutoARIMA,Seasonal Naive,0.977,0.932,1.0,0.152,0.113,0.193
-AutoARIMA,AutoTheta,0.955,0.864,1.0,0.284,0.193,0.375
-AutoARIMA,AutoETS,0.955,0.818,1.0,0.6,0.32,0.795
-AutoARIMA,Naive,1.0,1.0,1.0,0.55,0.459,0.621
-AutoARIMA,Drift,1.0,1.0,1.0,0.562,0.472,0.633
-Stat. Ensemble,Chronos-2,0.0,0.0,0.0,-0.974,-1.221,-0.757
-Stat. Ensemble,TiRex,0.0,0.0,0.0,-0.667,-0.879,-0.494
-Stat. Ensemble,TimesFM-2.5,0.0,0.0,0.0,-0.657,-0.89,-0.461
-Stat. Ensemble,TabPFN-TS,0.0,0.0,0.0,-0.746,-0.982,-0.557
-Stat. Ensemble,Toto-1.0,0.0,0.0,0.0,-0.645,-0.894,-0.456
-Stat. Ensemble,Chronos-Bolt,0.045,0.0,0.136,-0.584,-0.802,-0.402
-Stat. Ensemble,Moirai-2.0,0.0,0.0,0.0,-0.601,-0.798,-0.442
-Stat. Ensemble,Sundial-Base,0.045,0.0,0.136,-0.537,-0.731,-0.381
-Stat. Ensemble,AutoARIMA,0.341,0.181,0.545,-0.049,-0.094,-0.012
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,Seasonal Naive,0.75,0.568,0.909,0.111,0.052,0.166
-Stat. Ensemble,AutoTheta,0.955,0.864,1.0,0.249,0.164,0.334
-Stat. Ensemble,AutoETS,0.955,0.818,1.0,0.586,0.296,0.789
-Stat. Ensemble,Naive,1.0,1.0,1.0,0.528,0.432,0.605
-Stat. Ensemble,Drift,1.0,1.0,1.0,0.541,0.446,0.616
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-1.22,-1.574,-0.932
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.875,-1.161,-0.647
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-0.863,-1.171,-0.61
-Seasonal Naive,TabPFN-TS,0.0,0.0,0.0,-0.963,-1.27,-0.726
-Seasonal Naive,Toto-1.0,0.0,0.0,0.0,-0.849,-1.193,-0.59
-Seasonal Naive,Chronos-Bolt,0.045,0.0,0.136,-0.781,-1.092,-0.552
-Seasonal Naive,Moirai-2.0,0.0,0.0,0.0,-0.8,-1.075,-0.59
-Seasonal Naive,Sundial-Base,0.0,0.0,0.0,-0.729,-1.003,-0.515
-Seasonal Naive,AutoARIMA,0.023,0.0,0.068,-0.179,-0.239,-0.127
-Seasonal Naive,Stat. Ensemble,0.25,0.091,0.432,-0.125,-0.199,-0.055
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,AutoTheta,0.545,0.364,0.727,0.155,0.024,0.273
-Seasonal Naive,AutoETS,0.727,0.545,0.909,0.536,0.196,0.768
-Seasonal Naive,Naive,0.864,0.727,1.0,0.469,0.348,0.562
-Seasonal Naive,Drift,0.864,0.727,1.0,0.484,0.361,0.575
-AutoTheta,Chronos-2,0.0,0.0,0.0,-1.628,-2.087,-1.274
-AutoTheta,TiRex,0.0,0.0,0.0,-1.22,-1.647,-0.887
-AutoTheta,TimesFM-2.5,0.0,0.0,0.0,-1.206,-1.679,-0.841
-AutoTheta,TabPFN-TS,0.0,0.0,0.0,-1.324,-1.798,-0.967
-AutoTheta,Toto-1.0,0.0,0.0,0.0,-1.19,-1.652,-0.835
-AutoTheta,Chronos-Bolt,0.0,0.0,0.0,-1.109,-1.514,-0.805
-AutoTheta,Moirai-2.0,0.0,0.0,0.0,-1.131,-1.525,-0.815
-AutoTheta,Sundial-Base,0.0,0.0,0.0,-1.047,-1.438,-0.769
-AutoTheta,AutoARIMA,0.045,0.0,0.136,-0.396,-0.6,-0.239
-AutoTheta,Stat. Ensemble,0.045,0.0,0.136,-0.331,-0.502,-0.196
-AutoTheta,Seasonal Naive,0.455,0.273,0.636,-0.184,-0.375,-0.025
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,AutoETS,0.545,0.364,0.773,0.463,0.076,0.728
-AutoTheta,Naive,0.773,0.591,0.909,0.372,0.238,0.472
-AutoTheta,Drift,0.773,0.591,0.909,0.389,0.258,0.487
-AutoETS,Chronos-2,0.0,0.0,0.0,-3.51,-7.126,-1.763
-AutoETS,TiRex,0.0,0.0,0.0,-2.827,-5.973,-1.374
-AutoETS,TimesFM-2.5,0.0,0.0,0.0,-2.799,-6.046,-1.351
-AutoETS,TabPFN-TS,0.0,0.0,0.0,-3.057,-6.34,-1.448
-AutoETS,Toto-1.0,0.0,0.0,0.0,-2.782,-6.109,-1.315
-AutoETS,Chronos-Bolt,0.0,0.0,0.0,-2.652,-5.817,-1.18
-AutoETS,Moirai-2.0,0.0,0.0,0.0,-2.698,-5.771,-1.254
-AutoETS,Sundial-Base,0.0,0.0,0.0,-2.592,-5.554,-1.151
-AutoETS,AutoARIMA,0.045,0.0,0.182,-1.497,-3.867,-0.47
-AutoETS,Stat. Ensemble,0.045,0.0,0.182,-1.416,-3.74,-0.42
-AutoETS,Seasonal Naive,0.273,0.091,0.455,-1.155,-3.309,-0.244
-AutoETS,AutoTheta,0.455,0.227,0.636,-0.863,-2.675,-0.082
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Naive,0.636,0.453,0.818,-0.237,-1.691,0.327
-AutoETS,Drift,0.818,0.636,0.955,-0.212,-1.644,0.34
-Naive,Chronos-2,0.0,0.0,0.0,-3.184,-4.178,-2.423
-Naive,TiRex,0.0,0.0,0.0,-2.534,-3.481,-1.8
-Naive,TimesFM-2.5,0.0,0.0,0.0,-2.511,-3.442,-1.777
-Naive,TabPFN-TS,0.0,0.0,0.0,-2.699,-3.63,-2.013
-Naive,Toto-1.0,0.0,0.0,0.0,-2.485,-3.404,-1.748
-Naive,Chronos-Bolt,0.0,0.0,0.0,-2.357,-3.188,-1.75
-Naive,Moirai-2.0,0.0,0.0,0.0,-2.392,-3.295,-1.702
-Naive,Sundial-Base,0.0,0.0,0.0,-2.258,-3.142,-1.552
-Naive,AutoARIMA,0.0,0.0,0.0,-1.222,-1.635,-0.847
-Naive,Stat. Ensemble,0.0,0.0,0.0,-1.119,-1.531,-0.761
-Naive,Seasonal Naive,0.136,0.0,0.273,-0.885,-1.283,-0.533
-Naive,AutoTheta,0.227,0.091,0.409,-0.592,-0.894,-0.312
-Naive,AutoETS,0.364,0.182,0.547,0.192,-0.485,0.628
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,1.0,1.0,1.0,0.027,0.016,0.038
-Drift,Chronos-2,0.0,0.0,0.0,-3.298,-4.338,-2.49
-Drift,TiRex,0.0,0.0,0.0,-2.631,-3.597,-1.865
-Drift,TimesFM-2.5,0.0,0.0,0.0,-2.607,-3.598,-1.847
-Drift,TabPFN-TS,0.0,0.0,0.0,-2.801,-3.79,-2.081
-Drift,Toto-1.0,0.0,0.0,0.0,-2.581,-3.531,-1.812
-Drift,Chronos-Bolt,0.0,0.0,0.0,-2.449,-3.324,-1.805
-Drift,Moirai-2.0,0.0,0.0,0.0,-2.485,-3.427,-1.775
-Drift,Sundial-Base,0.0,0.0,0.0,-2.347,-3.282,-1.615
-Drift,AutoARIMA,0.0,0.0,0.0,-1.283,-1.725,-0.895
-Drift,Stat. Ensemble,0.0,0.0,0.0,-1.177,-1.607,-0.806
-Drift,Seasonal Naive,0.136,0.0,0.273,-0.936,-1.355,-0.565
-Drift,AutoTheta,0.227,0.091,0.409,-0.635,-0.95,-0.348
-Drift,AutoETS,0.182,0.045,0.364,0.175,-0.515,0.622
-Drift,Naive,0.0,0.0,0.0,-0.027,-0.039,-0.017
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/frequency_hourly/pairwise_WAPE.csv b/tables/frequency_hourly/pairwise_WAPE.csv
deleted file mode 100644
index 7af69288d170dfcd64c28fbb5efcd25ca646cbd8..0000000000000000000000000000000000000000
--- a/tables/frequency_hourly/pairwise_WAPE.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TabPFN-TS,0.909,0.773,1.0,0.095,0.037,0.145
-Chronos-2,TiRex,0.864,0.682,1.0,0.166,0.089,0.238
-Chronos-2,TimesFM-2.5,0.773,0.591,0.955,0.157,0.08,0.228
-Chronos-2,Moirai-2.0,0.909,0.773,1.0,0.182,0.113,0.247
-Chronos-2,Toto-1.0,0.818,0.636,0.955,0.18,0.099,0.262
-Chronos-2,Chronos-Bolt,0.909,0.773,1.0,0.177,0.11,0.243
-Chronos-2,Sundial-Base,0.909,0.773,1.0,0.18,0.113,0.248
-Chronos-2,Stat. Ensemble,1.0,1.0,1.0,0.402,0.31,0.486
-Chronos-2,AutoARIMA,1.0,1.0,1.0,0.464,0.363,0.551
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.439,0.358,0.517
-Chronos-2,Seasonal Naive,0.955,0.864,1.0,0.484,0.381,0.579
-Chronos-2,Naive,0.955,0.864,1.0,0.583,0.476,0.661
-Chronos-2,AutoETS,0.955,0.864,1.0,0.634,0.529,0.73
-Chronos-2,Drift,0.955,0.864,1.0,0.598,0.496,0.675
-TabPFN-TS,Chronos-2,0.091,0.0,0.227,-0.105,-0.17,-0.039
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,TiRex,0.455,0.272,0.682,0.079,-0.011,0.168
-TabPFN-TS,TimesFM-2.5,0.5,0.273,0.727,0.069,-0.014,0.155
-TabPFN-TS,Moirai-2.0,0.636,0.455,0.818,0.096,0.019,0.171
-TabPFN-TS,Toto-1.0,0.591,0.409,0.773,0.094,-0.006,0.199
-TabPFN-TS,Chronos-Bolt,0.591,0.409,0.773,0.091,0.013,0.172
-TabPFN-TS,Sundial-Base,0.591,0.409,0.773,0.094,-0.014,0.184
-TabPFN-TS,Stat. Ensemble,1.0,1.0,1.0,0.339,0.246,0.428
-TabPFN-TS,AutoARIMA,0.955,0.864,1.0,0.408,0.307,0.497
-TabPFN-TS,AutoTheta,1.0,1.0,1.0,0.38,0.291,0.46
-TabPFN-TS,Seasonal Naive,1.0,1.0,1.0,0.43,0.327,0.53
-TabPFN-TS,Naive,1.0,1.0,1.0,0.539,0.437,0.619
-TabPFN-TS,AutoETS,1.0,1.0,1.0,0.595,0.487,0.692
-TabPFN-TS,Drift,1.0,1.0,1.0,0.556,0.455,0.635
-TiRex,Chronos-2,0.136,0.0,0.318,-0.199,-0.312,-0.097
-TiRex,TabPFN-TS,0.545,0.318,0.728,-0.086,-0.202,0.011
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,TimesFM-2.5,0.5,0.273,0.727,-0.011,-0.05,0.023
-TiRex,Moirai-2.0,0.545,0.318,0.773,0.019,-0.004,0.039
-TiRex,Toto-1.0,0.636,0.409,0.818,0.017,-0.042,0.058
-TiRex,Chronos-Bolt,0.591,0.364,0.773,0.013,-0.016,0.042
-TiRex,Sundial-Base,0.682,0.5,0.864,0.017,-0.108,0.123
-TiRex,Stat. Ensemble,0.955,0.864,1.0,0.282,0.193,0.37
-TiRex,AutoARIMA,0.955,0.864,1.0,0.358,0.255,0.456
-TiRex,AutoTheta,1.0,1.0,1.0,0.327,0.245,0.406
-TiRex,Seasonal Naive,0.955,0.864,1.0,0.382,0.279,0.484
-TiRex,Naive,0.955,0.864,1.0,0.5,0.401,0.587
-TiRex,AutoETS,0.955,0.864,1.0,0.561,0.429,0.669
-TiRex,Drift,0.955,0.864,1.0,0.518,0.418,0.604
-TimesFM-2.5,Chronos-2,0.227,0.045,0.409,-0.186,-0.295,-0.087
-TimesFM-2.5,TabPFN-TS,0.5,0.273,0.727,-0.074,-0.183,0.014
-TimesFM-2.5,TiRex,0.5,0.273,0.727,0.011,-0.023,0.047
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,Moirai-2.0,0.614,0.409,0.795,0.029,-0.011,0.069
-TimesFM-2.5,Toto-1.0,0.477,0.295,0.659,0.027,-0.021,0.073
-TimesFM-2.5,Chronos-Bolt,0.523,0.341,0.705,0.024,-0.007,0.059
-TimesFM-2.5,Sundial-Base,0.682,0.5,0.864,0.028,-0.096,0.132
-TimesFM-2.5,Stat. Ensemble,0.955,0.864,1.0,0.29,0.194,0.39
-TimesFM-2.5,AutoARIMA,0.955,0.864,1.0,0.365,0.258,0.465
-TimesFM-2.5,AutoTheta,1.0,1.0,1.0,0.334,0.246,0.421
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.388,0.28,0.499
-TimesFM-2.5,Naive,0.955,0.864,1.0,0.506,0.404,0.594
-TimesFM-2.5,AutoETS,0.955,0.864,1.0,0.565,0.443,0.674
-TimesFM-2.5,Drift,0.955,0.864,1.0,0.523,0.423,0.609
-Moirai-2.0,Chronos-2,0.091,0.0,0.227,-0.222,-0.328,-0.127
-Moirai-2.0,TabPFN-TS,0.364,0.182,0.545,-0.106,-0.206,-0.019
-Moirai-2.0,TiRex,0.455,0.227,0.682,-0.019,-0.041,0.004
-Moirai-2.0,TimesFM-2.5,0.386,0.205,0.591,-0.03,-0.074,0.011
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Toto-1.0,0.477,0.295,0.66,-0.002,-0.067,0.049
-Moirai-2.0,Chronos-Bolt,0.523,0.364,0.682,-0.006,-0.036,0.022
-Moirai-2.0,Sundial-Base,0.636,0.455,0.818,-0.002,-0.122,0.099
-Moirai-2.0,Stat. Ensemble,0.909,0.773,1.0,0.269,0.182,0.355
-Moirai-2.0,AutoARIMA,0.955,0.864,1.0,0.346,0.24,0.446
-Moirai-2.0,AutoTheta,1.0,1.0,1.0,0.314,0.236,0.392
-Moirai-2.0,Seasonal Naive,0.955,0.864,1.0,0.37,0.264,0.475
-Moirai-2.0,Naive,0.955,0.864,1.0,0.491,0.391,0.578
-Moirai-2.0,AutoETS,0.955,0.864,1.0,0.552,0.426,0.662
-Moirai-2.0,Drift,0.955,0.864,1.0,0.509,0.409,0.595
-Toto-1.0,Chronos-2,0.182,0.045,0.364,-0.219,-0.354,-0.11
-Toto-1.0,TabPFN-TS,0.409,0.227,0.591,-0.104,-0.249,0.006
-Toto-1.0,TiRex,0.364,0.182,0.591,-0.017,-0.062,0.04
-Toto-1.0,TimesFM-2.5,0.523,0.341,0.705,-0.028,-0.079,0.021
-Toto-1.0,Moirai-2.0,0.523,0.34,0.705,0.002,-0.051,0.063
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,Chronos-Bolt,0.614,0.432,0.795,-0.003,-0.05,0.044
-Toto-1.0,Sundial-Base,0.591,0.364,0.773,0.0,-0.139,0.12
-Toto-1.0,Stat. Ensemble,0.864,0.727,1.0,0.27,0.176,0.374
-Toto-1.0,AutoARIMA,0.909,0.773,1.0,0.347,0.238,0.456
-Toto-1.0,AutoTheta,0.955,0.864,1.0,0.316,0.229,0.403
-Toto-1.0,Seasonal Naive,0.909,0.773,1.0,0.371,0.259,0.488
-Toto-1.0,Naive,0.909,0.773,1.0,0.492,0.389,0.58
-Toto-1.0,AutoETS,0.909,0.773,1.0,0.553,0.411,0.67
-Toto-1.0,Drift,0.909,0.773,1.0,0.51,0.406,0.597
-Chronos-Bolt,Chronos-2,0.091,0.0,0.227,-0.215,-0.32,-0.123
-Chronos-Bolt,TabPFN-TS,0.409,0.227,0.591,-0.1,-0.207,-0.014
-Chronos-Bolt,TiRex,0.409,0.227,0.636,-0.013,-0.043,0.016
-Chronos-Bolt,TimesFM-2.5,0.477,0.295,0.659,-0.025,-0.062,0.007
-Chronos-Bolt,Moirai-2.0,0.477,0.318,0.636,0.005,-0.022,0.035
-Chronos-Bolt,Toto-1.0,0.386,0.205,0.568,0.003,-0.046,0.048
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Sundial-Base,0.636,0.455,0.818,0.004,-0.123,0.11
-Chronos-Bolt,Stat. Ensemble,0.909,0.773,1.0,0.273,0.185,0.365
-Chronos-Bolt,AutoARIMA,0.955,0.864,1.0,0.349,0.245,0.453
-Chronos-Bolt,AutoTheta,1.0,1.0,1.0,0.318,0.237,0.403
-Chronos-Bolt,Seasonal Naive,0.955,0.864,1.0,0.373,0.266,0.484
-Chronos-Bolt,Naive,0.955,0.864,1.0,0.493,0.391,0.584
-Chronos-Bolt,AutoETS,0.955,0.864,1.0,0.555,0.43,0.666
-Chronos-Bolt,Drift,0.955,0.864,1.0,0.512,0.409,0.6
-Sundial-Base,Chronos-2,0.091,0.0,0.227,-0.22,-0.33,-0.127
-Sundial-Base,TabPFN-TS,0.409,0.227,0.591,-0.104,-0.226,0.014
-Sundial-Base,TiRex,0.318,0.136,0.5,-0.017,-0.14,0.098
-Sundial-Base,TimesFM-2.5,0.318,0.136,0.5,-0.028,-0.152,0.088
-Sundial-Base,Moirai-2.0,0.364,0.182,0.545,0.002,-0.109,0.109
-Sundial-Base,Toto-1.0,0.409,0.227,0.636,-0.0,-0.137,0.122
-Sundial-Base,Chronos-Bolt,0.364,0.182,0.545,-0.004,-0.124,0.11
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Stat. Ensemble,0.818,0.636,0.955,0.27,0.157,0.38
-Sundial-Base,AutoARIMA,0.909,0.773,1.0,0.347,0.251,0.438
-Sundial-Base,AutoTheta,0.955,0.864,1.0,0.316,0.213,0.415
-Sundial-Base,Seasonal Naive,0.955,0.864,1.0,0.371,0.263,0.473
-Sundial-Base,Naive,0.909,0.773,1.0,0.492,0.358,0.604
-Sundial-Base,AutoETS,0.909,0.773,1.0,0.553,0.427,0.666
-Sundial-Base,Drift,0.909,0.773,1.0,0.51,0.378,0.619
-Stat. Ensemble,Chronos-2,0.0,0.0,0.0,-0.671,-0.945,-0.449
-Stat. Ensemble,TabPFN-TS,0.0,0.0,0.0,-0.513,-0.749,-0.326
-Stat. Ensemble,TiRex,0.045,0.0,0.136,-0.394,-0.587,-0.239
-Stat. Ensemble,TimesFM-2.5,0.045,0.0,0.136,-0.409,-0.639,-0.24
-Stat. Ensemble,Moirai-2.0,0.091,0.0,0.227,-0.368,-0.55,-0.223
-Stat. Ensemble,Toto-1.0,0.136,0.0,0.273,-0.371,-0.596,-0.214
-Stat. Ensemble,Chronos-Bolt,0.091,0.0,0.227,-0.375,-0.575,-0.227
-Stat. Ensemble,Sundial-Base,0.182,0.045,0.364,-0.37,-0.614,-0.186
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoARIMA,0.795,0.614,0.955,0.105,0.036,0.203
-Stat. Ensemble,AutoTheta,0.727,0.544,0.909,0.062,0.019,0.105
-Stat. Ensemble,Seasonal Naive,0.795,0.636,0.955,0.138,0.07,0.222
-Stat. Ensemble,Naive,0.818,0.636,0.955,0.303,0.203,0.393
-Stat. Ensemble,AutoETS,0.909,0.773,1.0,0.388,0.219,0.54
-Stat. Ensemble,Drift,0.864,0.727,1.0,0.328,0.229,0.417
-AutoARIMA,Chronos-2,0.0,0.0,0.0,-0.867,-1.229,-0.57
-AutoARIMA,TabPFN-TS,0.045,0.0,0.136,-0.69,-0.989,-0.443
-AutoARIMA,TiRex,0.045,0.0,0.136,-0.557,-0.838,-0.343
-AutoARIMA,TimesFM-2.5,0.045,0.0,0.136,-0.574,-0.869,-0.347
-AutoARIMA,Moirai-2.0,0.045,0.0,0.136,-0.528,-0.804,-0.316
-AutoARIMA,Toto-1.0,0.091,0.0,0.227,-0.531,-0.838,-0.312
-AutoARIMA,Chronos-Bolt,0.045,0.0,0.136,-0.537,-0.827,-0.324
-AutoARIMA,Sundial-Base,0.091,0.0,0.227,-0.531,-0.778,-0.336
-AutoARIMA,Stat. Ensemble,0.205,0.045,0.386,-0.117,-0.254,-0.037
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoTheta,0.409,0.182,0.592,-0.048,-0.193,0.046
-AutoARIMA,Seasonal Naive,0.75,0.545,0.909,0.037,-0.013,0.084
-AutoARIMA,Naive,0.727,0.545,0.909,0.222,0.036,0.352
-AutoARIMA,AutoETS,0.682,0.455,0.864,0.316,0.103,0.497
-AutoARIMA,Drift,0.727,0.545,0.909,0.25,0.065,0.38
-AutoTheta,Chronos-2,0.0,0.0,0.0,-0.782,-1.071,-0.558
-AutoTheta,TabPFN-TS,0.0,0.0,0.0,-0.613,-0.85,-0.411
-AutoTheta,TiRex,0.0,0.0,0.0,-0.486,-0.683,-0.324
-AutoTheta,TimesFM-2.5,0.0,0.0,0.0,-0.503,-0.728,-0.327
-AutoTheta,Moirai-2.0,0.0,0.0,0.0,-0.458,-0.645,-0.309
-AutoTheta,Toto-1.0,0.045,0.0,0.136,-0.461,-0.676,-0.297
-AutoTheta,Chronos-Bolt,0.0,0.0,0.0,-0.466,-0.675,-0.31
-AutoTheta,Sundial-Base,0.045,0.0,0.136,-0.461,-0.709,-0.271
-AutoTheta,Stat. Ensemble,0.273,0.091,0.456,-0.066,-0.117,-0.019
-AutoTheta,AutoARIMA,0.591,0.408,0.818,0.046,-0.049,0.162
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Seasonal Naive,0.636,0.455,0.818,0.081,-0.008,0.185
-AutoTheta,Naive,0.727,0.545,0.909,0.257,0.148,0.355
-AutoTheta,AutoETS,0.773,0.591,0.955,0.347,0.171,0.503
-AutoTheta,Drift,0.773,0.591,0.955,0.284,0.177,0.38
-Seasonal Naive,Chronos-2,0.045,0.0,0.136,-0.94,-1.374,-0.616
-Seasonal Naive,TabPFN-TS,0.0,0.0,0.0,-0.756,-1.125,-0.485
-Seasonal Naive,TiRex,0.045,0.0,0.136,-0.617,-0.937,-0.386
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-0.635,-0.996,-0.389
-Seasonal Naive,Moirai-2.0,0.045,0.0,0.136,-0.587,-0.905,-0.359
-Seasonal Naive,Toto-1.0,0.091,0.0,0.227,-0.591,-0.954,-0.349
-Seasonal Naive,Chronos-Bolt,0.045,0.0,0.136,-0.596,-0.938,-0.363
-Seasonal Naive,Sundial-Base,0.045,0.0,0.136,-0.59,-0.896,-0.357
-Seasonal Naive,Stat. Ensemble,0.205,0.045,0.364,-0.16,-0.285,-0.075
-Seasonal Naive,AutoARIMA,0.25,0.091,0.455,-0.039,-0.092,0.013
-Seasonal Naive,AutoTheta,0.364,0.182,0.545,-0.088,-0.227,0.008
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Naive,0.682,0.5,0.864,0.191,0.008,0.328
-Seasonal Naive,AutoETS,0.682,0.5,0.864,0.289,0.066,0.473
-Seasonal Naive,Drift,0.682,0.5,0.864,0.221,0.038,0.355
-Naive,Chronos-2,0.045,0.0,0.136,-1.399,-1.946,-0.908
-Naive,TabPFN-TS,0.0,0.0,0.0,-1.171,-1.624,-0.777
-Naive,TiRex,0.045,0.0,0.136,-1.0,-1.421,-0.669
-Naive,TimesFM-2.5,0.045,0.0,0.136,-1.022,-1.461,-0.678
-Naive,Moirai-2.0,0.045,0.0,0.136,-0.963,-1.368,-0.643
-Naive,Toto-1.0,0.091,0.0,0.227,-0.967,-1.38,-0.637
-Naive,Chronos-Bolt,0.045,0.0,0.136,-0.974,-1.401,-0.642
-Naive,Sundial-Base,0.091,0.0,0.227,-0.967,-1.522,-0.557
-Naive,Stat. Ensemble,0.182,0.045,0.364,-0.435,-0.649,-0.254
-Naive,AutoARIMA,0.273,0.091,0.455,-0.285,-0.543,-0.037
-Naive,AutoTheta,0.273,0.091,0.455,-0.346,-0.549,-0.174
-Naive,Seasonal Naive,0.318,0.136,0.5,-0.237,-0.487,-0.008
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,AutoETS,0.545,0.363,0.727,0.121,-0.128,0.347
-Naive,Drift,0.955,0.864,1.0,0.036,0.02,0.055
-AutoETS,Chronos-2,0.045,0.0,0.136,-1.729,-2.697,-1.123
-AutoETS,TabPFN-TS,0.0,0.0,0.0,-1.47,-2.244,-0.949
-AutoETS,TiRex,0.045,0.0,0.136,-1.276,-2.025,-0.753
-AutoETS,TimesFM-2.5,0.045,0.0,0.136,-1.301,-2.071,-0.797
-AutoETS,Moirai-2.0,0.045,0.0,0.136,-1.233,-1.956,-0.742
-AutoETS,Toto-1.0,0.091,0.0,0.227,-1.238,-2.026,-0.699
-AutoETS,Chronos-Bolt,0.045,0.0,0.136,-1.246,-1.995,-0.754
-AutoETS,Sundial-Base,0.091,0.0,0.227,-1.237,-1.993,-0.744
-AutoETS,Stat. Ensemble,0.091,0.0,0.227,-0.633,-1.173,-0.281
-AutoETS,AutoARIMA,0.318,0.136,0.545,-0.462,-0.986,-0.115
-AutoETS,AutoTheta,0.227,0.045,0.409,-0.531,-1.013,-0.206
-AutoETS,Seasonal Naive,0.318,0.136,0.5,-0.407,-0.899,-0.071
-AutoETS,Naive,0.455,0.273,0.637,-0.138,-0.532,0.113
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Drift,0.591,0.364,0.774,-0.097,-0.461,0.145
-Drift,Chronos-2,0.045,0.0,0.136,-1.488,-2.076,-0.985
-Drift,TabPFN-TS,0.0,0.0,0.0,-1.252,-1.74,-0.834
-Drift,TiRex,0.045,0.0,0.136,-1.075,-1.525,-0.719
-Drift,TimesFM-2.5,0.045,0.0,0.136,-1.098,-1.556,-0.734
-Drift,Moirai-2.0,0.045,0.0,0.136,-1.036,-1.468,-0.692
-Drift,Toto-1.0,0.091,0.0,0.227,-1.041,-1.478,-0.685
-Drift,Chronos-Bolt,0.045,0.0,0.136,-1.048,-1.501,-0.693
-Drift,Sundial-Base,0.091,0.0,0.227,-1.04,-1.623,-0.608
-Drift,Stat. Ensemble,0.136,0.0,0.273,-0.489,-0.716,-0.298
-Drift,AutoARIMA,0.273,0.091,0.455,-0.333,-0.614,-0.069
-Drift,AutoTheta,0.227,0.045,0.409,-0.396,-0.613,-0.215
-Drift,Seasonal Naive,0.318,0.136,0.5,-0.283,-0.551,-0.039
-Drift,Naive,0.045,0.0,0.136,-0.037,-0.058,-0.02
-Drift,AutoETS,0.409,0.226,0.636,0.088,-0.17,0.316
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/frequency_hourly/pairwise_WQL.csv b/tables/frequency_hourly/pairwise_WQL.csv
deleted file mode 100644
index 563b8ed78709a16ad21ec8f52208e1d729fd32bb..0000000000000000000000000000000000000000
--- a/tables/frequency_hourly/pairwise_WQL.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TiRex,0.818,0.636,0.955,0.166,0.087,0.238
-Chronos-2,TimesFM-2.5,0.773,0.591,0.955,0.166,0.089,0.237
-Chronos-2,TabPFN-TS,0.864,0.682,1.0,0.113,0.056,0.166
-Chronos-2,Toto-1.0,0.818,0.636,0.955,0.189,0.107,0.27
-Chronos-2,Chronos-Bolt,1.0,1.0,1.0,0.193,0.127,0.256
-Chronos-2,Moirai-2.0,1.0,1.0,1.0,0.2,0.134,0.264
-Chronos-2,Sundial-Base,0.955,0.864,1.0,0.25,0.186,0.313
-Chronos-2,AutoARIMA,1.0,1.0,1.0,0.519,0.439,0.59
-Chronos-2,Stat. Ensemble,1.0,1.0,1.0,0.536,0.462,0.603
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.597,0.518,0.669
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.649,0.58,0.71
-Chronos-2,AutoETS,1.0,1.0,1.0,0.813,0.696,0.893
-Chronos-2,Naive,1.0,1.0,1.0,0.769,0.721,0.809
-Chronos-2,Drift,1.0,1.0,1.0,0.775,0.727,0.815
-TiRex,Chronos-2,0.182,0.045,0.364,-0.199,-0.312,-0.095
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,TimesFM-2.5,0.636,0.409,0.818,0.0,-0.041,0.034
-TiRex,TabPFN-TS,0.545,0.318,0.728,-0.064,-0.187,0.043
-TiRex,Toto-1.0,0.773,0.591,0.909,0.027,-0.023,0.065
-TiRex,Chronos-Bolt,0.773,0.591,0.909,0.032,-0.001,0.06
-TiRex,Moirai-2.0,0.818,0.636,0.955,0.041,0.019,0.061
-TiRex,Sundial-Base,0.818,0.636,0.955,0.101,-0.006,0.194
-TiRex,AutoARIMA,1.0,1.0,1.0,0.423,0.332,0.508
-TiRex,Stat. Ensemble,0.955,0.864,1.0,0.444,0.353,0.531
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.517,0.424,0.603
-TiRex,AutoTheta,1.0,1.0,1.0,0.579,0.488,0.66
-TiRex,AutoETS,1.0,1.0,1.0,0.777,0.629,0.88
-TiRex,Naive,1.0,1.0,1.0,0.723,0.654,0.778
-TiRex,Drift,1.0,1.0,1.0,0.73,0.662,0.785
-TimesFM-2.5,Chronos-2,0.227,0.045,0.409,-0.2,-0.31,-0.098
-TimesFM-2.5,TiRex,0.364,0.182,0.591,-0.0,-0.035,0.039
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TabPFN-TS,0.5,0.273,0.727,-0.065,-0.186,0.034
-TimesFM-2.5,Toto-1.0,0.523,0.34,0.727,0.027,-0.022,0.072
-TimesFM-2.5,Chronos-Bolt,0.659,0.477,0.818,0.031,0.0,0.062
-TimesFM-2.5,Moirai-2.0,0.705,0.523,0.886,0.041,-0.001,0.08
-TimesFM-2.5,Sundial-Base,0.818,0.636,0.955,0.1,-0.019,0.195
-TimesFM-2.5,AutoARIMA,1.0,1.0,1.0,0.423,0.325,0.514
-TimesFM-2.5,Stat. Ensemble,1.0,1.0,1.0,0.444,0.345,0.536
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.516,0.416,0.61
-TimesFM-2.5,AutoTheta,1.0,1.0,1.0,0.579,0.484,0.664
-TimesFM-2.5,AutoETS,1.0,1.0,1.0,0.776,0.626,0.879
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.723,0.655,0.78
-TimesFM-2.5,Drift,1.0,1.0,1.0,0.73,0.664,0.786
-TabPFN-TS,Chronos-2,0.136,0.0,0.318,-0.127,-0.199,-0.06
-TabPFN-TS,TiRex,0.455,0.272,0.682,0.06,-0.045,0.158
-TabPFN-TS,TimesFM-2.5,0.5,0.273,0.727,0.061,-0.035,0.157
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Toto-1.0,0.591,0.409,0.773,0.086,-0.028,0.2
-TabPFN-TS,Chronos-Bolt,0.591,0.408,0.818,0.09,0.007,0.178
-TabPFN-TS,Moirai-2.0,0.682,0.499,0.864,0.099,0.012,0.183
-TabPFN-TS,Sundial-Base,0.773,0.591,0.909,0.155,0.052,0.247
-TabPFN-TS,AutoARIMA,0.955,0.864,1.0,0.458,0.364,0.539
-TabPFN-TS,Stat. Ensemble,1.0,1.0,1.0,0.477,0.39,0.552
-TabPFN-TS,Seasonal Naive,1.0,1.0,1.0,0.546,0.458,0.624
-TabPFN-TS,AutoTheta,1.0,1.0,1.0,0.605,0.522,0.676
-TabPFN-TS,AutoETS,1.0,1.0,1.0,0.793,0.665,0.884
-TabPFN-TS,Naive,1.0,1.0,1.0,0.739,0.686,0.787
-TabPFN-TS,Drift,1.0,1.0,1.0,0.747,0.693,0.792
-Toto-1.0,Chronos-2,0.182,0.045,0.364,-0.233,-0.369,-0.12
-Toto-1.0,TiRex,0.227,0.091,0.409,-0.028,-0.07,0.022
-Toto-1.0,TimesFM-2.5,0.477,0.273,0.66,-0.028,-0.078,0.021
-Toto-1.0,TabPFN-TS,0.409,0.227,0.591,-0.094,-0.251,0.027
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,Chronos-Bolt,0.614,0.432,0.795,0.004,-0.046,0.053
-Toto-1.0,Moirai-2.0,0.568,0.364,0.75,0.014,-0.037,0.071
-Toto-1.0,Sundial-Base,0.727,0.545,0.909,0.075,-0.049,0.183
-Toto-1.0,AutoARIMA,0.955,0.864,1.0,0.407,0.308,0.503
-Toto-1.0,Stat. Ensemble,0.909,0.773,1.0,0.428,0.328,0.525
-Toto-1.0,Seasonal Naive,1.0,1.0,1.0,0.503,0.399,0.603
-Toto-1.0,AutoTheta,1.0,1.0,1.0,0.568,0.467,0.656
-Toto-1.0,AutoETS,0.955,0.864,1.0,0.771,0.618,0.876
-Toto-1.0,Naive,0.955,0.864,1.0,0.715,0.641,0.772
-Toto-1.0,Drift,0.955,0.864,1.0,0.723,0.651,0.779
-Chronos-Bolt,Chronos-2,0.0,0.0,0.0,-0.238,-0.344,-0.145
-Chronos-Bolt,TiRex,0.227,0.091,0.409,-0.033,-0.064,0.001
-Chronos-Bolt,TimesFM-2.5,0.341,0.182,0.523,-0.032,-0.066,-0.0
-Chronos-Bolt,TabPFN-TS,0.409,0.182,0.592,-0.099,-0.217,-0.007
-Chronos-Bolt,Toto-1.0,0.386,0.205,0.568,-0.005,-0.056,0.044
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Moirai-2.0,0.477,0.318,0.636,0.01,-0.019,0.041
-Chronos-Bolt,Sundial-Base,0.818,0.636,0.955,0.071,-0.042,0.169
-Chronos-Bolt,AutoARIMA,1.0,1.0,1.0,0.404,0.313,0.494
-Chronos-Bolt,Stat. Ensemble,1.0,1.0,1.0,0.426,0.333,0.516
-Chronos-Bolt,Seasonal Naive,1.0,1.0,1.0,0.501,0.404,0.593
-Chronos-Bolt,AutoTheta,1.0,1.0,1.0,0.566,0.476,0.649
-Chronos-Bolt,AutoETS,1.0,1.0,1.0,0.771,0.615,0.876
-Chronos-Bolt,Naive,1.0,1.0,1.0,0.714,0.646,0.768
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.721,0.656,0.775
-Moirai-2.0,Chronos-2,0.0,0.0,0.0,-0.25,-0.358,-0.155
-Moirai-2.0,TiRex,0.182,0.045,0.364,-0.043,-0.066,-0.019
-Moirai-2.0,TimesFM-2.5,0.295,0.114,0.477,-0.042,-0.087,0.001
-Moirai-2.0,TabPFN-TS,0.318,0.136,0.501,-0.11,-0.224,-0.012
-Moirai-2.0,Toto-1.0,0.432,0.25,0.636,-0.014,-0.076,0.036
-Moirai-2.0,Chronos-Bolt,0.523,0.364,0.682,-0.01,-0.042,0.019
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Sundial-Base,0.818,0.636,0.955,0.062,-0.043,0.153
-Moirai-2.0,AutoARIMA,1.0,1.0,1.0,0.398,0.306,0.484
-Moirai-2.0,Stat. Ensemble,0.955,0.864,1.0,0.42,0.325,0.51
-Moirai-2.0,Seasonal Naive,1.0,1.0,1.0,0.496,0.401,0.584
-Moirai-2.0,AutoTheta,1.0,1.0,1.0,0.561,0.472,0.645
-Moirai-2.0,AutoETS,1.0,1.0,1.0,0.769,0.612,0.876
-Moirai-2.0,Naive,1.0,1.0,1.0,0.711,0.643,0.766
-Moirai-2.0,Drift,1.0,1.0,1.0,0.719,0.65,0.774
-Sundial-Base,Chronos-2,0.045,0.0,0.136,-0.333,-0.455,-0.229
-Sundial-Base,TiRex,0.182,0.045,0.364,-0.112,-0.241,0.006
-Sundial-Base,TimesFM-2.5,0.182,0.045,0.364,-0.111,-0.243,0.018
-Sundial-Base,TabPFN-TS,0.227,0.091,0.409,-0.183,-0.328,-0.055
-Sundial-Base,Toto-1.0,0.273,0.091,0.455,-0.081,-0.225,0.047
-Sundial-Base,Chronos-Bolt,0.182,0.045,0.364,-0.077,-0.204,0.041
-Sundial-Base,Moirai-2.0,0.182,0.045,0.364,-0.066,-0.181,0.041
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,AutoARIMA,0.909,0.773,1.0,0.358,0.266,0.443
-Sundial-Base,Stat. Ensemble,0.909,0.773,1.0,0.382,0.29,0.462
-Sundial-Base,Seasonal Naive,0.955,0.864,1.0,0.462,0.369,0.545
-Sundial-Base,AutoTheta,1.0,1.0,1.0,0.532,0.445,0.608
-Sundial-Base,AutoETS,1.0,1.0,1.0,0.757,0.593,0.869
-Sundial-Base,Naive,1.0,1.0,1.0,0.692,0.617,0.752
-Sundial-Base,Drift,1.0,1.0,1.0,0.7,0.627,0.759
-AutoARIMA,Chronos-2,0.0,0.0,0.0,-1.077,-1.437,-0.782
-AutoARIMA,TiRex,0.0,0.0,0.0,-0.732,-1.032,-0.496
-AutoARIMA,TimesFM-2.5,0.0,0.0,0.0,-0.732,-1.059,-0.482
-AutoARIMA,TabPFN-TS,0.045,0.0,0.136,-0.844,-1.171,-0.573
-AutoARIMA,Toto-1.0,0.045,0.0,0.136,-0.685,-1.011,-0.446
-AutoARIMA,Chronos-Bolt,0.0,0.0,0.0,-0.677,-0.975,-0.455
-AutoARIMA,Moirai-2.0,0.0,0.0,0.0,-0.661,-0.937,-0.441
-AutoARIMA,Sundial-Base,0.091,0.0,0.227,-0.558,-0.796,-0.363
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,Stat. Ensemble,0.614,0.409,0.818,0.037,-0.004,0.081
-AutoARIMA,Seasonal Naive,0.977,0.932,1.0,0.162,0.119,0.205
-AutoARIMA,AutoTheta,0.909,0.773,1.0,0.271,0.178,0.367
-AutoARIMA,AutoETS,0.909,0.773,1.0,0.628,0.353,0.808
-AutoARIMA,Naive,0.909,0.773,1.0,0.52,0.418,0.593
-AutoARIMA,Drift,0.909,0.773,1.0,0.533,0.43,0.607
-Stat. Ensemble,Chronos-2,0.0,0.0,0.0,-1.156,-1.518,-0.859
-Stat. Ensemble,TiRex,0.045,0.0,0.136,-0.798,-1.131,-0.546
-Stat. Ensemble,TimesFM-2.5,0.0,0.0,0.0,-0.797,-1.156,-0.526
-Stat. Ensemble,TabPFN-TS,0.0,0.0,0.0,-0.913,-1.234,-0.639
-Stat. Ensemble,Toto-1.0,0.091,0.0,0.227,-0.749,-1.105,-0.488
-Stat. Ensemble,Chronos-Bolt,0.0,0.0,0.0,-0.741,-1.067,-0.499
-Stat. Ensemble,Moirai-2.0,0.045,0.0,0.136,-0.724,-1.04,-0.482
-Stat. Ensemble,Sundial-Base,0.091,0.0,0.227,-0.617,-0.859,-0.409
-Stat. Ensemble,AutoARIMA,0.386,0.182,0.591,-0.038,-0.088,0.004
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,Seasonal Naive,0.795,0.636,0.955,0.131,0.076,0.182
-Stat. Ensemble,AutoTheta,0.955,0.864,1.0,0.244,0.157,0.337
-Stat. Ensemble,AutoETS,0.955,0.818,1.0,0.621,0.344,0.806
-Stat. Ensemble,Naive,1.0,1.0,1.0,0.501,0.411,0.575
-Stat. Ensemble,Drift,1.0,1.0,1.0,0.515,0.423,0.589
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-1.48,-2.023,-1.074
-Seasonal Naive,TiRex,0.0,0.0,0.0,-1.068,-1.516,-0.736
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-1.067,-1.562,-0.712
-Seasonal Naive,TabPFN-TS,0.0,0.0,0.0,-1.201,-1.657,-0.845
-Seasonal Naive,Toto-1.0,0.0,0.0,0.0,-1.012,-1.517,-0.665
-Seasonal Naive,Chronos-Bolt,0.0,0.0,0.0,-1.003,-1.456,-0.678
-Seasonal Naive,Moirai-2.0,0.0,0.0,0.0,-0.984,-1.407,-0.67
-Seasonal Naive,Sundial-Base,0.045,0.0,0.136,-0.86,-1.199,-0.585
-Seasonal Naive,AutoARIMA,0.023,0.0,0.068,-0.194,-0.258,-0.135
-Seasonal Naive,Stat. Ensemble,0.205,0.045,0.364,-0.15,-0.223,-0.082
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,AutoTheta,0.591,0.409,0.773,0.13,0.003,0.249
-Seasonal Naive,AutoETS,0.727,0.545,0.909,0.565,0.229,0.782
-Seasonal Naive,Naive,0.864,0.682,1.0,0.426,0.302,0.517
-Seasonal Naive,Drift,0.864,0.682,1.0,0.442,0.315,0.534
-AutoTheta,Chronos-2,0.0,0.0,0.0,-1.851,-2.443,-1.382
-AutoTheta,TiRex,0.0,0.0,0.0,-1.377,-1.943,-0.953
-AutoTheta,TimesFM-2.5,0.0,0.0,0.0,-1.376,-1.975,-0.938
-AutoTheta,TabPFN-TS,0.0,0.0,0.0,-1.53,-2.088,-1.092
-AutoTheta,Toto-1.0,0.0,0.0,0.0,-1.312,-1.907,-0.876
-AutoTheta,Chronos-Bolt,0.0,0.0,0.0,-1.302,-1.85,-0.907
-AutoTheta,Moirai-2.0,0.0,0.0,0.0,-1.28,-1.816,-0.895
-AutoTheta,Sundial-Base,0.0,0.0,0.0,-1.138,-1.551,-0.801
-AutoTheta,AutoARIMA,0.091,0.0,0.227,-0.372,-0.58,-0.216
-AutoTheta,Stat. Ensemble,0.045,0.0,0.136,-0.322,-0.507,-0.187
-AutoTheta,Seasonal Naive,0.409,0.227,0.591,-0.149,-0.331,-0.003
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,AutoETS,0.591,0.364,0.773,0.513,0.154,0.751
-AutoTheta,Naive,0.773,0.591,0.909,0.341,0.203,0.442
-AutoTheta,Drift,0.773,0.591,0.909,0.359,0.225,0.46
-AutoETS,Chronos-2,0.0,0.0,0.0,-4.341,-8.33,-2.287
-AutoETS,TiRex,0.0,0.0,0.0,-3.481,-7.326,-1.692
-AutoETS,TimesFM-2.5,0.0,0.0,0.0,-3.473,-7.238,-1.675
-AutoETS,TabPFN-TS,0.0,0.0,0.0,-3.838,-7.63,-1.983
-AutoETS,Toto-1.0,0.045,0.0,0.136,-3.371,-7.047,-1.615
-AutoETS,Chronos-Bolt,0.0,0.0,0.0,-3.359,-7.036,-1.597
-AutoETS,Moirai-2.0,0.0,0.0,0.0,-3.32,-7.05,-1.576
-AutoETS,Sundial-Base,0.0,0.0,0.0,-3.117,-6.616,-1.457
-AutoETS,AutoARIMA,0.091,0.0,0.227,-1.687,-4.221,-0.546
-AutoETS,Stat. Ensemble,0.045,0.0,0.182,-1.637,-4.154,-0.525
-AutoETS,Seasonal Naive,0.273,0.091,0.455,-1.297,-3.597,-0.296
-AutoETS,AutoTheta,0.409,0.227,0.636,-1.051,-3.024,-0.182
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Naive,0.636,0.455,0.818,-0.426,-2.047,0.201
-AutoETS,Drift,0.727,0.545,0.909,-0.396,-1.976,0.224
-Naive,Chronos-2,0.0,0.0,0.0,-3.325,-4.244,-2.585
-Naive,TiRex,0.0,0.0,0.0,-2.606,-3.512,-1.888
-Naive,TimesFM-2.5,0.0,0.0,0.0,-2.605,-3.539,-1.902
-Naive,TabPFN-TS,0.0,0.0,0.0,-2.838,-3.69,-2.18
-Naive,Toto-1.0,0.045,0.0,0.136,-2.508,-3.387,-1.786
-Naive,Chronos-Bolt,0.0,0.0,0.0,-2.492,-3.309,-1.826
-Naive,Moirai-2.0,0.0,0.0,0.0,-2.459,-3.282,-1.803
-Naive,Sundial-Base,0.0,0.0,0.0,-2.244,-3.03,-1.61
-Naive,AutoARIMA,0.091,0.0,0.227,-1.082,-1.456,-0.718
-Naive,Stat. Ensemble,0.0,0.0,0.0,-1.006,-1.354,-0.699
-Naive,Seasonal Naive,0.136,0.0,0.318,-0.744,-1.072,-0.432
-Naive,AutoTheta,0.227,0.091,0.409,-0.517,-0.793,-0.255
-Naive,AutoETS,0.364,0.182,0.545,0.299,-0.251,0.672
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,1.0,1.0,1.0,0.027,0.017,0.038
-Drift,Chronos-2,0.0,0.0,0.0,-3.445,-4.405,-2.661
-Drift,TiRex,0.0,0.0,0.0,-2.707,-3.646,-1.958
-Drift,TimesFM-2.5,0.0,0.0,0.0,-2.705,-3.677,-1.978
-Drift,TabPFN-TS,0.0,0.0,0.0,-2.945,-3.816,-2.253
-Drift,Toto-1.0,0.045,0.0,0.136,-2.606,-3.534,-1.862
-Drift,Chronos-Bolt,0.0,0.0,0.0,-2.59,-3.437,-1.903
-Drift,Moirai-2.0,0.0,0.0,0.0,-2.555,-3.429,-1.858
-Drift,Sundial-Base,0.0,0.0,0.0,-2.334,-3.151,-1.678
-Drift,AutoARIMA,0.091,0.0,0.227,-1.14,-1.548,-0.753
-Drift,Stat. Ensemble,0.0,0.0,0.0,-1.062,-1.431,-0.732
-Drift,Seasonal Naive,0.136,0.0,0.318,-0.792,-1.144,-0.46
-Drift,AutoTheta,0.227,0.091,0.409,-0.559,-0.851,-0.29
-Drift,AutoETS,0.273,0.091,0.455,0.284,-0.288,0.664
-Drift,Naive,0.0,0.0,0.0,-0.028,-0.04,-0.017
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/frequency_monthly_plus/leaderboard_MASE.csv b/tables/frequency_monthly_plus/leaderboard_MASE.csv
deleted file mode 100644
index 896c1953a14b52112fc5188aec02f4b7de6d1e6c..0000000000000000000000000000000000000000
--- a/tables/frequency_monthly_plus/leaderboard_MASE.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Stat. Ensemble,84.87394957983193,31.60425731862634,0.0,54.17901169901961,0.0,0.0
-Chronos-2,79.41176470588235,30.532536224691174,0.0,0.16023483806451613,0.0,0.0
-TiRex,73.94957983193277,29.907299796780073,0.0,0.1332539193820225,0.0,0.0
-AutoETS,68.90756302521008,29.300272942864037,0.0,1.0143332196078432,0.0,0.0
-TimesFM-2.5,59.243697478991585,27.04334067358627,0.0,0.304871195505618,0.11764705882352941,0.0
-AutoARIMA,53.781512605042,26.95504973130829,0.0,4.148168638787879,0.0,0.0
-AutoTheta,50.84033613445379,24.962106226025238,0.0,0.7411717437254902,0.0,0.0
-Toto-1.0,50.0,23.870081464197433,0.0,4.43599805469697,0.11764705882352941,0.0
-TabPFN-TS,47.47899159663866,22.54132876098356,0.0,19.14966970786517,0.0,0.0
-Drift,45.378151260504204,14.172808093870426,0.0,0.4007243730392157,0.0,0.0
-Chronos-Bolt,40.54621848739495,23.41596396885234,0.0,0.11052557837078651,0.0,0.0
-Moirai-2.0,39.285714285714285,21.200363608688978,0.0,0.21779003071564282,0.17647058823529413,0.0
-Sundial-Base,23.529411764705873,14.82873276930089,0.0,7.9919304493548395,0.0,0.0
-Naive,20.168067226890756,4.657015263286168,0.0,0.4082834258823529,0.0,0.0
-Seasonal Naive,12.605042016806726,0.0,0.0,0.4017768956862745,0.0,0.0
diff --git a/tables/frequency_monthly_plus/leaderboard_SQL.csv b/tables/frequency_monthly_plus/leaderboard_SQL.csv
deleted file mode 100644
index 0614712ed0bc83215d17c37d25276e9d4874ead3..0000000000000000000000000000000000000000
--- a/tables/frequency_monthly_plus/leaderboard_SQL.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,88.65546218487397,32.50619250795804,0.0,0.16023483806451613,0.0,0.0
-TiRex,86.1344537815126,31.864956176489333,0.0,0.1332539193820225,0.0,0.0
-Stat. Ensemble,75.63025210084032,30.619627501999513,0.0,54.17901169901961,0.0,0.0
-TimesFM-2.5,62.60504201680671,27.45388712084713,0.0,0.304871195505618,0.11764705882352941,0.0
-AutoETS,62.18487394957981,23.938814370075377,0.0,1.0143332196078432,0.0,0.0
-Toto-1.0,56.30252100840336,25.30688806869693,0.0,4.43599805469697,0.11764705882352941,0.0
-TabPFN-TS,55.46218487394958,25.26055614118038,0.0,19.14966970786517,0.0,0.0
-Chronos-Bolt,51.470588235294116,25.546718740107966,0.0,0.11052557837078651,0.0,0.0
-AutoARIMA,50.0,25.353548217105605,0.0,4.148168638787879,0.0,0.0
-Moirai-2.0,43.487394957983184,22.311614614421458,0.0,0.21779003071564282,0.17647058823529413,0.0
-AutoTheta,42.85714285714285,22.773093517189103,0.0,0.7411717437254902,0.0,0.0
-Drift,31.092436974789923,7.532134668823886,0.0,0.4007243730392157,0.0,0.0
-Sundial-Base,17.64705882352941,9.65596394521091,0.0,7.9919304493548395,0.0,0.0
-Naive,13.445378151260504,-2.479358196357717,0.0,0.4082834258823529,0.0,0.0
-Seasonal Naive,13.025210084033615,0.0,0.0,0.4017768956862745,0.0,0.0
diff --git a/tables/frequency_monthly_plus/leaderboard_WAPE.csv b/tables/frequency_monthly_plus/leaderboard_WAPE.csv
deleted file mode 100644
index 7b00215fa6623e9da0823f7d46afc2d5be2eee1d..0000000000000000000000000000000000000000
--- a/tables/frequency_monthly_plus/leaderboard_WAPE.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Stat. Ensemble,73.52941176470587,31.77346976331744,0.0,54.17901169901961,0.0,0.0
-TiRex,73.52941176470587,30.081050594899338,0.0,0.1332539193820225,0.0,0.0
-Chronos-2,71.42857142857143,31.178074231641617,0.0,0.16023483806451613,0.0,0.0
-TimesFM-2.5,67.64705882352942,28.807732865723988,0.0,0.304871195505618,0.11764705882352941,0.0
-TabPFN-TS,61.344537815126046,28.918186440902517,0.0,19.14966970786517,0.0,0.0
-AutoETS,61.344537815126046,28.748363751928274,0.0,1.0143332196078432,0.0,0.0
-Toto-1.0,57.14285714285714,24.73773635509896,0.0,4.43599805469697,0.11764705882352941,0.0
-AutoARIMA,50.4201680672269,28.81554946179643,0.0,4.148168638787879,0.0,0.0
-Chronos-Bolt,46.42857142857142,21.77797102351108,0.0,0.11052557837078651,0.0,0.0
-Moirai-2.0,46.00840336134453,19.902282110003313,0.0,0.21779003071564282,0.17647058823529413,0.0
-AutoTheta,40.7563025210084,23.951462461638883,0.0,0.7411717437254902,0.0,0.0
-Drift,38.23529411764706,12.008595721613913,0.0,0.4007243730392157,0.0,0.0
-Naive,25.630252100840334,4.816376607059247,0.0,0.4082834258823529,0.0,0.0
-Sundial-Base,21.008403361344538,11.581561125483809,0.0,7.9919304493548395,0.0,0.0
-Seasonal Naive,15.546218487394956,0.0,0.0,0.4017768956862745,0.0,0.0
diff --git a/tables/frequency_monthly_plus/leaderboard_WQL.csv b/tables/frequency_monthly_plus/leaderboard_WQL.csv
deleted file mode 100644
index 8e48cf7025eb964c4f05e81e4966a6a24d0d1f68..0000000000000000000000000000000000000000
--- a/tables/frequency_monthly_plus/leaderboard_WQL.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-TiRex,80.67226890756302,34.840937215984916,0.0,0.1332539193820225,0.0,0.0
-Chronos-2,79.83193277310924,35.31685135274234,0.0,0.16023483806451613,0.0,0.0
-TimesFM-2.5,71.00840336134455,33.16119954820973,0.0,0.304871195505618,0.11764705882352941,0.0
-TabPFN-TS,66.80672268907563,33.27760916396566,0.0,19.14966970786517,0.0,0.0
-Stat. Ensemble,65.12605042016808,31.993310800171226,0.0,54.17901169901961,0.0,0.0
-Toto-1.0,63.025210084033624,29.78720066477729,0.0,4.43599805469697,0.11764705882352941,0.0
-AutoETS,56.722689075630264,30.176887545915974,0.0,1.0143332196078432,0.0,0.0
-Chronos-Bolt,54.83193277310924,27.870116986324867,0.0,0.11052557837078651,0.0,0.0
-Moirai-2.0,51.890756302521,25.33039827401239,0.0,0.21779003071564282,0.17647058823529413,0.0
-AutoARIMA,47.47899159663865,27.948988113145624,0.0,4.148168638787879,0.0,0.0
-AutoTheta,37.81512605042017,22.68721175922429,0.0,0.7411717437254902,0.0,0.0
-Drift,24.78991596638655,4.105439058231363,0.0,0.4007243730392157,0.0,0.0
-Sundial-Base,20.168067226890756,11.21483343362134,0.0,7.9919304493548395,0.0,0.0
-Seasonal Naive,15.126050420168067,0.0,0.0,0.4017768956862745,0.0,0.0
-Naive,14.705882352941174,-4.030261224151066,0.0,0.4082834258823529,0.0,0.0
diff --git a/tables/frequency_monthly_plus/pairwise_MASE.csv b/tables/frequency_monthly_plus/pairwise_MASE.csv
deleted file mode 100644
index fcd8b3c62a01ecfa7fea823edf88eba031f4e8fc..0000000000000000000000000000000000000000
--- a/tables/frequency_monthly_plus/pairwise_MASE.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,Chronos-2,0.529,0.294,0.765,0.015,-0.023,0.058
-Stat. Ensemble,TiRex,0.706,0.471,0.882,0.024,-0.009,0.06
-Stat. Ensemble,AutoETS,0.765,0.529,0.941,0.033,0.013,0.053
-Stat. Ensemble,TimesFM-2.5,0.765,0.529,0.941,0.063,0.02,0.109
-Stat. Ensemble,AutoARIMA,0.882,0.706,1.0,0.064,0.031,0.113
-Stat. Ensemble,AutoTheta,0.941,0.824,1.0,0.089,0.057,0.118
-Stat. Ensemble,Toto-1.0,0.824,0.646,1.0,0.102,0.05,0.15
-Stat. Ensemble,TabPFN-TS,0.882,0.706,1.0,0.117,0.063,0.18
-Stat. Ensemble,Drift,0.882,0.706,1.0,0.203,0.083,0.363
-Stat. Ensemble,Chronos-Bolt,0.941,0.824,1.0,0.107,0.064,0.147
-Stat. Ensemble,Moirai-2.0,0.882,0.706,1.0,0.132,0.084,0.175
-Stat. Ensemble,Sundial-Base,0.941,0.824,1.0,0.197,0.139,0.26
-Stat. Ensemble,Naive,0.941,0.824,1.0,0.283,0.17,0.419
-Stat. Ensemble,Seasonal Naive,1.0,1.0,1.0,0.316,0.229,0.413
-Chronos-2,Stat. Ensemble,0.471,0.235,0.706,-0.016,-0.062,0.023
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TiRex,0.529,0.294,0.765,0.009,-0.022,0.037
-Chronos-2,AutoETS,0.647,0.412,0.882,0.017,-0.009,0.042
-Chronos-2,TimesFM-2.5,0.706,0.471,0.882,0.048,0.01,0.084
-Chronos-2,AutoARIMA,0.765,0.529,0.941,0.049,-0.011,0.112
-Chronos-2,AutoTheta,0.706,0.471,0.882,0.074,0.014,0.122
-Chronos-2,Toto-1.0,0.706,0.471,0.941,0.088,0.015,0.151
-Chronos-2,TabPFN-TS,0.882,0.763,1.0,0.103,0.044,0.169
-Chronos-2,Drift,0.706,0.471,0.882,0.191,0.047,0.356
-Chronos-2,Chronos-Bolt,1.0,1.0,1.0,0.093,0.054,0.135
-Chronos-2,Moirai-2.0,1.0,1.0,1.0,0.118,0.064,0.171
-Chronos-2,Sundial-Base,1.0,1.0,1.0,0.184,0.14,0.229
-Chronos-2,Naive,1.0,1.0,1.0,0.271,0.157,0.409
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.305,0.224,0.397
-TiRex,Stat. Ensemble,0.294,0.118,0.529,-0.025,-0.064,0.009
-TiRex,Chronos-2,0.471,0.235,0.706,-0.009,-0.038,0.022
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,AutoETS,0.471,0.235,0.706,0.009,-0.015,0.032
-TiRex,TimesFM-2.5,0.647,0.412,0.882,0.039,0.007,0.081
-TiRex,AutoARIMA,0.647,0.412,0.882,0.04,-0.017,0.107
-TiRex,AutoTheta,0.824,0.647,1.0,0.066,0.011,0.111
-TiRex,Toto-1.0,0.706,0.471,0.882,0.079,0.016,0.137
-TiRex,TabPFN-TS,0.824,0.647,1.0,0.095,0.035,0.159
-TiRex,Drift,0.765,0.529,0.941,0.183,0.05,0.346
-TiRex,Chronos-Bolt,0.882,0.706,1.0,0.085,0.048,0.123
-TiRex,Moirai-2.0,0.941,0.824,1.0,0.11,0.06,0.164
-TiRex,Sundial-Base,0.941,0.824,1.0,0.177,0.123,0.234
-TiRex,Naive,0.941,0.824,1.0,0.265,0.146,0.405
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.299,0.202,0.402
-AutoETS,Stat. Ensemble,0.235,0.059,0.471,-0.034,-0.057,-0.013
-AutoETS,Chronos-2,0.353,0.118,0.588,-0.018,-0.043,0.009
-AutoETS,TiRex,0.529,0.294,0.765,-0.009,-0.033,0.015
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,TimesFM-2.5,0.647,0.412,0.882,0.031,-0.008,0.074
-AutoETS,AutoARIMA,0.706,0.471,0.884,0.032,-0.015,0.092
-AutoETS,AutoTheta,0.765,0.529,0.941,0.058,0.013,0.096
-AutoETS,Toto-1.0,0.706,0.471,0.941,0.071,0.011,0.13
-AutoETS,TabPFN-TS,0.647,0.412,0.824,0.087,0.03,0.153
-AutoETS,Drift,0.706,0.471,0.941,0.176,0.045,0.346
-AutoETS,Chronos-Bolt,0.765,0.529,0.941,0.077,0.039,0.114
-AutoETS,Moirai-2.0,0.765,0.529,0.941,0.103,0.052,0.148
-AutoETS,Sundial-Base,0.882,0.706,1.0,0.17,0.116,0.226
-AutoETS,Naive,0.941,0.824,1.0,0.258,0.141,0.394
-AutoETS,Seasonal Naive,1.0,1.0,1.0,0.293,0.204,0.392
-TimesFM-2.5,Stat. Ensemble,0.235,0.059,0.471,-0.067,-0.122,-0.021
-TimesFM-2.5,Chronos-2,0.294,0.118,0.529,-0.05,-0.091,-0.01
-TimesFM-2.5,TiRex,0.353,0.118,0.588,-0.041,-0.088,-0.007
-TimesFM-2.5,AutoETS,0.353,0.118,0.588,-0.032,-0.08,0.008
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,AutoARIMA,0.529,0.294,0.765,0.001,-0.051,0.043
-TimesFM-2.5,AutoTheta,0.588,0.353,0.824,0.028,-0.04,0.082
-TimesFM-2.5,Toto-1.0,0.471,0.235,0.676,0.042,-0.021,0.105
-TimesFM-2.5,TabPFN-TS,0.588,0.353,0.824,0.058,-0.01,0.13
-TimesFM-2.5,Drift,0.647,0.412,0.882,0.15,-0.005,0.332
-TimesFM-2.5,Chronos-Bolt,0.706,0.5,0.882,0.047,0.009,0.085
-TimesFM-2.5,Moirai-2.0,0.765,0.588,0.941,0.074,0.016,0.131
-TimesFM-2.5,Sundial-Base,0.941,0.824,1.0,0.143,0.095,0.2
-TimesFM-2.5,Naive,0.882,0.706,1.0,0.235,0.11,0.382
-TimesFM-2.5,Seasonal Naive,0.941,0.824,1.0,0.27,0.182,0.363
-AutoARIMA,Stat. Ensemble,0.118,0.0,0.294,-0.068,-0.128,-0.032
-AutoARIMA,Chronos-2,0.235,0.059,0.471,-0.051,-0.126,0.011
-AutoARIMA,TiRex,0.353,0.118,0.588,-0.042,-0.12,0.016
-AutoARIMA,AutoETS,0.294,0.116,0.529,-0.033,-0.101,0.015
-AutoARIMA,TimesFM-2.5,0.471,0.235,0.706,-0.001,-0.045,0.049
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoTheta,0.588,0.353,0.824,0.027,-0.031,0.078
-AutoARIMA,Toto-1.0,0.588,0.353,0.824,0.041,-0.016,0.093
-AutoARIMA,TabPFN-TS,0.529,0.294,0.765,0.057,-0.017,0.131
-AutoARIMA,Drift,0.588,0.353,0.824,0.149,0.004,0.327
-AutoARIMA,Chronos-Bolt,0.588,0.353,0.765,0.046,-0.003,0.093
-AutoARIMA,Moirai-2.0,0.588,0.353,0.824,0.073,0.008,0.132
-AutoARIMA,Sundial-Base,0.765,0.529,0.941,0.142,0.065,0.22
-AutoARIMA,Naive,0.824,0.647,1.0,0.234,0.106,0.381
-AutoARIMA,Seasonal Naive,1.0,1.0,1.0,0.27,0.184,0.362
-AutoTheta,Stat. Ensemble,0.059,0.0,0.176,-0.097,-0.134,-0.06
-AutoTheta,Chronos-2,0.294,0.118,0.529,-0.08,-0.139,-0.014
-AutoTheta,TiRex,0.176,0.0,0.353,-0.071,-0.125,-0.011
-AutoTheta,AutoETS,0.235,0.059,0.471,-0.061,-0.106,-0.013
-AutoTheta,TimesFM-2.5,0.412,0.176,0.647,-0.029,-0.09,0.038
-AutoTheta,AutoARIMA,0.412,0.176,0.647,-0.027,-0.085,0.03
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Toto-1.0,0.588,0.353,0.824,0.014,-0.047,0.067
-AutoTheta,TabPFN-TS,0.529,0.294,0.765,0.031,-0.03,0.098
-AutoTheta,Drift,0.471,0.235,0.706,0.126,0.009,0.287
-AutoTheta,Chronos-Bolt,0.588,0.353,0.824,0.02,-0.036,0.072
-AutoTheta,Moirai-2.0,0.706,0.471,0.882,0.048,-0.004,0.093
-AutoTheta,Sundial-Base,0.824,0.647,1.0,0.119,0.053,0.188
-AutoTheta,Naive,0.882,0.706,1.0,0.213,0.105,0.343
-AutoTheta,Seasonal Naive,0.941,0.824,1.0,0.25,0.156,0.35
-Toto-1.0,Stat. Ensemble,0.176,0.0,0.354,-0.113,-0.177,-0.052
-Toto-1.0,Chronos-2,0.294,0.059,0.529,-0.096,-0.177,-0.015
-Toto-1.0,TiRex,0.294,0.118,0.529,-0.086,-0.159,-0.017
-Toto-1.0,AutoETS,0.294,0.059,0.529,-0.077,-0.15,-0.011
-Toto-1.0,TimesFM-2.5,0.529,0.324,0.765,-0.043,-0.117,0.021
-Toto-1.0,AutoARIMA,0.412,0.176,0.647,-0.042,-0.102,0.016
-Toto-1.0,AutoTheta,0.412,0.176,0.647,-0.015,-0.072,0.045
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,TabPFN-TS,0.471,0.235,0.706,0.017,-0.078,0.122
-Toto-1.0,Drift,0.529,0.294,0.765,0.113,-0.022,0.272
-Toto-1.0,Chronos-Bolt,0.588,0.353,0.794,0.006,-0.053,0.066
-Toto-1.0,Moirai-2.0,0.647,0.412,0.853,0.034,-0.001,0.074
-Toto-1.0,Sundial-Base,0.706,0.471,0.884,0.106,0.015,0.205
-Toto-1.0,Naive,0.882,0.706,1.0,0.202,0.083,0.337
-Toto-1.0,Seasonal Naive,0.765,0.529,0.941,0.239,0.127,0.357
-TabPFN-TS,Stat. Ensemble,0.118,0.0,0.294,-0.133,-0.219,-0.067
-TabPFN-TS,Chronos-2,0.118,0.0,0.237,-0.115,-0.203,-0.046
-TabPFN-TS,TiRex,0.176,0.0,0.353,-0.105,-0.189,-0.037
-TabPFN-TS,AutoETS,0.353,0.176,0.588,-0.096,-0.181,-0.031
-TabPFN-TS,TimesFM-2.5,0.412,0.176,0.647,-0.062,-0.149,0.01
-TabPFN-TS,AutoARIMA,0.471,0.235,0.706,-0.06,-0.151,0.017
-TabPFN-TS,AutoTheta,0.471,0.235,0.706,-0.032,-0.108,0.029
-TabPFN-TS,Toto-1.0,0.529,0.294,0.765,-0.017,-0.139,0.072
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Drift,0.529,0.294,0.765,0.098,-0.068,0.274
-TabPFN-TS,Chronos-Bolt,0.529,0.294,0.765,-0.011,-0.112,0.063
-TabPFN-TS,Moirai-2.0,0.588,0.353,0.824,0.017,-0.098,0.096
-TabPFN-TS,Sundial-Base,0.706,0.471,0.882,0.091,0.023,0.155
-TabPFN-TS,Naive,0.706,0.471,0.884,0.188,0.042,0.333
-TabPFN-TS,Seasonal Naive,0.941,0.824,1.0,0.225,0.131,0.323
-Drift,Stat. Ensemble,0.118,0.0,0.294,-0.255,-0.571,-0.09
-Drift,Chronos-2,0.294,0.118,0.529,-0.236,-0.554,-0.05
-Drift,TiRex,0.235,0.059,0.471,-0.224,-0.528,-0.053
-Drift,AutoETS,0.294,0.059,0.529,-0.214,-0.529,-0.047
-Drift,TimesFM-2.5,0.353,0.118,0.588,-0.176,-0.496,0.005
-Drift,AutoARIMA,0.412,0.176,0.647,-0.175,-0.485,-0.004
-Drift,AutoTheta,0.529,0.294,0.765,-0.144,-0.403,-0.009
-Drift,Toto-1.0,0.471,0.235,0.706,-0.127,-0.373,0.021
-Drift,TabPFN-TS,0.471,0.235,0.706,-0.108,-0.378,0.064
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
-Drift,Chronos-Bolt,0.529,0.294,0.765,-0.121,-0.412,0.04
-Drift,Moirai-2.0,0.588,0.353,0.824,-0.089,-0.335,0.061
-Drift,Sundial-Base,0.706,0.471,0.882,-0.008,-0.301,0.168
-Drift,Naive,0.647,0.412,0.882,0.1,0.022,0.18
-Drift,Seasonal Naive,0.706,0.471,0.882,0.142,-0.129,0.318
-Chronos-Bolt,Stat. Ensemble,0.059,0.0,0.176,-0.12,-0.172,-0.068
-Chronos-Bolt,Chronos-2,0.0,0.0,0.0,-0.102,-0.156,-0.057
-Chronos-Bolt,TiRex,0.118,0.0,0.294,-0.093,-0.141,-0.051
-Chronos-Bolt,AutoETS,0.235,0.059,0.471,-0.083,-0.129,-0.041
-Chronos-Bolt,TimesFM-2.5,0.294,0.118,0.5,-0.05,-0.093,-0.009
-Chronos-Bolt,AutoARIMA,0.412,0.235,0.647,-0.048,-0.103,0.003
-Chronos-Bolt,AutoTheta,0.412,0.176,0.647,-0.021,-0.077,0.035
-Chronos-Bolt,Toto-1.0,0.412,0.206,0.647,-0.006,-0.07,0.05
-Chronos-Bolt,TabPFN-TS,0.471,0.235,0.706,0.011,-0.068,0.101
-Chronos-Bolt,Drift,0.471,0.235,0.706,0.108,-0.042,0.292
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Moirai-2.0,0.382,0.176,0.588,0.028,-0.011,0.071
-Chronos-Bolt,Sundial-Base,0.824,0.647,1.0,0.101,0.039,0.16
-Chronos-Bolt,Naive,0.824,0.647,1.0,0.197,0.072,0.344
-Chronos-Bolt,Seasonal Naive,0.765,0.588,0.941,0.234,0.137,0.333
-Moirai-2.0,Stat. Ensemble,0.118,0.0,0.294,-0.152,-0.212,-0.091
-Moirai-2.0,Chronos-2,0.0,0.0,0.0,-0.134,-0.206,-0.068
-Moirai-2.0,TiRex,0.059,0.0,0.176,-0.124,-0.196,-0.064
-Moirai-2.0,AutoETS,0.235,0.059,0.471,-0.115,-0.174,-0.055
-Moirai-2.0,TimesFM-2.5,0.235,0.059,0.412,-0.08,-0.151,-0.016
-Moirai-2.0,AutoARIMA,0.412,0.176,0.647,-0.079,-0.152,-0.008
-Moirai-2.0,AutoTheta,0.294,0.118,0.529,-0.05,-0.103,0.004
-Moirai-2.0,Toto-1.0,0.353,0.147,0.588,-0.035,-0.08,0.001
-Moirai-2.0,TabPFN-TS,0.412,0.176,0.647,-0.017,-0.106,0.089
-Moirai-2.0,Drift,0.412,0.176,0.647,0.082,-0.065,0.251
-Moirai-2.0,Chronos-Bolt,0.618,0.412,0.824,-0.029,-0.077,0.011
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Sundial-Base,0.824,0.647,1.0,0.075,0.002,0.145
-Moirai-2.0,Naive,0.824,0.647,1.0,0.174,0.063,0.305
-Moirai-2.0,Seasonal Naive,0.706,0.471,0.941,0.212,0.107,0.323
-Sundial-Base,Stat. Ensemble,0.059,0.0,0.176,-0.245,-0.352,-0.161
-Sundial-Base,Chronos-2,0.0,0.0,0.0,-0.226,-0.297,-0.163
-Sundial-Base,TiRex,0.059,0.0,0.176,-0.215,-0.305,-0.14
-Sundial-Base,AutoETS,0.118,0.0,0.294,-0.205,-0.291,-0.131
-Sundial-Base,TimesFM-2.5,0.059,0.0,0.176,-0.167,-0.25,-0.105
-Sundial-Base,AutoARIMA,0.235,0.059,0.471,-0.166,-0.282,-0.07
-Sundial-Base,AutoTheta,0.176,0.0,0.353,-0.135,-0.232,-0.055
-Sundial-Base,Toto-1.0,0.294,0.116,0.529,-0.119,-0.258,-0.016
-Sundial-Base,TabPFN-TS,0.294,0.118,0.529,-0.1,-0.183,-0.023
-Sundial-Base,Drift,0.294,0.118,0.529,0.008,-0.202,0.231
-Sundial-Base,Chronos-Bolt,0.176,0.0,0.353,-0.112,-0.19,-0.041
-Sundial-Base,Moirai-2.0,0.176,0.0,0.353,-0.081,-0.17,-0.002
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Naive,0.588,0.353,0.824,0.107,-0.039,0.286
-Sundial-Base,Seasonal Naive,0.765,0.529,0.941,0.148,0.059,0.245
-Naive,Stat. Ensemble,0.059,0.0,0.176,-0.394,-0.722,-0.204
-Naive,Chronos-2,0.0,0.0,0.0,-0.372,-0.693,-0.187
-Naive,TiRex,0.059,0.0,0.176,-0.36,-0.682,-0.171
-Naive,AutoETS,0.059,0.0,0.176,-0.349,-0.649,-0.164
-Naive,TimesFM-2.5,0.118,0.0,0.294,-0.307,-0.618,-0.124
-Naive,AutoARIMA,0.176,0.0,0.353,-0.305,-0.614,-0.118
-Naive,AutoTheta,0.118,0.0,0.294,-0.271,-0.522,-0.118
-Naive,Toto-1.0,0.118,0.0,0.294,-0.252,-0.509,-0.09
-Naive,TabPFN-TS,0.294,0.116,0.529,-0.231,-0.498,-0.044
-Naive,Drift,0.353,0.118,0.588,-0.111,-0.219,-0.023
-Naive,Chronos-Bolt,0.176,0.0,0.353,-0.245,-0.524,-0.077
-Naive,Moirai-2.0,0.176,0.0,0.353,-0.21,-0.44,-0.067
-Naive,Sundial-Base,0.412,0.176,0.647,-0.119,-0.401,0.038
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Seasonal Naive,0.706,0.5,0.882,0.047,-0.198,0.201
-Seasonal Naive,Stat. Ensemble,0.0,0.0,0.0,-0.462,-0.703,-0.297
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-0.44,-0.659,-0.288
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.427,-0.672,-0.253
-Seasonal Naive,AutoETS,0.0,0.0,0.0,-0.414,-0.645,-0.256
-Seasonal Naive,TimesFM-2.5,0.059,0.0,0.176,-0.371,-0.571,-0.222
-Seasonal Naive,AutoARIMA,0.0,0.0,0.0,-0.369,-0.566,-0.225
-Seasonal Naive,AutoTheta,0.059,0.0,0.176,-0.333,-0.538,-0.184
-Seasonal Naive,Toto-1.0,0.235,0.059,0.471,-0.314,-0.555,-0.145
-Seasonal Naive,TabPFN-TS,0.059,0.0,0.176,-0.291,-0.476,-0.15
-Seasonal Naive,Drift,0.294,0.118,0.529,-0.165,-0.467,0.114
-Seasonal Naive,Chronos-Bolt,0.235,0.059,0.412,-0.306,-0.5,-0.158
-Seasonal Naive,Moirai-2.0,0.294,0.059,0.529,-0.269,-0.477,-0.12
-Seasonal Naive,Sundial-Base,0.235,0.059,0.471,-0.174,-0.324,-0.063
-Seasonal Naive,Naive,0.294,0.118,0.5,-0.049,-0.251,0.166
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/frequency_monthly_plus/pairwise_SQL.csv b/tables/frequency_monthly_plus/pairwise_SQL.csv
deleted file mode 100644
index 0767415a55a4e445c962ba03d9cce010f6e17aa2..0000000000000000000000000000000000000000
--- a/tables/frequency_monthly_plus/pairwise_SQL.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TiRex,0.471,0.235,0.706,0.009,-0.018,0.04
-Chronos-2,Stat. Ensemble,0.882,0.706,1.0,0.027,-0.014,0.065
-Chronos-2,TimesFM-2.5,0.882,0.706,1.0,0.07,0.036,0.102
-Chronos-2,AutoETS,0.824,0.647,1.0,0.113,0.036,0.23
-Chronos-2,Toto-1.0,0.765,0.529,0.941,0.096,0.028,0.159
-Chronos-2,TabPFN-TS,0.882,0.763,1.0,0.097,0.05,0.149
-Chronos-2,Chronos-Bolt,1.0,1.0,1.0,0.093,0.051,0.143
-Chronos-2,AutoARIMA,0.824,0.647,1.0,0.096,0.034,0.161
-Chronos-2,Moirai-2.0,1.0,1.0,1.0,0.131,0.076,0.187
-Chronos-2,AutoTheta,0.941,0.824,1.0,0.126,0.071,0.172
-Chronos-2,Drift,0.941,0.824,1.0,0.27,0.122,0.415
-Chronos-2,Sundial-Base,1.0,1.0,1.0,0.253,0.207,0.298
-Chronos-2,Naive,1.0,1.0,1.0,0.341,0.235,0.459
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.325,0.249,0.408
-TiRex,Chronos-2,0.529,0.294,0.765,-0.01,-0.042,0.018
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,Stat. Ensemble,0.765,0.529,0.941,0.018,-0.02,0.052
-TiRex,TimesFM-2.5,0.824,0.588,1.0,0.061,0.026,0.097
-TiRex,AutoETS,0.765,0.529,0.941,0.104,0.026,0.221
-TiRex,Toto-1.0,0.765,0.529,0.941,0.088,0.031,0.141
-TiRex,TabPFN-TS,0.882,0.706,1.0,0.088,0.04,0.138
-TiRex,Chronos-Bolt,0.882,0.706,1.0,0.085,0.047,0.123
-TiRex,AutoARIMA,0.824,0.647,1.0,0.087,0.031,0.154
-TiRex,Moirai-2.0,0.941,0.824,1.0,0.123,0.074,0.174
-TiRex,AutoTheta,0.941,0.824,1.0,0.118,0.069,0.161
-TiRex,Drift,0.941,0.824,1.0,0.263,0.132,0.401
-TiRex,Sundial-Base,1.0,1.0,1.0,0.246,0.193,0.298
-TiRex,Naive,1.0,1.0,1.0,0.335,0.234,0.447
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.319,0.231,0.411
-Stat. Ensemble,Chronos-2,0.118,0.0,0.294,-0.028,-0.07,0.014
-Stat. Ensemble,TiRex,0.235,0.059,0.471,-0.018,-0.055,0.02
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,TimesFM-2.5,0.706,0.471,0.882,0.044,0.004,0.088
-Stat. Ensemble,AutoETS,0.647,0.412,0.882,0.088,0.015,0.204
-Stat. Ensemble,Toto-1.0,0.765,0.529,0.941,0.071,0.018,0.123
-Stat. Ensemble,TabPFN-TS,0.706,0.471,0.882,0.072,0.031,0.118
-Stat. Ensemble,Chronos-Bolt,0.824,0.646,1.0,0.068,0.028,0.108
-Stat. Ensemble,AutoARIMA,0.882,0.706,1.0,0.071,0.037,0.121
-Stat. Ensemble,Moirai-2.0,0.824,0.646,1.0,0.107,0.058,0.153
-Stat. Ensemble,AutoTheta,0.941,0.824,1.0,0.102,0.07,0.134
-Stat. Ensemble,Drift,0.941,0.824,1.0,0.25,0.118,0.4
-Stat. Ensemble,Sundial-Base,1.0,1.0,1.0,0.232,0.176,0.291
-Stat. Ensemble,Naive,1.0,1.0,1.0,0.323,0.219,0.449
-Stat. Ensemble,Seasonal Naive,1.0,1.0,1.0,0.306,0.225,0.392
-TimesFM-2.5,Chronos-2,0.118,0.0,0.294,-0.075,-0.114,-0.038
-TimesFM-2.5,TiRex,0.176,0.0,0.412,-0.065,-0.107,-0.027
-TimesFM-2.5,Stat. Ensemble,0.294,0.118,0.529,-0.046,-0.096,-0.004
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,AutoETS,0.529,0.294,0.765,0.046,-0.046,0.181
-TimesFM-2.5,Toto-1.0,0.471,0.235,0.676,0.029,-0.036,0.091
-TimesFM-2.5,TabPFN-TS,0.588,0.353,0.824,0.029,-0.028,0.087
-TimesFM-2.5,Chronos-Bolt,0.706,0.5,0.882,0.026,-0.013,0.066
-TimesFM-2.5,AutoARIMA,0.706,0.471,0.941,0.028,-0.029,0.079
-TimesFM-2.5,Moirai-2.0,0.706,0.5,0.882,0.066,0.01,0.122
-TimesFM-2.5,AutoTheta,0.765,0.588,0.941,0.061,0.0,0.111
-TimesFM-2.5,Drift,0.824,0.647,1.0,0.215,0.056,0.38
-TimesFM-2.5,Sundial-Base,1.0,1.0,1.0,0.197,0.153,0.247
-TimesFM-2.5,Naive,0.941,0.824,1.0,0.292,0.176,0.424
-TimesFM-2.5,Seasonal Naive,0.941,0.824,1.0,0.275,0.193,0.356
-AutoETS,Chronos-2,0.176,0.0,0.353,-0.127,-0.299,-0.038
-AutoETS,TiRex,0.235,0.059,0.471,-0.116,-0.284,-0.026
-AutoETS,Stat. Ensemble,0.353,0.118,0.588,-0.096,-0.256,-0.016
-AutoETS,TimesFM-2.5,0.471,0.235,0.706,-0.048,-0.22,0.044
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Toto-1.0,0.588,0.353,0.824,-0.018,-0.214,0.088
-AutoETS,TabPFN-TS,0.588,0.353,0.824,-0.018,-0.199,0.087
-AutoETS,Chronos-Bolt,0.706,0.471,0.882,-0.022,-0.206,0.069
-AutoETS,AutoARIMA,0.588,0.353,0.824,-0.019,-0.198,0.09
-AutoETS,Moirai-2.0,0.706,0.471,0.882,0.021,-0.153,0.117
-AutoETS,AutoTheta,0.706,0.471,0.882,0.015,-0.155,0.106
-AutoETS,Drift,0.824,0.647,1.0,0.177,-0.054,0.366
-AutoETS,Sundial-Base,0.882,0.706,1.0,0.158,0.016,0.246
-AutoETS,Naive,0.941,0.824,1.0,0.258,0.073,0.414
-AutoETS,Seasonal Naive,0.941,0.824,1.0,0.239,0.062,0.359
-Toto-1.0,Chronos-2,0.235,0.059,0.471,-0.107,-0.189,-0.028
-Toto-1.0,TiRex,0.235,0.059,0.471,-0.096,-0.164,-0.032
-Toto-1.0,Stat. Ensemble,0.235,0.059,0.471,-0.077,-0.141,-0.018
-Toto-1.0,TimesFM-2.5,0.529,0.324,0.765,-0.03,-0.101,0.035
-Toto-1.0,AutoETS,0.412,0.176,0.647,0.018,-0.097,0.176
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,TabPFN-TS,0.471,0.235,0.706,0.001,-0.082,0.091
-Toto-1.0,Chronos-Bolt,0.529,0.294,0.735,-0.003,-0.058,0.054
-Toto-1.0,AutoARIMA,0.588,0.353,0.824,-0.001,-0.063,0.061
-Toto-1.0,Moirai-2.0,0.647,0.412,0.853,0.039,0.004,0.077
-Toto-1.0,AutoTheta,0.588,0.353,0.824,0.033,-0.026,0.095
-Toto-1.0,Drift,0.824,0.647,1.0,0.192,0.063,0.332
-Toto-1.0,Sundial-Base,0.824,0.647,1.0,0.173,0.092,0.263
-Toto-1.0,Naive,0.941,0.824,1.0,0.271,0.173,0.387
-Toto-1.0,Seasonal Naive,0.824,0.647,1.0,0.253,0.145,0.364
-TabPFN-TS,Chronos-2,0.118,0.0,0.237,-0.107,-0.175,-0.052
-TabPFN-TS,TiRex,0.118,0.0,0.294,-0.097,-0.16,-0.042
-TabPFN-TS,Stat. Ensemble,0.294,0.118,0.529,-0.077,-0.134,-0.032
-TabPFN-TS,TimesFM-2.5,0.412,0.176,0.647,-0.03,-0.095,0.028
-TabPFN-TS,AutoETS,0.412,0.176,0.647,0.017,-0.095,0.166
-TabPFN-TS,Toto-1.0,0.529,0.294,0.765,-0.001,-0.1,0.076
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Chronos-Bolt,0.529,0.294,0.765,-0.004,-0.082,0.057
-TabPFN-TS,AutoARIMA,0.588,0.353,0.824,-0.001,-0.07,0.066
-TabPFN-TS,Moirai-2.0,0.647,0.412,0.882,0.038,-0.052,0.104
-TabPFN-TS,AutoTheta,0.647,0.412,0.882,0.032,-0.019,0.075
-TabPFN-TS,Drift,0.647,0.412,0.882,0.192,0.04,0.354
-TabPFN-TS,Sundial-Base,0.941,0.824,1.0,0.173,0.118,0.227
-TabPFN-TS,Naive,0.882,0.706,1.0,0.271,0.152,0.396
-TabPFN-TS,Seasonal Naive,1.0,1.0,1.0,0.253,0.171,0.336
-Chronos-Bolt,Chronos-2,0.0,0.0,0.0,-0.103,-0.166,-0.054
-Chronos-Bolt,TiRex,0.118,0.0,0.294,-0.093,-0.14,-0.05
-Chronos-Bolt,Stat. Ensemble,0.176,0.0,0.354,-0.073,-0.121,-0.029
-Chronos-Bolt,TimesFM-2.5,0.294,0.118,0.5,-0.026,-0.071,0.013
-Chronos-Bolt,AutoETS,0.294,0.118,0.529,0.021,-0.074,0.171
-Chronos-Bolt,Toto-1.0,0.471,0.265,0.706,0.003,-0.057,0.054
-Chronos-Bolt,TabPFN-TS,0.471,0.235,0.706,0.004,-0.061,0.076
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,AutoARIMA,0.588,0.353,0.824,0.003,-0.054,0.058
-Chronos-Bolt,Moirai-2.0,0.559,0.353,0.765,0.042,0.006,0.081
-Chronos-Bolt,AutoTheta,0.647,0.412,0.882,0.036,-0.02,0.092
-Chronos-Bolt,Drift,0.824,0.647,1.0,0.195,0.05,0.353
-Chronos-Bolt,Sundial-Base,0.941,0.824,1.0,0.176,0.114,0.235
-Chronos-Bolt,Naive,0.941,0.824,1.0,0.273,0.173,0.401
-Chronos-Bolt,Seasonal Naive,0.882,0.706,1.0,0.255,0.166,0.347
-AutoARIMA,Chronos-2,0.176,0.0,0.353,-0.106,-0.192,-0.035
-AutoARIMA,TiRex,0.176,0.0,0.353,-0.096,-0.182,-0.032
-AutoARIMA,Stat. Ensemble,0.118,0.0,0.294,-0.076,-0.138,-0.038
-AutoARIMA,TimesFM-2.5,0.294,0.059,0.529,-0.029,-0.086,0.028
-AutoARIMA,AutoETS,0.412,0.176,0.647,0.019,-0.099,0.165
-AutoARIMA,Toto-1.0,0.412,0.176,0.647,0.001,-0.065,0.059
-AutoARIMA,TabPFN-TS,0.412,0.176,0.647,0.001,-0.07,0.066
-AutoARIMA,Chronos-Bolt,0.412,0.176,0.647,-0.003,-0.061,0.051
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,Moirai-2.0,0.529,0.294,0.765,0.039,-0.039,0.105
-AutoARIMA,AutoTheta,0.588,0.353,0.824,0.033,-0.028,0.089
-AutoARIMA,Drift,0.706,0.471,0.882,0.193,0.041,0.366
-AutoARIMA,Sundial-Base,0.824,0.647,0.943,0.174,0.091,0.254
-AutoARIMA,Naive,0.941,0.824,1.0,0.272,0.149,0.408
-AutoARIMA,Seasonal Naive,1.0,1.0,1.0,0.254,0.174,0.333
-Moirai-2.0,Chronos-2,0.0,0.0,0.0,-0.151,-0.23,-0.082
-Moirai-2.0,TiRex,0.059,0.0,0.176,-0.14,-0.211,-0.08
-Moirai-2.0,Stat. Ensemble,0.176,0.0,0.354,-0.12,-0.181,-0.062
-Moirai-2.0,TimesFM-2.5,0.294,0.118,0.5,-0.071,-0.14,-0.01
-Moirai-2.0,AutoETS,0.294,0.118,0.529,-0.021,-0.133,0.133
-Moirai-2.0,Toto-1.0,0.353,0.147,0.588,-0.04,-0.083,-0.004
-Moirai-2.0,TabPFN-TS,0.353,0.118,0.588,-0.039,-0.116,0.049
-Moirai-2.0,Chronos-Bolt,0.441,0.235,0.647,-0.043,-0.088,-0.006
-Moirai-2.0,AutoARIMA,0.471,0.235,0.706,-0.041,-0.118,0.038
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,AutoTheta,0.471,0.235,0.706,-0.006,-0.057,0.049
-Moirai-2.0,Drift,0.706,0.471,0.882,0.16,0.013,0.314
-Moirai-2.0,Sundial-Base,0.824,0.647,1.0,0.14,0.073,0.208
-Moirai-2.0,Naive,0.882,0.706,1.0,0.242,0.146,0.359
-Moirai-2.0,Seasonal Naive,0.765,0.529,0.941,0.223,0.125,0.328
-AutoTheta,Chronos-2,0.059,0.0,0.176,-0.144,-0.208,-0.076
-AutoTheta,TiRex,0.059,0.0,0.176,-0.133,-0.193,-0.074
-AutoTheta,Stat. Ensemble,0.059,0.0,0.176,-0.113,-0.155,-0.075
-AutoTheta,TimesFM-2.5,0.235,0.059,0.412,-0.065,-0.125,-0.0
-AutoTheta,AutoETS,0.294,0.118,0.529,-0.015,-0.118,0.134
-AutoTheta,Toto-1.0,0.412,0.176,0.647,-0.034,-0.105,0.025
-AutoTheta,TabPFN-TS,0.353,0.118,0.588,-0.033,-0.081,0.019
-AutoTheta,Chronos-Bolt,0.353,0.118,0.588,-0.037,-0.101,0.019
-AutoTheta,AutoARIMA,0.412,0.176,0.647,-0.035,-0.098,0.027
-AutoTheta,Moirai-2.0,0.529,0.294,0.765,0.006,-0.052,0.054
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Drift,0.471,0.235,0.706,0.165,0.024,0.317
-AutoTheta,Sundial-Base,0.824,0.647,1.0,0.145,0.082,0.211
-AutoTheta,Naive,1.0,1.0,1.0,0.246,0.148,0.371
-AutoTheta,Seasonal Naive,0.941,0.824,1.0,0.228,0.148,0.317
-Drift,Chronos-2,0.059,0.0,0.176,-0.37,-0.711,-0.139
-Drift,TiRex,0.059,0.0,0.176,-0.357,-0.671,-0.152
-Drift,Stat. Ensemble,0.059,0.0,0.176,-0.333,-0.665,-0.134
-Drift,TimesFM-2.5,0.176,0.0,0.353,-0.275,-0.613,-0.059
-Drift,AutoETS,0.176,0.0,0.353,-0.216,-0.578,0.052
-Drift,Toto-1.0,0.176,0.0,0.353,-0.238,-0.497,-0.067
-Drift,TabPFN-TS,0.353,0.118,0.588,-0.237,-0.547,-0.042
-Drift,Chronos-Bolt,0.176,0.0,0.353,-0.242,-0.546,-0.053
-Drift,AutoARIMA,0.294,0.118,0.529,-0.239,-0.577,-0.043
-Drift,Moirai-2.0,0.294,0.118,0.529,-0.19,-0.458,-0.013
-Drift,AutoTheta,0.529,0.294,0.765,-0.197,-0.465,-0.024
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
-Drift,Sundial-Base,0.706,0.471,0.882,-0.024,-0.32,0.166
-Drift,Naive,0.647,0.412,0.882,0.098,0.021,0.176
-Drift,Seasonal Naive,0.647,0.412,0.882,0.075,-0.217,0.272
-Sundial-Base,Chronos-2,0.0,0.0,0.0,-0.339,-0.424,-0.261
-Sundial-Base,TiRex,0.0,0.0,0.0,-0.326,-0.426,-0.24
-Sundial-Base,Stat. Ensemble,0.0,0.0,0.0,-0.302,-0.411,-0.214
-Sundial-Base,TimesFM-2.5,0.0,0.0,0.0,-0.245,-0.328,-0.181
-Sundial-Base,AutoETS,0.118,0.0,0.294,-0.188,-0.327,-0.016
-Sundial-Base,Toto-1.0,0.176,0.0,0.353,-0.21,-0.357,-0.102
-Sundial-Base,TabPFN-TS,0.059,0.0,0.176,-0.209,-0.293,-0.134
-Sundial-Base,Chronos-Bolt,0.059,0.0,0.176,-0.213,-0.307,-0.129
-Sundial-Base,AutoARIMA,0.176,0.057,0.353,-0.21,-0.341,-0.1
-Sundial-Base,Moirai-2.0,0.176,0.0,0.353,-0.163,-0.262,-0.079
-Sundial-Base,AutoTheta,0.176,0.0,0.353,-0.17,-0.268,-0.09
-Sundial-Base,Drift,0.294,0.118,0.529,0.023,-0.198,0.242
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Naive,0.588,0.353,0.824,0.118,-0.026,0.284
-Sundial-Base,Seasonal Naive,0.647,0.412,0.882,0.097,-0.0,0.199
-Naive,Chronos-2,0.0,0.0,0.0,-0.518,-0.849,-0.307
-Naive,TiRex,0.0,0.0,0.0,-0.504,-0.808,-0.305
-Naive,Stat. Ensemble,0.0,0.0,0.0,-0.477,-0.814,-0.281
-Naive,TimesFM-2.5,0.059,0.0,0.176,-0.413,-0.737,-0.214
-Naive,AutoETS,0.059,0.0,0.176,-0.347,-0.706,-0.079
-Naive,Toto-1.0,0.059,0.0,0.176,-0.372,-0.632,-0.209
-Naive,TabPFN-TS,0.118,0.0,0.294,-0.371,-0.656,-0.179
-Naive,Chronos-Bolt,0.059,0.0,0.176,-0.376,-0.669,-0.209
-Naive,AutoARIMA,0.059,0.0,0.176,-0.373,-0.688,-0.175
-Naive,Moirai-2.0,0.118,0.0,0.294,-0.319,-0.559,-0.171
-Naive,AutoTheta,0.0,0.0,0.0,-0.327,-0.589,-0.174
-Naive,Drift,0.353,0.118,0.588,-0.108,-0.214,-0.022
-Naive,Sundial-Base,0.412,0.176,0.647,-0.134,-0.396,0.025
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Seasonal Naive,0.588,0.353,0.794,-0.025,-0.289,0.149
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-0.482,-0.689,-0.331
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.468,-0.697,-0.301
-Seasonal Naive,Stat. Ensemble,0.0,0.0,0.0,-0.441,-0.645,-0.29
-Seasonal Naive,TimesFM-2.5,0.059,0.0,0.176,-0.378,-0.553,-0.239
-Seasonal Naive,AutoETS,0.059,0.0,0.176,-0.315,-0.56,-0.066
-Seasonal Naive,Toto-1.0,0.176,0.0,0.353,-0.339,-0.573,-0.17
-Seasonal Naive,TabPFN-TS,0.0,0.0,0.0,-0.338,-0.506,-0.207
-Seasonal Naive,Chronos-Bolt,0.118,0.0,0.294,-0.343,-0.531,-0.199
-Seasonal Naive,AutoARIMA,0.0,0.0,0.0,-0.34,-0.5,-0.211
-Seasonal Naive,Moirai-2.0,0.235,0.059,0.471,-0.287,-0.488,-0.143
-Seasonal Naive,AutoTheta,0.059,0.0,0.176,-0.295,-0.464,-0.174
-Seasonal Naive,Drift,0.353,0.118,0.588,-0.081,-0.374,0.178
-Seasonal Naive,Sundial-Base,0.353,0.118,0.588,-0.107,-0.248,0.0
-Seasonal Naive,Naive,0.412,0.206,0.647,0.024,-0.175,0.224
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/frequency_monthly_plus/pairwise_WAPE.csv b/tables/frequency_monthly_plus/pairwise_WAPE.csv
deleted file mode 100644
index bfb56577d9ad1c587acf7f6cf2eecbdcd9ff5b1a..0000000000000000000000000000000000000000
--- a/tables/frequency_monthly_plus/pairwise_WAPE.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,Stat. Ensemble,0.529,0.294,0.765,-0.025,-0.112,0.041
-TiRex,Chronos-2,0.529,0.294,0.765,-0.016,-0.075,0.03
-TiRex,TimesFM-2.5,0.647,0.412,0.824,0.018,-0.018,0.05
-TiRex,TabPFN-TS,0.765,0.529,0.941,0.016,-0.101,0.105
-TiRex,AutoETS,0.588,0.353,0.824,0.019,-0.038,0.072
-TiRex,Toto-1.0,0.647,0.412,0.882,0.071,0.016,0.12
-TiRex,AutoARIMA,0.588,0.353,0.824,0.018,-0.076,0.095
-TiRex,Chronos-Bolt,0.882,0.706,1.0,0.106,0.053,0.159
-TiRex,Moirai-2.0,0.941,0.824,1.0,0.127,0.058,0.195
-TiRex,AutoTheta,0.706,0.471,0.941,0.081,-0.052,0.175
-TiRex,Drift,0.765,0.529,0.941,0.205,0.015,0.38
-TiRex,Naive,0.882,0.706,1.0,0.265,0.099,0.427
-TiRex,Sundial-Base,0.882,0.706,1.0,0.209,0.136,0.275
-TiRex,Seasonal Naive,0.941,0.824,1.0,0.301,0.182,0.409
-Stat. Ensemble,TiRex,0.471,0.235,0.706,0.024,-0.042,0.101
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,Chronos-2,0.294,0.118,0.529,0.009,-0.05,0.086
-Stat. Ensemble,TimesFM-2.5,0.471,0.235,0.706,0.042,-0.027,0.126
-Stat. Ensemble,TabPFN-TS,0.529,0.294,0.765,0.04,-0.018,0.102
-Stat. Ensemble,AutoETS,0.765,0.529,0.941,0.042,0.01,0.084
-Stat. Ensemble,Toto-1.0,0.706,0.471,0.882,0.093,0.016,0.162
-Stat. Ensemble,AutoARIMA,0.824,0.647,1.0,0.042,0.002,0.075
-Stat. Ensemble,Chronos-Bolt,0.824,0.646,1.0,0.128,0.047,0.207
-Stat. Ensemble,Moirai-2.0,0.706,0.471,0.882,0.148,0.066,0.23
-Stat. Ensemble,AutoTheta,0.941,0.824,1.0,0.103,0.036,0.164
-Stat. Ensemble,Drift,0.824,0.647,1.0,0.225,0.074,0.398
-Stat. Ensemble,Naive,0.941,0.824,1.0,0.283,0.133,0.437
-Stat. Ensemble,Sundial-Base,1.0,1.0,1.0,0.228,0.145,0.31
-Stat. Ensemble,Seasonal Naive,1.0,1.0,1.0,0.318,0.224,0.401
-Chronos-2,TiRex,0.471,0.235,0.706,0.016,-0.031,0.069
-Chronos-2,Stat. Ensemble,0.706,0.471,0.882,-0.009,-0.095,0.047
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TimesFM-2.5,0.529,0.294,0.765,0.033,-0.017,0.094
-Chronos-2,TabPFN-TS,0.647,0.412,0.824,0.032,-0.07,0.112
-Chronos-2,AutoETS,0.647,0.412,0.882,0.034,-0.011,0.074
-Chronos-2,Toto-1.0,0.588,0.353,0.824,0.086,0.002,0.159
-Chronos-2,AutoARIMA,0.706,0.471,0.882,0.033,-0.056,0.101
-Chronos-2,Chronos-Bolt,0.765,0.529,0.941,0.12,0.04,0.2
-Chronos-2,Moirai-2.0,0.706,0.471,0.882,0.141,0.054,0.225
-Chronos-2,AutoTheta,0.765,0.529,0.941,0.095,-0.037,0.184
-Chronos-2,Drift,0.765,0.529,0.941,0.218,0.025,0.397
-Chronos-2,Naive,0.824,0.647,1.0,0.277,0.123,0.428
-Chronos-2,Sundial-Base,1.0,1.0,1.0,0.222,0.148,0.287
-Chronos-2,Seasonal Naive,0.882,0.706,1.0,0.312,0.203,0.41
-TimesFM-2.5,TiRex,0.353,0.176,0.588,-0.018,-0.052,0.018
-TimesFM-2.5,Stat. Ensemble,0.529,0.294,0.765,-0.043,-0.145,0.026
-TimesFM-2.5,Chronos-2,0.471,0.235,0.706,-0.034,-0.104,0.017
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TabPFN-TS,0.588,0.353,0.824,-0.002,-0.134,0.098
-TimesFM-2.5,AutoETS,0.588,0.353,0.824,0.001,-0.066,0.058
-TimesFM-2.5,Toto-1.0,0.529,0.294,0.765,0.054,-0.015,0.12
-TimesFM-2.5,AutoARIMA,0.706,0.471,0.941,-0.0,-0.106,0.079
-TimesFM-2.5,Chronos-Bolt,0.765,0.588,0.941,0.09,0.032,0.151
-TimesFM-2.5,Moirai-2.0,0.706,0.5,0.912,0.111,0.034,0.186
-TimesFM-2.5,AutoTheta,0.765,0.529,0.941,0.064,-0.08,0.169
-TimesFM-2.5,Drift,0.765,0.529,0.941,0.191,-0.023,0.382
-TimesFM-2.5,Naive,0.824,0.647,1.0,0.252,0.061,0.423
-TimesFM-2.5,Sundial-Base,1.0,1.0,1.0,0.195,0.131,0.257
-TimesFM-2.5,Seasonal Naive,0.882,0.706,1.0,0.288,0.174,0.389
-TabPFN-TS,TiRex,0.235,0.059,0.471,-0.017,-0.117,0.092
-TabPFN-TS,Stat. Ensemble,0.471,0.235,0.706,-0.042,-0.113,0.018
-TabPFN-TS,Chronos-2,0.353,0.176,0.588,-0.033,-0.126,0.065
-TabPFN-TS,TimesFM-2.5,0.412,0.176,0.647,0.002,-0.108,0.118
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,AutoETS,0.529,0.294,0.765,0.002,-0.091,0.08
-TabPFN-TS,Toto-1.0,0.588,0.353,0.824,0.056,-0.064,0.153
-TabPFN-TS,AutoARIMA,0.588,0.353,0.824,0.001,-0.079,0.066
-TabPFN-TS,Chronos-Bolt,0.647,0.412,0.825,0.091,-0.037,0.205
-TabPFN-TS,Moirai-2.0,0.647,0.412,0.882,0.113,-0.016,0.222
-TabPFN-TS,AutoTheta,0.706,0.471,0.882,0.065,-0.011,0.131
-TabPFN-TS,Drift,0.706,0.471,0.882,0.192,0.03,0.374
-TabPFN-TS,Naive,0.882,0.706,1.0,0.253,0.103,0.41
-TabPFN-TS,Sundial-Base,0.882,0.706,1.0,0.196,0.1,0.291
-TabPFN-TS,Seasonal Naive,0.941,0.824,1.0,0.289,0.188,0.371
-AutoETS,TiRex,0.412,0.176,0.647,-0.019,-0.078,0.036
-AutoETS,Stat. Ensemble,0.235,0.059,0.471,-0.044,-0.092,-0.01
-AutoETS,Chronos-2,0.353,0.118,0.588,-0.035,-0.08,0.011
-AutoETS,TimesFM-2.5,0.412,0.176,0.647,-0.001,-0.062,0.062
-AutoETS,TabPFN-TS,0.471,0.235,0.706,-0.002,-0.087,0.083
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Toto-1.0,0.588,0.353,0.824,0.053,-0.018,0.117
-AutoETS,AutoARIMA,0.588,0.353,0.824,-0.001,-0.079,0.056
-AutoETS,Chronos-Bolt,0.706,0.471,0.882,0.089,0.022,0.15
-AutoETS,Moirai-2.0,0.706,0.471,0.882,0.11,0.04,0.175
-AutoETS,AutoTheta,0.706,0.471,0.882,0.063,-0.033,0.131
-AutoETS,Drift,0.647,0.412,0.882,0.19,0.012,0.377
-AutoETS,Naive,0.882,0.706,1.0,0.251,0.094,0.41
-AutoETS,Sundial-Base,0.882,0.706,1.0,0.194,0.124,0.256
-AutoETS,Seasonal Naive,1.0,1.0,1.0,0.287,0.198,0.376
-Toto-1.0,TiRex,0.353,0.118,0.588,-0.076,-0.136,-0.016
-Toto-1.0,Stat. Ensemble,0.294,0.118,0.529,-0.103,-0.193,-0.017
-Toto-1.0,Chronos-2,0.412,0.176,0.647,-0.094,-0.189,-0.002
-Toto-1.0,TimesFM-2.5,0.471,0.235,0.706,-0.057,-0.136,0.015
-Toto-1.0,TabPFN-TS,0.412,0.176,0.647,-0.059,-0.181,0.06
-Toto-1.0,AutoETS,0.412,0.176,0.647,-0.056,-0.132,0.018
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,AutoARIMA,0.529,0.294,0.765,-0.057,-0.158,0.035
-Toto-1.0,Chronos-Bolt,0.647,0.412,0.824,0.038,-0.019,0.086
-Toto-1.0,Moirai-2.0,0.647,0.412,0.853,0.06,0.016,0.112
-Toto-1.0,AutoTheta,0.647,0.412,0.882,0.01,-0.111,0.11
-Toto-1.0,Drift,0.706,0.471,0.882,0.145,-0.034,0.312
-Toto-1.0,Naive,0.882,0.706,1.0,0.209,0.051,0.359
-Toto-1.0,Sundial-Base,0.765,0.529,0.941,0.149,0.044,0.234
-Toto-1.0,Seasonal Naive,0.824,0.647,1.0,0.247,0.11,0.364
-AutoARIMA,TiRex,0.412,0.176,0.647,-0.018,-0.105,0.071
-AutoARIMA,Stat. Ensemble,0.176,0.0,0.353,-0.043,-0.081,-0.002
-AutoARIMA,Chronos-2,0.294,0.118,0.529,-0.034,-0.112,0.053
-AutoARIMA,TimesFM-2.5,0.294,0.059,0.529,0.0,-0.086,0.096
-AutoARIMA,TabPFN-TS,0.412,0.176,0.647,-0.001,-0.071,0.073
-AutoARIMA,AutoETS,0.412,0.176,0.647,0.001,-0.059,0.073
-AutoARIMA,Toto-1.0,0.471,0.235,0.706,0.054,-0.036,0.136
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,Chronos-Bolt,0.471,0.235,0.706,0.09,-0.01,0.191
-AutoARIMA,Moirai-2.0,0.529,0.294,0.765,0.111,0.002,0.22
-AutoARIMA,AutoTheta,0.529,0.294,0.765,0.064,-0.025,0.147
-AutoARIMA,Drift,0.647,0.412,0.882,0.191,0.029,0.372
-AutoARIMA,Naive,0.706,0.471,0.882,0.252,0.083,0.423
-AutoARIMA,Sundial-Base,0.765,0.529,0.941,0.195,0.085,0.298
-AutoARIMA,Seasonal Naive,0.941,0.824,1.0,0.288,0.178,0.39
-Chronos-Bolt,TiRex,0.118,0.0,0.294,-0.119,-0.19,-0.056
-Chronos-Bolt,Stat. Ensemble,0.176,0.0,0.354,-0.147,-0.26,-0.049
-Chronos-Bolt,Chronos-2,0.235,0.059,0.471,-0.137,-0.25,-0.042
-Chronos-Bolt,TimesFM-2.5,0.235,0.059,0.412,-0.099,-0.177,-0.033
-Chronos-Bolt,TabPFN-TS,0.353,0.175,0.588,-0.1,-0.257,0.036
-Chronos-Bolt,AutoETS,0.294,0.118,0.529,-0.098,-0.177,-0.022
-Chronos-Bolt,Toto-1.0,0.353,0.176,0.588,-0.039,-0.094,0.018
-Chronos-Bolt,AutoARIMA,0.529,0.294,0.765,-0.099,-0.236,0.01
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Moirai-2.0,0.382,0.205,0.588,0.023,-0.024,0.076
-Chronos-Bolt,AutoTheta,0.706,0.471,0.941,-0.029,-0.171,0.079
-Chronos-Bolt,Drift,0.765,0.529,0.941,0.111,-0.104,0.312
-Chronos-Bolt,Naive,0.765,0.529,0.941,0.178,-0.02,0.361
-Chronos-Bolt,Sundial-Base,0.824,0.647,1.0,0.115,0.028,0.191
-Chronos-Bolt,Seasonal Naive,0.765,0.588,0.941,0.218,0.087,0.337
-Moirai-2.0,TiRex,0.059,0.0,0.176,-0.146,-0.243,-0.062
-Moirai-2.0,Stat. Ensemble,0.294,0.118,0.529,-0.174,-0.299,-0.07
-Moirai-2.0,Chronos-2,0.294,0.118,0.529,-0.164,-0.291,-0.058
-Moirai-2.0,TimesFM-2.5,0.294,0.088,0.5,-0.125,-0.228,-0.035
-Moirai-2.0,TabPFN-TS,0.353,0.118,0.588,-0.127,-0.285,0.015
-Moirai-2.0,AutoETS,0.294,0.118,0.529,-0.124,-0.212,-0.042
-Moirai-2.0,Toto-1.0,0.353,0.147,0.588,-0.064,-0.127,-0.016
-Moirai-2.0,AutoARIMA,0.471,0.235,0.706,-0.125,-0.281,-0.002
-Moirai-2.0,Chronos-Bolt,0.618,0.412,0.795,-0.024,-0.082,0.023
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,AutoTheta,0.529,0.294,0.765,-0.053,-0.183,0.053
-Moirai-2.0,Drift,0.647,0.412,0.882,0.09,-0.107,0.279
-Moirai-2.0,Naive,0.706,0.471,0.941,0.158,-0.004,0.315
-Moirai-2.0,Sundial-Base,0.824,0.647,1.0,0.094,0.002,0.179
-Moirai-2.0,Seasonal Naive,0.706,0.471,0.882,0.199,0.073,0.326
-AutoTheta,TiRex,0.294,0.059,0.529,-0.088,-0.212,0.049
-AutoTheta,Stat. Ensemble,0.059,0.0,0.176,-0.115,-0.197,-0.037
-AutoTheta,Chronos-2,0.235,0.059,0.471,-0.105,-0.226,0.035
-AutoTheta,TimesFM-2.5,0.235,0.059,0.471,-0.068,-0.203,0.074
-AutoTheta,TabPFN-TS,0.294,0.118,0.529,-0.07,-0.151,0.011
-AutoTheta,AutoETS,0.294,0.118,0.529,-0.067,-0.151,0.032
-AutoTheta,Toto-1.0,0.353,0.118,0.588,-0.01,-0.124,0.1
-AutoTheta,AutoARIMA,0.471,0.235,0.706,-0.068,-0.173,0.024
-AutoTheta,Chronos-Bolt,0.294,0.059,0.529,0.028,-0.085,0.146
-AutoTheta,Moirai-2.0,0.471,0.235,0.706,0.051,-0.056,0.155
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Drift,0.412,0.176,0.647,0.136,0.003,0.317
-AutoTheta,Naive,0.706,0.471,0.941,0.201,0.065,0.356
-AutoTheta,Sundial-Base,0.765,0.529,0.941,0.14,0.037,0.255
-AutoTheta,Seasonal Naive,0.824,0.647,1.0,0.24,0.146,0.322
-Drift,TiRex,0.235,0.059,0.471,-0.258,-0.613,-0.015
-Drift,Stat. Ensemble,0.176,0.0,0.353,-0.29,-0.662,-0.08
-Drift,Chronos-2,0.235,0.059,0.471,-0.279,-0.657,-0.025
-Drift,TimesFM-2.5,0.235,0.059,0.471,-0.236,-0.619,0.023
-Drift,TabPFN-TS,0.294,0.118,0.529,-0.238,-0.598,-0.03
-Drift,AutoETS,0.353,0.118,0.588,-0.235,-0.606,-0.012
-Drift,Toto-1.0,0.294,0.118,0.529,-0.169,-0.454,0.033
-Drift,AutoARIMA,0.353,0.118,0.588,-0.236,-0.593,-0.03
-Drift,Chronos-Bolt,0.235,0.059,0.471,-0.125,-0.453,0.094
-Drift,Moirai-2.0,0.353,0.118,0.588,-0.099,-0.387,0.097
-Drift,AutoTheta,0.588,0.353,0.824,-0.157,-0.465,-0.003
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
-Drift,Naive,0.647,0.412,0.882,0.076,-0.02,0.179
-Drift,Sundial-Base,0.647,0.412,0.882,0.005,-0.347,0.218
-Drift,Seasonal Naive,0.706,0.471,0.882,0.12,-0.22,0.302
-Naive,TiRex,0.118,0.0,0.294,-0.361,-0.746,-0.11
-Naive,Stat. Ensemble,0.059,0.0,0.176,-0.395,-0.775,-0.154
-Naive,Chronos-2,0.176,0.0,0.353,-0.383,-0.747,-0.141
-Naive,TimesFM-2.5,0.176,0.0,0.353,-0.337,-0.733,-0.065
-Naive,TabPFN-TS,0.118,0.0,0.294,-0.339,-0.696,-0.115
-Naive,AutoETS,0.118,0.0,0.294,-0.336,-0.695,-0.104
-Naive,Toto-1.0,0.118,0.0,0.294,-0.265,-0.559,-0.054
-Naive,AutoARIMA,0.294,0.118,0.529,-0.337,-0.733,-0.091
-Naive,Chronos-Bolt,0.235,0.059,0.471,-0.217,-0.564,0.02
-Naive,Moirai-2.0,0.294,0.059,0.529,-0.188,-0.46,0.004
-Naive,AutoTheta,0.294,0.059,0.529,-0.252,-0.553,-0.069
-Naive,Drift,0.353,0.118,0.588,-0.082,-0.218,0.019
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Sundial-Base,0.529,0.294,0.765,-0.077,-0.413,0.123
-Naive,Seasonal Naive,0.706,0.5,0.882,0.048,-0.261,0.223
-Sundial-Base,TiRex,0.118,0.0,0.294,-0.265,-0.38,-0.158
-Sundial-Base,Stat. Ensemble,0.0,0.0,0.0,-0.296,-0.449,-0.17
-Sundial-Base,Chronos-2,0.0,0.0,0.0,-0.285,-0.403,-0.174
-Sundial-Base,TimesFM-2.5,0.0,0.0,0.0,-0.242,-0.346,-0.151
-Sundial-Base,TabPFN-TS,0.118,0.0,0.294,-0.244,-0.411,-0.111
-Sundial-Base,AutoETS,0.118,0.0,0.294,-0.241,-0.343,-0.141
-Sundial-Base,Toto-1.0,0.235,0.059,0.471,-0.175,-0.305,-0.046
-Sundial-Base,AutoARIMA,0.235,0.059,0.471,-0.242,-0.425,-0.093
-Sundial-Base,Chronos-Bolt,0.176,0.0,0.353,-0.13,-0.236,-0.029
-Sundial-Base,Moirai-2.0,0.176,0.0,0.353,-0.104,-0.218,-0.002
-Sundial-Base,AutoTheta,0.235,0.059,0.471,-0.163,-0.342,-0.038
-Sundial-Base,Drift,0.353,0.118,0.588,-0.005,-0.279,0.257
-Sundial-Base,Naive,0.471,0.235,0.706,0.071,-0.14,0.292
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Seasonal Naive,0.706,0.471,0.941,0.116,0.004,0.214
-Seasonal Naive,TiRex,0.059,0.0,0.176,-0.43,-0.693,-0.222
-Seasonal Naive,Stat. Ensemble,0.0,0.0,0.0,-0.466,-0.669,-0.289
-Seasonal Naive,Chronos-2,0.118,0.0,0.294,-0.453,-0.695,-0.255
-Seasonal Naive,TimesFM-2.5,0.118,0.0,0.294,-0.405,-0.637,-0.211
-Seasonal Naive,TabPFN-TS,0.059,0.0,0.176,-0.407,-0.591,-0.232
-Seasonal Naive,AutoETS,0.0,0.0,0.0,-0.403,-0.603,-0.246
-Seasonal Naive,Toto-1.0,0.176,0.0,0.353,-0.329,-0.572,-0.124
-Seasonal Naive,AutoARIMA,0.059,0.0,0.176,-0.405,-0.639,-0.217
-Seasonal Naive,Chronos-Bolt,0.235,0.059,0.412,-0.278,-0.508,-0.095
-Seasonal Naive,Moirai-2.0,0.294,0.118,0.529,-0.248,-0.484,-0.078
-Seasonal Naive,AutoTheta,0.176,0.0,0.353,-0.315,-0.475,-0.171
-Seasonal Naive,Drift,0.294,0.118,0.529,-0.136,-0.432,0.18
-Seasonal Naive,Naive,0.294,0.118,0.5,-0.051,-0.288,0.207
-Seasonal Naive,Sundial-Base,0.294,0.059,0.529,-0.131,-0.272,-0.004
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/frequency_monthly_plus/pairwise_WQL.csv b/tables/frequency_monthly_plus/pairwise_WQL.csv
deleted file mode 100644
index 9fd9f09950c2c7d281c14073e95bf6ab2bf58a10..0000000000000000000000000000000000000000
--- a/tables/frequency_monthly_plus/pairwise_WQL.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,Chronos-2,0.529,0.294,0.765,-0.007,-0.049,0.033
-TiRex,TimesFM-2.5,0.647,0.412,0.824,0.025,-0.013,0.059
-TiRex,TabPFN-TS,0.765,0.529,0.941,0.023,-0.072,0.097
-TiRex,Stat. Ensemble,0.706,0.471,0.941,0.042,-0.043,0.121
-TiRex,Toto-1.0,0.706,0.471,0.941,0.072,0.024,0.114
-TiRex,AutoETS,0.765,0.529,0.941,0.067,0.006,0.121
-TiRex,Chronos-Bolt,0.882,0.706,1.0,0.097,0.05,0.145
-TiRex,Moirai-2.0,0.882,0.706,1.0,0.127,0.062,0.194
-TiRex,AutoARIMA,0.706,0.471,0.882,0.096,0.004,0.19
-TiRex,AutoTheta,0.824,0.647,1.0,0.157,0.032,0.256
-TiRex,Drift,0.941,0.824,1.0,0.321,0.158,0.466
-TiRex,Sundial-Base,0.941,0.824,1.0,0.266,0.192,0.336
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.348,0.233,0.457
-TiRex,Naive,1.0,1.0,1.0,0.374,0.25,0.493
-Chronos-2,TiRex,0.471,0.235,0.706,0.007,-0.034,0.046
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TimesFM-2.5,0.647,0.412,0.882,0.032,-0.002,0.067
-Chronos-2,TabPFN-TS,0.588,0.353,0.824,0.031,-0.057,0.101
-Chronos-2,Stat. Ensemble,0.882,0.706,1.0,0.049,-0.039,0.124
-Chronos-2,Toto-1.0,0.647,0.412,0.882,0.079,0.013,0.143
-Chronos-2,AutoETS,0.882,0.706,1.0,0.074,0.025,0.113
-Chronos-2,Chronos-Bolt,0.765,0.529,0.941,0.103,0.039,0.168
-Chronos-2,Moirai-2.0,0.706,0.471,0.882,0.134,0.06,0.206
-Chronos-2,AutoARIMA,0.824,0.647,1.0,0.102,0.007,0.196
-Chronos-2,AutoTheta,0.941,0.824,1.0,0.163,0.042,0.254
-Chronos-2,Drift,0.941,0.824,1.0,0.325,0.143,0.481
-Chronos-2,Sundial-Base,1.0,1.0,1.0,0.271,0.208,0.332
-Chronos-2,Seasonal Naive,0.941,0.824,1.0,0.353,0.247,0.456
-Chronos-2,Naive,0.941,0.824,1.0,0.378,0.248,0.505
-TimesFM-2.5,TiRex,0.353,0.176,0.588,-0.026,-0.063,0.013
-TimesFM-2.5,Chronos-2,0.353,0.118,0.588,-0.033,-0.072,0.002
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TabPFN-TS,0.588,0.353,0.824,-0.002,-0.108,0.081
-TimesFM-2.5,Stat. Ensemble,0.647,0.412,0.882,0.017,-0.083,0.093
-TimesFM-2.5,Toto-1.0,0.529,0.294,0.765,0.048,-0.014,0.112
-TimesFM-2.5,AutoETS,0.706,0.471,0.882,0.043,-0.024,0.097
-TimesFM-2.5,Chronos-Bolt,0.706,0.5,0.912,0.073,0.017,0.133
-TimesFM-2.5,Moirai-2.0,0.706,0.5,0.912,0.105,0.031,0.181
-TimesFM-2.5,AutoARIMA,0.765,0.529,0.941,0.072,-0.031,0.164
-TimesFM-2.5,AutoTheta,0.824,0.647,1.0,0.135,-0.004,0.235
-TimesFM-2.5,Drift,0.882,0.706,1.0,0.303,0.116,0.462
-TimesFM-2.5,Sundial-Base,1.0,1.0,1.0,0.247,0.189,0.313
-TimesFM-2.5,Seasonal Naive,0.941,0.824,1.0,0.332,0.221,0.436
-TimesFM-2.5,Naive,0.941,0.824,1.0,0.358,0.218,0.492
-TabPFN-TS,TiRex,0.235,0.059,0.471,-0.024,-0.108,0.067
-TabPFN-TS,Chronos-2,0.412,0.176,0.647,-0.032,-0.112,0.054
-TabPFN-TS,TimesFM-2.5,0.412,0.176,0.647,0.002,-0.088,0.097
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Stat. Ensemble,0.471,0.235,0.706,0.019,-0.046,0.083
-TabPFN-TS,Toto-1.0,0.588,0.353,0.824,0.05,-0.051,0.133
-TabPFN-TS,AutoETS,0.706,0.471,0.882,0.044,-0.032,0.109
-TabPFN-TS,Chronos-Bolt,0.647,0.412,0.825,0.075,-0.031,0.169
-TabPFN-TS,Moirai-2.0,0.647,0.412,0.882,0.106,-0.004,0.203
-TabPFN-TS,AutoARIMA,0.588,0.353,0.824,0.074,-0.011,0.151
-TabPFN-TS,AutoTheta,0.882,0.706,1.0,0.137,0.063,0.203
-TabPFN-TS,Drift,0.824,0.647,1.0,0.304,0.145,0.456
-TabPFN-TS,Sundial-Base,1.0,1.0,1.0,0.248,0.165,0.338
-TabPFN-TS,Seasonal Naive,1.0,1.0,1.0,0.333,0.234,0.423
-TabPFN-TS,Naive,0.941,0.824,1.0,0.359,0.234,0.484
-Stat. Ensemble,TiRex,0.294,0.059,0.529,-0.044,-0.138,0.041
-Stat. Ensemble,Chronos-2,0.118,0.0,0.294,-0.051,-0.141,0.037
-Stat. Ensemble,TimesFM-2.5,0.353,0.118,0.588,-0.017,-0.102,0.077
-Stat. Ensemble,TabPFN-TS,0.529,0.294,0.765,-0.019,-0.09,0.044
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,Toto-1.0,0.529,0.294,0.765,0.031,-0.066,0.119
-Stat. Ensemble,AutoETS,0.529,0.294,0.765,0.026,-0.041,0.082
-Stat. Ensemble,Chronos-Bolt,0.529,0.294,0.765,0.057,-0.038,0.142
-Stat. Ensemble,Moirai-2.0,0.588,0.353,0.824,0.089,-0.017,0.186
-Stat. Ensemble,AutoARIMA,0.941,0.824,1.0,0.056,0.018,0.09
-Stat. Ensemble,AutoTheta,0.882,0.706,1.0,0.12,0.056,0.188
-Stat. Ensemble,Drift,0.941,0.824,1.0,0.291,0.134,0.447
-Stat. Ensemble,Sundial-Base,0.882,0.706,1.0,0.234,0.133,0.333
-Stat. Ensemble,Seasonal Naive,1.0,1.0,1.0,0.32,0.228,0.405
-Stat. Ensemble,Naive,1.0,1.0,1.0,0.346,0.214,0.48
-Toto-1.0,TiRex,0.294,0.059,0.529,-0.078,-0.129,-0.025
-Toto-1.0,Chronos-2,0.353,0.118,0.588,-0.085,-0.166,-0.013
-Toto-1.0,TimesFM-2.5,0.471,0.235,0.706,-0.05,-0.126,0.014
-Toto-1.0,TabPFN-TS,0.412,0.176,0.647,-0.052,-0.154,0.048
-Toto-1.0,Stat. Ensemble,0.471,0.235,0.706,-0.032,-0.135,0.062
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,AutoETS,0.529,0.294,0.765,-0.006,-0.092,0.065
-Toto-1.0,Chronos-Bolt,0.706,0.5,0.882,0.027,-0.031,0.073
-Toto-1.0,Moirai-2.0,0.706,0.471,0.882,0.06,0.011,0.115
-Toto-1.0,AutoARIMA,0.588,0.353,0.824,0.026,-0.082,0.134
-Toto-1.0,AutoTheta,0.706,0.471,0.882,0.092,-0.025,0.197
-Toto-1.0,Drift,0.941,0.824,1.0,0.268,0.112,0.402
-Toto-1.0,Sundial-Base,0.882,0.706,1.0,0.209,0.113,0.289
-Toto-1.0,Seasonal Naive,0.824,0.647,1.0,0.298,0.157,0.418
-Toto-1.0,Naive,0.941,0.824,1.0,0.325,0.219,0.432
-AutoETS,TiRex,0.235,0.059,0.471,-0.072,-0.137,-0.007
-AutoETS,Chronos-2,0.118,0.0,0.294,-0.079,-0.127,-0.026
-AutoETS,TimesFM-2.5,0.294,0.118,0.529,-0.045,-0.107,0.024
-AutoETS,TabPFN-TS,0.294,0.118,0.529,-0.046,-0.123,0.031
-AutoETS,Stat. Ensemble,0.471,0.235,0.706,-0.027,-0.089,0.039
-AutoETS,Toto-1.0,0.471,0.235,0.706,0.006,-0.069,0.084
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Chronos-Bolt,0.471,0.235,0.706,0.032,-0.045,0.099
-AutoETS,Moirai-2.0,0.471,0.235,0.706,0.065,-0.018,0.148
-AutoETS,AutoARIMA,0.706,0.471,0.882,0.031,-0.058,0.119
-AutoETS,AutoTheta,0.765,0.588,0.941,0.097,-0.001,0.182
-AutoETS,Drift,0.882,0.706,1.0,0.272,0.096,0.444
-AutoETS,Sundial-Base,0.941,0.824,1.0,0.214,0.135,0.291
-AutoETS,Seasonal Naive,0.882,0.706,1.0,0.302,0.195,0.407
-AutoETS,Naive,0.941,0.824,1.0,0.329,0.189,0.468
-Chronos-Bolt,TiRex,0.118,0.0,0.294,-0.107,-0.17,-0.053
-Chronos-Bolt,Chronos-2,0.235,0.059,0.471,-0.115,-0.201,-0.04
-Chronos-Bolt,TimesFM-2.5,0.294,0.088,0.5,-0.079,-0.154,-0.017
-Chronos-Bolt,TabPFN-TS,0.353,0.175,0.588,-0.081,-0.203,0.03
-Chronos-Bolt,Stat. Ensemble,0.471,0.235,0.706,-0.061,-0.166,0.037
-Chronos-Bolt,Toto-1.0,0.294,0.118,0.5,-0.027,-0.078,0.03
-Chronos-Bolt,AutoETS,0.529,0.294,0.765,-0.033,-0.11,0.043
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Moirai-2.0,0.441,0.235,0.647,0.034,-0.012,0.086
-Chronos-Bolt,AutoARIMA,0.588,0.353,0.824,-0.001,-0.124,0.116
-Chronos-Bolt,AutoTheta,0.824,0.647,1.0,0.067,-0.065,0.176
-Chronos-Bolt,Drift,0.882,0.706,1.0,0.248,0.074,0.409
-Chronos-Bolt,Sundial-Base,0.941,0.824,1.0,0.188,0.105,0.254
-Chronos-Bolt,Seasonal Naive,0.824,0.647,1.0,0.279,0.156,0.396
-Chronos-Bolt,Naive,0.882,0.706,1.0,0.307,0.183,0.438
-Moirai-2.0,TiRex,0.118,0.0,0.294,-0.146,-0.241,-0.066
-Moirai-2.0,Chronos-2,0.294,0.118,0.529,-0.154,-0.26,-0.064
-Moirai-2.0,TimesFM-2.5,0.294,0.088,0.5,-0.117,-0.221,-0.032
-Moirai-2.0,TabPFN-TS,0.353,0.118,0.588,-0.119,-0.255,0.004
-Moirai-2.0,Stat. Ensemble,0.412,0.176,0.647,-0.098,-0.228,0.017
-Moirai-2.0,Toto-1.0,0.294,0.118,0.529,-0.063,-0.13,-0.011
-Moirai-2.0,AutoETS,0.529,0.294,0.765,-0.069,-0.173,0.018
-Moirai-2.0,Chronos-Bolt,0.559,0.353,0.765,-0.035,-0.094,0.012
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,AutoARIMA,0.588,0.353,0.824,-0.036,-0.188,0.094
-Moirai-2.0,AutoTheta,0.647,0.412,0.882,0.034,-0.087,0.145
-Moirai-2.0,Drift,0.824,0.647,1.0,0.221,0.051,0.376
-Moirai-2.0,Sundial-Base,0.824,0.647,1.0,0.159,0.071,0.237
-Moirai-2.0,Seasonal Naive,0.706,0.471,0.882,0.253,0.126,0.377
-Moirai-2.0,Naive,0.824,0.647,1.0,0.282,0.165,0.399
-AutoARIMA,TiRex,0.294,0.118,0.529,-0.106,-0.235,-0.004
-AutoARIMA,Chronos-2,0.176,0.0,0.353,-0.114,-0.244,-0.007
-AutoARIMA,TimesFM-2.5,0.235,0.059,0.471,-0.078,-0.197,0.03
-AutoARIMA,TabPFN-TS,0.412,0.176,0.647,-0.08,-0.177,0.01
-AutoARIMA,Stat. Ensemble,0.059,0.0,0.176,-0.059,-0.099,-0.019
-AutoARIMA,Toto-1.0,0.412,0.176,0.647,-0.026,-0.154,0.076
-AutoARIMA,AutoETS,0.294,0.118,0.529,-0.032,-0.135,0.055
-AutoARIMA,Chronos-Bolt,0.412,0.176,0.647,0.001,-0.131,0.111
-AutoARIMA,Moirai-2.0,0.412,0.176,0.647,0.035,-0.104,0.158
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoTheta,0.529,0.294,0.765,0.068,-0.02,0.16
-AutoARIMA,Drift,0.765,0.529,0.941,0.249,0.079,0.417
-AutoARIMA,Sundial-Base,0.824,0.647,0.943,0.188,0.058,0.315
-AutoARIMA,Seasonal Naive,0.941,0.824,1.0,0.279,0.174,0.381
-AutoARIMA,Naive,0.882,0.706,1.0,0.307,0.155,0.461
-AutoTheta,TiRex,0.176,0.0,0.353,-0.187,-0.343,-0.033
-AutoTheta,Chronos-2,0.059,0.0,0.176,-0.195,-0.34,-0.044
-AutoTheta,TimesFM-2.5,0.176,0.0,0.353,-0.157,-0.307,0.004
-AutoTheta,TabPFN-TS,0.118,0.0,0.294,-0.159,-0.254,-0.067
-AutoTheta,Stat. Ensemble,0.118,0.0,0.294,-0.137,-0.231,-0.059
-AutoTheta,Toto-1.0,0.294,0.118,0.529,-0.101,-0.246,0.024
-AutoTheta,AutoETS,0.235,0.059,0.412,-0.107,-0.222,0.001
-AutoTheta,Chronos-Bolt,0.176,0.0,0.353,-0.072,-0.214,0.061
-AutoTheta,Moirai-2.0,0.353,0.118,0.588,-0.035,-0.169,0.08
-AutoTheta,AutoARIMA,0.471,0.235,0.706,-0.073,-0.191,0.019
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Drift,0.529,0.294,0.765,0.194,0.039,0.357
-AutoTheta,Sundial-Base,0.765,0.529,0.941,0.129,0.019,0.249
-AutoTheta,Seasonal Naive,0.882,0.706,1.0,0.227,0.144,0.299
-AutoTheta,Naive,0.941,0.824,1.0,0.257,0.129,0.393
-Drift,TiRex,0.059,0.0,0.176,-0.472,-0.873,-0.188
-Drift,Chronos-2,0.059,0.0,0.176,-0.483,-0.929,-0.166
-Drift,TimesFM-2.5,0.118,0.0,0.294,-0.435,-0.859,-0.131
-Drift,TabPFN-TS,0.176,0.0,0.353,-0.437,-0.838,-0.17
-Drift,Stat. Ensemble,0.059,0.0,0.176,-0.41,-0.81,-0.155
-Drift,Toto-1.0,0.059,0.0,0.176,-0.366,-0.673,-0.126
-Drift,AutoETS,0.118,0.0,0.294,-0.373,-0.799,-0.106
-Drift,Chronos-Bolt,0.118,0.0,0.294,-0.329,-0.691,-0.079
-Drift,Moirai-2.0,0.176,0.0,0.353,-0.284,-0.602,-0.053
-Drift,AutoARIMA,0.235,0.059,0.471,-0.331,-0.715,-0.086
-Drift,AutoTheta,0.471,0.235,0.706,-0.24,-0.555,-0.041
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
-Drift,Sundial-Base,0.529,0.294,0.765,-0.08,-0.452,0.16
-Drift,Seasonal Naive,0.647,0.412,0.882,0.041,-0.302,0.25
-Drift,Naive,0.647,0.412,0.882,0.078,-0.013,0.174
-Sundial-Base,TiRex,0.059,0.0,0.176,-0.363,-0.507,-0.238
-Sundial-Base,Chronos-2,0.0,0.0,0.0,-0.373,-0.497,-0.263
-Sundial-Base,TimesFM-2.5,0.0,0.0,0.0,-0.328,-0.457,-0.233
-Sundial-Base,TabPFN-TS,0.0,0.0,0.0,-0.331,-0.511,-0.197
-Sundial-Base,Stat. Ensemble,0.118,0.0,0.294,-0.306,-0.499,-0.154
-Sundial-Base,Toto-1.0,0.118,0.0,0.294,-0.265,-0.406,-0.127
-Sundial-Base,AutoETS,0.059,0.0,0.176,-0.272,-0.41,-0.156
-Sundial-Base,Chronos-Bolt,0.059,0.0,0.176,-0.231,-0.341,-0.117
-Sundial-Base,Moirai-2.0,0.176,0.0,0.353,-0.189,-0.311,-0.077
-Sundial-Base,AutoARIMA,0.176,0.057,0.353,-0.232,-0.461,-0.061
-Sundial-Base,AutoTheta,0.235,0.059,0.471,-0.148,-0.331,-0.02
-Sundial-Base,Drift,0.471,0.235,0.706,0.074,-0.19,0.311
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Seasonal Naive,0.706,0.471,0.884,0.112,-0.011,0.234
-Sundial-Base,Naive,0.647,0.412,0.882,0.147,-0.031,0.333
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.535,-0.842,-0.303
-Seasonal Naive,Chronos-2,0.059,0.0,0.176,-0.546,-0.839,-0.328
-Seasonal Naive,TimesFM-2.5,0.059,0.0,0.176,-0.496,-0.772,-0.283
-Seasonal Naive,TabPFN-TS,0.0,0.0,0.0,-0.499,-0.733,-0.305
-Seasonal Naive,Stat. Ensemble,0.0,0.0,0.0,-0.47,-0.681,-0.296
-Seasonal Naive,Toto-1.0,0.176,0.0,0.353,-0.424,-0.718,-0.186
-Seasonal Naive,AutoETS,0.118,0.0,0.294,-0.432,-0.685,-0.243
-Seasonal Naive,Chronos-Bolt,0.176,0.0,0.353,-0.386,-0.655,-0.185
-Seasonal Naive,Moirai-2.0,0.294,0.118,0.529,-0.339,-0.606,-0.144
-Seasonal Naive,AutoARIMA,0.059,0.0,0.176,-0.388,-0.617,-0.211
-Seasonal Naive,AutoTheta,0.118,0.0,0.294,-0.293,-0.426,-0.168
-Seasonal Naive,Drift,0.353,0.118,0.588,-0.043,-0.333,0.232
-Seasonal Naive,Sundial-Base,0.294,0.116,0.529,-0.126,-0.306,0.01
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Naive,0.412,0.206,0.647,0.039,-0.185,0.265
-Naive,TiRex,0.0,0.0,0.0,-0.597,-0.971,-0.333
-Naive,Chronos-2,0.059,0.0,0.176,-0.608,-1.02,-0.329
-Naive,TimesFM-2.5,0.059,0.0,0.176,-0.556,-0.967,-0.279
-Naive,TabPFN-TS,0.059,0.0,0.176,-0.559,-0.938,-0.306
-Naive,Stat. Ensemble,0.0,0.0,0.0,-0.53,-0.923,-0.273
-Naive,Toto-1.0,0.059,0.0,0.176,-0.482,-0.759,-0.28
-Naive,AutoETS,0.059,0.0,0.176,-0.49,-0.879,-0.233
-Naive,Chronos-Bolt,0.118,0.0,0.294,-0.442,-0.779,-0.224
-Naive,Moirai-2.0,0.176,0.0,0.353,-0.393,-0.663,-0.198
-Naive,AutoARIMA,0.118,0.0,0.294,-0.444,-0.855,-0.183
-Naive,AutoTheta,0.059,0.0,0.176,-0.346,-0.648,-0.148
-Naive,Drift,0.353,0.118,0.588,-0.085,-0.211,0.013
-Naive,Sundial-Base,0.353,0.118,0.588,-0.172,-0.5,0.03
-Naive,Seasonal Naive,0.588,0.353,0.794,-0.04,-0.36,0.156
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/frequency_sub_hourly/leaderboard_MASE.csv b/tables/frequency_sub_hourly/leaderboard_MASE.csv
deleted file mode 100644
index 1b091ba8412b3034080cdcb255a392ddb58d7981..0000000000000000000000000000000000000000
--- a/tables/frequency_sub_hourly/leaderboard_MASE.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,92.85714285714286,36.605677387649834,0.0,1.229484144569209,0.0,0.0
-Toto-1.0,87.05357142857144,34.31440963476917,0.0,53.28853400476191,0.041666666666666664,0.0
-TimesFM-2.5,79.61309523809524,33.08143144251301,0.0,8.115464592611442,0.041666666666666664,0.0
-TiRex,76.9345238095238,32.09191406128986,0.0,0.5299449870260153,0.041666666666666664,0.0
-Moirai-2.0,68.45238095238095,30.491645603453122,0.0,1.895778534404762,0.25,0.0
-Chronos-Bolt,62.500000000000014,26.492402114565415,0.0,0.5020351477436238,0.0,0.0
-Sundial-Base,60.5654761904762,27.748908020810514,0.0,7.915062387440475,0.041666666666666664,0.0
-TabPFN-TS,56.8452380952381,25.64075867979405,0.0,218.85705078901032,0.0,0.0
-Stat. Ensemble,31.99404761904762,4.953841003733173,0.0,77.96321990622643,0.0,37.5
-AutoARIMA,31.99404761904762,6.157935798308323,0.0,16.21961278850746,0.0,37.5
-AutoTheta,31.250000000000007,5.870699140858715,0.0,4.526263558054029,0.0,0.0
-AutoETS,22.172619047619047,-9.418472845195168,0.0,3.5696957142857144,0.0,12.5
-Seasonal Naive,21.875,0.0,0.0,0.47731585217592587,0.0,0.0
-Naive,19.94047619047619,-29.01179677799075,0.0,0.47126298632142855,0.0,0.0
-Drift,5.9523809523809526,-38.47295911331854,0.0,0.44865447247826906,0.0,0.0
diff --git a/tables/frequency_sub_hourly/leaderboard_SQL.csv b/tables/frequency_sub_hourly/leaderboard_SQL.csv
deleted file mode 100644
index 524549b227554ea385c289e0aac448fe4817ffcc..0000000000000000000000000000000000000000
--- a/tables/frequency_sub_hourly/leaderboard_SQL.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,94.04761904761905,56.38130532139749,0.0,1.229484144569209,0.0,0.0
-Toto-1.0,87.64880952380955,54.02589153177224,0.0,53.28853400476191,0.041666666666666664,0.0
-TimesFM-2.5,81.69642857142856,53.090548134983905,0.0,8.115464592611442,0.041666666666666664,0.0
-TiRex,80.50595238095238,52.71089296427414,0.0,0.5299449870260153,0.041666666666666664,0.0
-Moirai-2.0,70.83333333333333,50.17769224138213,0.0,1.895778534404762,0.25,0.0
-TabPFN-TS,59.52380952380951,45.24211890278741,0.0,218.85705078901032,0.0,0.0
-Sundial-Base,59.375,46.75728702656884,0.0,7.915062387440475,0.041666666666666664,0.0
-Chronos-Bolt,59.22619047619049,46.36871724725341,0.0,0.5020351477436238,0.0,0.0
-AutoARIMA,35.56547619047619,23.569195904321717,0.0,16.21961278850746,0.0,37.5
-Stat. Ensemble,32.291666666666664,12.2011691174994,0.0,77.96321990622643,0.0,37.5
-AutoTheta,24.404761904761905,-8.679221660647052,0.0,4.526263558054029,0.0,0.0
-Seasonal Naive,23.958333333333336,0.0,0.0,0.47731585217592587,0.0,0.0
-AutoETS,23.363095238095237,-57.991658816184334,0.0,3.5696957142857144,0.0,12.5
-Naive,14.583333333333332,-93.34435518152173,0.0,0.47126298632142855,0.0,0.0
-Drift,2.9761904761904767,-103.16658797824996,0.0,0.44865447247826906,0.0,0.0
diff --git a/tables/frequency_sub_hourly/leaderboard_WAPE.csv b/tables/frequency_sub_hourly/leaderboard_WAPE.csv
deleted file mode 100644
index 45ecd74cd9247bc17cf338f50dd57e231f8282da..0000000000000000000000000000000000000000
--- a/tables/frequency_sub_hourly/leaderboard_WAPE.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,92.26190476190477,43.79122175187925,0.0,1.229484144569209,0.0,0.0
-Toto-1.0,88.24404761904762,40.846554891357655,0.0,53.28853400476191,0.041666666666666664,0.0
-TimesFM-2.5,78.7202380952381,39.02958949514069,0.0,8.115464592611442,0.041666666666666664,0.0
-TiRex,75.14880952380952,38.49953271528147,0.0,0.5299449870260153,0.041666666666666664,0.0
-Moirai-2.0,68.1547619047619,37.402148758086064,0.0,1.895778534404762,0.25,0.0
-TabPFN-TS,62.20238095238094,34.649030144920836,0.0,218.85705078901032,0.0,0.0
-Chronos-Bolt,59.82142857142857,32.82212435964361,0.0,0.5020351477436238,0.0,0.0
-Sundial-Base,58.1845238095238,34.275371714631554,0.0,7.915062387440475,0.041666666666666664,0.0
-Stat. Ensemble,31.39880952380953,9.182669245800245,0.0,77.96321990622643,0.0,37.5
-AutoTheta,29.166666666666664,14.492192307942386,0.0,4.526263558054029,0.0,0.0
-AutoARIMA,28.720238095238088,9.221427219349588,0.0,16.21961278850746,0.0,37.5
-Naive,25.0,0.53431759331386,0.0,0.47126298632142855,0.0,0.0
-AutoETS,24.25595238095238,0.5636979140183129,0.0,3.5696957142857144,0.0,12.5
-Seasonal Naive,18.60119047619047,0.0,0.0,0.47731585217592587,0.0,0.0
-Drift,10.119047619047619,-9.202826200764115,0.0,0.44865447247826906,0.0,0.0
diff --git a/tables/frequency_sub_hourly/leaderboard_WQL.csv b/tables/frequency_sub_hourly/leaderboard_WQL.csv
deleted file mode 100644
index 27a2e37064db93777a11bb517c79b21990d5f1a3..0000000000000000000000000000000000000000
--- a/tables/frequency_sub_hourly/leaderboard_WQL.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,94.04761904761905,60.60556778506621,0.0,1.229484144569209,0.0,0.0
-Toto-1.0,88.24404761904762,58.16751894020451,0.0,53.28853400476191,0.041666666666666664,0.0
-TimesFM-2.5,81.99404761904762,56.94649552407227,0.0,8.115464592611442,0.041666666666666664,0.0
-TiRex,79.61309523809524,56.5455202719779,0.0,0.5299449870260153,0.041666666666666664,0.0
-Moirai-2.0,70.83333333333333,55.07707058833018,0.0,1.895778534404762,0.25,0.0
-TabPFN-TS,65.47619047619045,52.15616003488769,0.0,218.85705078901032,0.0,0.0
-Chronos-Bolt,59.52380952380951,50.66033388093718,0.0,0.5020351477436238,0.0,0.0
-Sundial-Base,58.1845238095238,51.22975427213352,0.0,7.915062387440475,0.041666666666666664,0.0
-AutoARIMA,34.67261904761905,24.140201566101073,0.0,16.21961278850746,0.0,37.5
-Stat. Ensemble,30.80357142857143,12.751170671675593,0.0,77.96321990622643,0.0,37.5
-AutoTheta,25.297619047619047,-2.5446445013498797,0.0,4.526263558054029,0.0,0.0
-Seasonal Naive,22.767857142857146,0.0,0.0,0.47731585217592587,0.0,0.0
-AutoETS,20.982142857142858,-58.590060894645916,0.0,3.5696957142857144,0.0,12.5
-Naive,13.095238095238097,-70.46841679118427,0.0,0.47126298632142855,0.0,0.0
-Drift,4.464285714285714,-79.14417548576023,0.0,0.44865447247826906,0.0,0.0
diff --git a/tables/frequency_sub_hourly/pairwise_MASE.csv b/tables/frequency_sub_hourly/pairwise_MASE.csv
deleted file mode 100644
index 05a33a9280fc9dc08e82491038a29457cba835d3..0000000000000000000000000000000000000000
--- a/tables/frequency_sub_hourly/pairwise_MASE.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,Toto-1.0,0.542,0.333,0.75,0.035,0.0,0.072
-Chronos-2,TimesFM-2.5,0.792,0.625,0.958,0.053,0.021,0.086
-Chronos-2,TiRex,0.875,0.75,1.0,0.066,0.033,0.106
-Chronos-2,Moirai-2.0,0.958,0.875,1.0,0.088,0.052,0.13
-Chronos-2,Chronos-Bolt,0.958,0.875,1.0,0.138,0.089,0.187
-Chronos-2,Sundial-Base,0.917,0.792,1.0,0.123,0.078,0.166
-Chronos-2,TabPFN-TS,0.958,0.875,1.0,0.147,0.093,0.203
-Chronos-2,AutoARIMA,1.0,1.0,1.0,0.324,0.266,0.382
-Chronos-2,Stat. Ensemble,1.0,1.0,1.0,0.333,0.275,0.395
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.327,0.258,0.392
-Chronos-2,AutoETS,1.0,1.0,1.0,0.421,0.316,0.527
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.366,0.309,0.438
-Chronos-2,Naive,1.0,1.0,1.0,0.509,0.388,0.627
-Chronos-2,Drift,1.0,1.0,1.0,0.542,0.429,0.651
-Toto-1.0,Chronos-2,0.458,0.25,0.667,-0.036,-0.078,-0.0
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,TimesFM-2.5,0.604,0.417,0.792,0.018,-0.021,0.056
-Toto-1.0,TiRex,0.771,0.583,0.917,0.033,0.003,0.058
-Toto-1.0,Moirai-2.0,0.771,0.583,0.917,0.055,0.016,0.09
-Toto-1.0,Chronos-Bolt,0.854,0.708,0.979,0.106,0.053,0.155
-Toto-1.0,Sundial-Base,0.896,0.771,1.0,0.091,0.038,0.138
-Toto-1.0,TabPFN-TS,0.875,0.75,1.0,0.117,0.049,0.183
-Toto-1.0,AutoARIMA,1.0,1.0,1.0,0.3,0.247,0.357
-Toto-1.0,Stat. Ensemble,1.0,1.0,1.0,0.309,0.249,0.373
-Toto-1.0,AutoTheta,0.958,0.875,1.0,0.302,0.232,0.374
-Toto-1.0,AutoETS,1.0,1.0,1.0,0.4,0.302,0.504
-Toto-1.0,Seasonal Naive,1.0,1.0,1.0,0.343,0.283,0.416
-Toto-1.0,Naive,1.0,1.0,1.0,0.491,0.37,0.615
-Toto-1.0,Drift,1.0,1.0,1.0,0.526,0.416,0.638
-TimesFM-2.5,Chronos-2,0.208,0.042,0.375,-0.056,-0.094,-0.021
-TimesFM-2.5,Toto-1.0,0.396,0.208,0.583,-0.019,-0.059,0.021
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TiRex,0.562,0.354,0.751,0.015,-0.02,0.051
-TimesFM-2.5,Moirai-2.0,0.771,0.583,0.917,0.037,-0.005,0.079
-TimesFM-2.5,Chronos-Bolt,0.812,0.646,0.958,0.09,0.038,0.144
-TimesFM-2.5,Sundial-Base,0.771,0.604,0.917,0.074,0.031,0.119
-TimesFM-2.5,TabPFN-TS,0.75,0.583,0.917,0.1,0.03,0.172
-TimesFM-2.5,AutoARIMA,0.958,0.875,1.0,0.287,0.234,0.342
-TimesFM-2.5,Stat. Ensemble,0.958,0.875,1.0,0.296,0.239,0.359
-TimesFM-2.5,AutoTheta,1.0,1.0,1.0,0.289,0.226,0.357
-TimesFM-2.5,AutoETS,1.0,1.0,1.0,0.388,0.291,0.496
-TimesFM-2.5,Seasonal Naive,0.958,0.875,1.0,0.331,0.27,0.404
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.481,0.36,0.607
-TimesFM-2.5,Drift,1.0,1.0,1.0,0.517,0.402,0.633
-TiRex,Chronos-2,0.125,0.0,0.25,-0.071,-0.119,-0.034
-TiRex,Toto-1.0,0.229,0.083,0.417,-0.034,-0.062,-0.003
-TiRex,TimesFM-2.5,0.438,0.249,0.646,-0.015,-0.053,0.019
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,Moirai-2.0,0.688,0.5,0.855,0.023,0.001,0.046
-TiRex,Chronos-Bolt,0.729,0.542,0.896,0.076,0.031,0.122
-TiRex,Sundial-Base,0.854,0.688,0.958,0.06,0.002,0.106
-TiRex,TabPFN-TS,0.75,0.542,0.917,0.087,0.02,0.153
-TiRex,AutoARIMA,1.0,1.0,1.0,0.276,0.223,0.332
-TiRex,Stat. Ensemble,1.0,1.0,1.0,0.286,0.228,0.349
-TiRex,AutoTheta,1.0,1.0,1.0,0.279,0.214,0.343
-TiRex,AutoETS,1.0,1.0,1.0,0.379,0.268,0.493
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.321,0.261,0.394
-TiRex,Naive,0.958,0.875,1.0,0.474,0.348,0.6
-TiRex,Drift,1.0,1.0,1.0,0.51,0.394,0.626
-Moirai-2.0,Chronos-2,0.042,0.0,0.125,-0.096,-0.149,-0.055
-Moirai-2.0,Toto-1.0,0.229,0.083,0.417,-0.058,-0.099,-0.016
-Moirai-2.0,TimesFM-2.5,0.229,0.083,0.417,-0.039,-0.085,0.005
-Moirai-2.0,TiRex,0.312,0.145,0.5,-0.024,-0.048,-0.001
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Chronos-Bolt,0.667,0.499,0.833,0.054,0.016,0.096
-Moirai-2.0,Sundial-Base,0.812,0.667,0.958,0.038,-0.019,0.084
-Moirai-2.0,TabPFN-TS,0.625,0.417,0.792,0.065,-0.001,0.127
-Moirai-2.0,AutoARIMA,0.917,0.792,1.0,0.259,0.2,0.32
-Moirai-2.0,Stat. Ensemble,0.917,0.792,1.0,0.269,0.205,0.338
-Moirai-2.0,AutoTheta,1.0,1.0,1.0,0.262,0.198,0.332
-Moirai-2.0,AutoETS,0.958,0.875,1.0,0.365,0.247,0.489
-Moirai-2.0,Seasonal Naive,0.917,0.792,1.0,0.305,0.241,0.381
-Moirai-2.0,Naive,0.958,0.875,1.0,0.461,0.333,0.588
-Moirai-2.0,Drift,1.0,1.0,1.0,0.498,0.381,0.614
-Chronos-Bolt,Chronos-2,0.042,0.0,0.125,-0.16,-0.229,-0.098
-Chronos-Bolt,Toto-1.0,0.146,0.021,0.292,-0.119,-0.184,-0.056
-Chronos-Bolt,TimesFM-2.5,0.188,0.042,0.354,-0.098,-0.168,-0.04
-Chronos-Bolt,TiRex,0.271,0.104,0.458,-0.082,-0.138,-0.032
-Chronos-Bolt,Moirai-2.0,0.333,0.167,0.501,-0.058,-0.107,-0.016
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Sundial-Base,0.521,0.312,0.708,-0.017,-0.085,0.037
-Chronos-Bolt,TabPFN-TS,0.542,0.333,0.708,0.011,-0.063,0.077
-Chronos-Bolt,AutoARIMA,0.958,0.875,1.0,0.217,0.151,0.273
-Chronos-Bolt,Stat. Ensemble,0.958,0.875,1.0,0.227,0.166,0.284
-Chronos-Bolt,AutoTheta,1.0,1.0,1.0,0.219,0.171,0.269
-Chronos-Bolt,AutoETS,0.917,0.792,1.0,0.328,0.209,0.46
-Chronos-Bolt,Seasonal Naive,0.917,0.792,1.0,0.265,0.197,0.334
-Chronos-Bolt,Naive,0.958,0.875,1.0,0.43,0.306,0.55
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.469,0.355,0.58
-Sundial-Base,Chronos-2,0.083,0.0,0.208,-0.14,-0.199,-0.085
-Sundial-Base,Toto-1.0,0.104,0.0,0.229,-0.1,-0.161,-0.039
-Sundial-Base,TimesFM-2.5,0.229,0.083,0.396,-0.08,-0.134,-0.032
-Sundial-Base,TiRex,0.146,0.042,0.312,-0.064,-0.119,-0.002
-Sundial-Base,Moirai-2.0,0.188,0.042,0.333,-0.039,-0.092,0.019
-Sundial-Base,Chronos-Bolt,0.479,0.292,0.688,0.017,-0.038,0.078
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,TabPFN-TS,0.583,0.375,0.75,0.028,-0.047,0.089
-Sundial-Base,AutoARIMA,0.917,0.792,1.0,0.23,0.167,0.289
-Sundial-Base,Stat. Ensemble,0.917,0.792,1.0,0.24,0.173,0.307
-Sundial-Base,AutoTheta,0.958,0.875,1.0,0.232,0.165,0.299
-Sundial-Base,AutoETS,0.958,0.875,1.0,0.34,0.233,0.45
-Sundial-Base,Seasonal Naive,0.917,0.792,1.0,0.277,0.209,0.353
-Sundial-Base,Naive,1.0,1.0,1.0,0.44,0.322,0.564
-Sundial-Base,Drift,1.0,1.0,1.0,0.478,0.371,0.591
-TabPFN-TS,Chronos-2,0.042,0.0,0.125,-0.173,-0.255,-0.103
-TabPFN-TS,Toto-1.0,0.125,0.0,0.25,-0.132,-0.224,-0.051
-TabPFN-TS,TimesFM-2.5,0.25,0.083,0.417,-0.111,-0.208,-0.031
-TabPFN-TS,TiRex,0.25,0.083,0.458,-0.095,-0.18,-0.02
-TabPFN-TS,Moirai-2.0,0.375,0.208,0.583,-0.07,-0.145,0.001
-TabPFN-TS,Chronos-Bolt,0.458,0.292,0.667,-0.012,-0.083,0.059
-TabPFN-TS,Sundial-Base,0.417,0.25,0.625,-0.029,-0.098,0.045
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,AutoARIMA,0.833,0.667,0.958,0.208,0.105,0.301
-TabPFN-TS,Stat. Ensemble,0.833,0.667,0.958,0.218,0.116,0.313
-TabPFN-TS,AutoTheta,0.75,0.583,0.917,0.21,0.115,0.302
-TabPFN-TS,AutoETS,0.875,0.75,1.0,0.32,0.18,0.47
-TabPFN-TS,Seasonal Naive,0.917,0.792,1.0,0.256,0.158,0.358
-TabPFN-TS,Naive,0.875,0.749,1.0,0.424,0.293,0.545
-TabPFN-TS,Drift,0.958,0.875,1.0,0.463,0.342,0.574
-AutoARIMA,Chronos-2,0.0,0.0,0.0,-0.48,-0.619,-0.362
-AutoARIMA,Toto-1.0,0.0,0.0,0.0,-0.429,-0.555,-0.328
-AutoARIMA,TimesFM-2.5,0.042,0.0,0.125,-0.402,-0.52,-0.305
-AutoARIMA,TiRex,0.0,0.0,0.0,-0.382,-0.496,-0.287
-AutoARIMA,Moirai-2.0,0.083,0.0,0.208,-0.35,-0.471,-0.249
-AutoARIMA,Chronos-Bolt,0.042,0.0,0.125,-0.277,-0.376,-0.177
-AutoARIMA,Sundial-Base,0.083,0.0,0.208,-0.299,-0.406,-0.201
-AutoARIMA,TabPFN-TS,0.167,0.042,0.333,-0.262,-0.432,-0.118
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,Stat. Ensemble,0.562,0.417,0.729,0.013,-0.018,0.052
-AutoARIMA,AutoTheta,0.5,0.292,0.708,0.003,-0.071,0.077
-AutoARIMA,AutoETS,0.688,0.5,0.875,0.142,-0.001,0.282
-AutoARIMA,Seasonal Naive,0.688,0.542,0.833,0.062,-0.022,0.144
-AutoARIMA,Naive,0.75,0.583,0.917,0.273,0.105,0.457
-AutoARIMA,Drift,0.875,0.75,1.0,0.322,0.167,0.494
-Stat. Ensemble,Chronos-2,0.0,0.0,0.0,-0.499,-0.653,-0.379
-Stat. Ensemble,Toto-1.0,0.0,0.0,0.0,-0.447,-0.595,-0.332
-Stat. Ensemble,TimesFM-2.5,0.042,0.0,0.125,-0.42,-0.56,-0.314
-Stat. Ensemble,TiRex,0.0,0.0,0.0,-0.4,-0.536,-0.295
-Stat. Ensemble,Moirai-2.0,0.083,0.0,0.208,-0.367,-0.51,-0.258
-Stat. Ensemble,Chronos-Bolt,0.042,0.0,0.125,-0.293,-0.396,-0.199
-Stat. Ensemble,Sundial-Base,0.083,0.0,0.208,-0.315,-0.443,-0.209
-Stat. Ensemble,TabPFN-TS,0.167,0.042,0.333,-0.278,-0.456,-0.131
-Stat. Ensemble,AutoARIMA,0.438,0.271,0.583,-0.013,-0.055,0.017
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoTheta,0.583,0.375,0.792,-0.01,-0.076,0.058
-Stat. Ensemble,AutoETS,0.688,0.5,0.854,0.131,-0.017,0.283
-Stat. Ensemble,Seasonal Naive,0.688,0.542,0.833,0.05,-0.037,0.126
-Stat. Ensemble,Naive,0.792,0.625,0.958,0.263,0.087,0.448
-Stat. Ensemble,Drift,0.875,0.75,1.0,0.314,0.149,0.483
-AutoTheta,Chronos-2,0.0,0.0,0.0,-0.485,-0.645,-0.347
-AutoTheta,Toto-1.0,0.042,0.0,0.125,-0.433,-0.597,-0.302
-AutoTheta,TimesFM-2.5,0.0,0.0,0.0,-0.407,-0.556,-0.292
-AutoTheta,TiRex,0.0,0.0,0.0,-0.386,-0.523,-0.272
-AutoTheta,Moirai-2.0,0.0,0.0,0.0,-0.354,-0.496,-0.247
-AutoTheta,Chronos-Bolt,0.0,0.0,0.0,-0.281,-0.368,-0.206
-AutoTheta,Sundial-Base,0.042,0.0,0.125,-0.303,-0.427,-0.198
-AutoTheta,TabPFN-TS,0.25,0.083,0.417,-0.266,-0.433,-0.13
-AutoTheta,AutoARIMA,0.5,0.292,0.708,-0.003,-0.083,0.067
-AutoTheta,Stat. Ensemble,0.417,0.208,0.625,0.01,-0.061,0.071
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,AutoETS,0.583,0.375,0.792,0.14,-0.017,0.299
-AutoTheta,Seasonal Naive,0.75,0.583,0.917,0.059,-0.044,0.146
-AutoTheta,Naive,0.792,0.625,0.958,0.27,0.117,0.437
-AutoTheta,Drift,1.0,1.0,1.0,0.32,0.178,0.469
-AutoETS,Chronos-2,0.0,0.0,0.0,-0.726,-1.116,-0.462
-AutoETS,Toto-1.0,0.0,0.0,0.0,-0.666,-1.015,-0.432
-AutoETS,TimesFM-2.5,0.0,0.0,0.0,-0.635,-0.983,-0.41
-AutoETS,TiRex,0.0,0.0,0.0,-0.611,-0.972,-0.366
-AutoETS,Moirai-2.0,0.042,0.0,0.125,-0.574,-0.958,-0.328
-AutoETS,Chronos-Bolt,0.083,0.0,0.208,-0.489,-0.851,-0.264
-AutoETS,Sundial-Base,0.042,0.0,0.125,-0.514,-0.819,-0.304
-AutoETS,TabPFN-TS,0.125,0.0,0.25,-0.471,-0.887,-0.22
-AutoETS,AutoARIMA,0.312,0.125,0.5,-0.166,-0.394,0.001
-AutoETS,Stat. Ensemble,0.312,0.146,0.5,-0.151,-0.395,0.017
-AutoETS,AutoTheta,0.417,0.208,0.625,-0.162,-0.427,0.017
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Seasonal Naive,0.562,0.375,0.75,-0.094,-0.311,0.064
-AutoETS,Naive,0.5,0.333,0.708,0.152,-0.065,0.379
-AutoETS,Drift,0.708,0.5,0.875,0.21,0.008,0.422
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-0.577,-0.781,-0.448
-Seasonal Naive,Toto-1.0,0.0,0.0,0.0,-0.522,-0.712,-0.396
-Seasonal Naive,TimesFM-2.5,0.042,0.0,0.125,-0.494,-0.677,-0.37
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.473,-0.65,-0.354
-Seasonal Naive,Moirai-2.0,0.083,0.0,0.208,-0.439,-0.616,-0.317
-Seasonal Naive,Chronos-Bolt,0.083,0.0,0.208,-0.36,-0.502,-0.245
-Seasonal Naive,Sundial-Base,0.083,0.0,0.208,-0.384,-0.547,-0.264
-Seasonal Naive,TabPFN-TS,0.083,0.0,0.208,-0.345,-0.557,-0.187
-Seasonal Naive,AutoARIMA,0.312,0.167,0.458,-0.066,-0.169,0.022
-Seasonal Naive,Stat. Ensemble,0.312,0.167,0.458,-0.052,-0.144,0.036
-Seasonal Naive,AutoTheta,0.25,0.083,0.417,-0.062,-0.171,0.042
-Seasonal Naive,AutoETS,0.438,0.25,0.625,0.086,-0.068,0.237
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Naive,0.583,0.417,0.75,0.225,0.015,0.419
-Seasonal Naive,Drift,0.792,0.625,0.958,0.278,0.081,0.454
-Naive,Chronos-2,0.0,0.0,0.0,-1.035,-1.682,-0.634
-Naive,Toto-1.0,0.0,0.0,0.0,-0.964,-1.6,-0.586
-Naive,TimesFM-2.5,0.0,0.0,0.0,-0.928,-1.544,-0.562
-Naive,TiRex,0.042,0.0,0.125,-0.9,-1.501,-0.535
-Naive,Moirai-2.0,0.042,0.0,0.125,-0.856,-1.426,-0.499
-Naive,Chronos-Bolt,0.042,0.0,0.125,-0.755,-1.223,-0.441
-Naive,Sundial-Base,0.0,0.0,0.0,-0.786,-1.296,-0.474
-Naive,TabPFN-TS,0.125,0.0,0.251,-0.735,-1.2,-0.415
-Naive,AutoARIMA,0.25,0.083,0.417,-0.375,-0.842,-0.118
-Naive,Stat. Ensemble,0.208,0.042,0.375,-0.357,-0.81,-0.095
-Naive,AutoTheta,0.208,0.042,0.375,-0.371,-0.776,-0.132
-Naive,AutoETS,0.5,0.292,0.667,-0.179,-0.609,0.061
-Naive,Seasonal Naive,0.417,0.25,0.583,-0.29,-0.721,-0.015
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,0.958,0.875,1.0,0.068,0.046,0.091
-Drift,Chronos-2,0.0,0.0,0.0,-1.184,-1.861,-0.752
-Drift,Toto-1.0,0.0,0.0,0.0,-1.108,-1.762,-0.712
-Drift,TimesFM-2.5,0.0,0.0,0.0,-1.069,-1.724,-0.671
-Drift,TiRex,0.0,0.0,0.0,-1.039,-1.672,-0.651
-Drift,Moirai-2.0,0.0,0.0,0.0,-0.992,-1.592,-0.615
-Drift,Chronos-Bolt,0.0,0.0,0.0,-0.884,-1.38,-0.549
-Drift,Sundial-Base,0.0,0.0,0.0,-0.917,-1.444,-0.589
-Drift,TabPFN-TS,0.042,0.0,0.125,-0.862,-1.347,-0.52
-Drift,AutoARIMA,0.125,0.0,0.25,-0.476,-0.974,-0.201
-Drift,Stat. Ensemble,0.125,0.0,0.25,-0.457,-0.935,-0.175
-Drift,AutoTheta,0.0,0.0,0.0,-0.471,-0.884,-0.217
-Drift,AutoETS,0.292,0.125,0.5,-0.266,-0.731,-0.008
-Drift,Seasonal Naive,0.208,0.042,0.375,-0.385,-0.831,-0.088
-Drift,Naive,0.042,0.0,0.125,-0.073,-0.101,-0.048
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/frequency_sub_hourly/pairwise_SQL.csv b/tables/frequency_sub_hourly/pairwise_SQL.csv
deleted file mode 100644
index f4c4fdee696d82af0ea5262d3c23b6aafff87475..0000000000000000000000000000000000000000
--- a/tables/frequency_sub_hourly/pairwise_SQL.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,Toto-1.0,0.583,0.375,0.75,0.051,0.013,0.092
-Chronos-2,TimesFM-2.5,0.792,0.625,0.958,0.07,0.031,0.113
-Chronos-2,TiRex,0.875,0.708,1.0,0.078,0.039,0.126
-Chronos-2,Moirai-2.0,0.958,0.875,1.0,0.125,0.077,0.179
-Chronos-2,TabPFN-TS,1.0,1.0,1.0,0.203,0.145,0.271
-Chronos-2,Sundial-Base,0.958,0.875,1.0,0.181,0.138,0.225
-Chronos-2,Chronos-Bolt,1.0,1.0,1.0,0.187,0.137,0.239
-Chronos-2,AutoARIMA,1.0,1.0,1.0,0.429,0.371,0.493
-Chronos-2,Stat. Ensemble,1.0,1.0,1.0,0.503,0.435,0.572
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.599,0.511,0.679
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.564,0.457,0.67
-Chronos-2,AutoETS,1.0,1.0,1.0,0.691,0.54,0.811
-Chronos-2,Naive,1.0,1.0,1.0,0.774,0.699,0.836
-Chronos-2,Drift,1.0,1.0,1.0,0.785,0.712,0.844
-Toto-1.0,Chronos-2,0.417,0.25,0.625,-0.054,-0.102,-0.013
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,TimesFM-2.5,0.646,0.458,0.833,0.02,-0.023,0.06
-Toto-1.0,TiRex,0.771,0.604,0.917,0.028,-0.002,0.052
-Toto-1.0,Moirai-2.0,0.812,0.646,0.958,0.077,0.038,0.115
-Toto-1.0,TabPFN-TS,0.833,0.667,0.958,0.16,0.086,0.237
-Toto-1.0,Sundial-Base,0.938,0.833,1.0,0.137,0.085,0.181
-Toto-1.0,Chronos-Bolt,0.896,0.77,1.0,0.143,0.095,0.189
-Toto-1.0,AutoARIMA,1.0,1.0,1.0,0.398,0.341,0.461
-Toto-1.0,Stat. Ensemble,1.0,1.0,1.0,0.476,0.402,0.552
-Toto-1.0,AutoTheta,0.958,0.875,1.0,0.577,0.482,0.664
-Toto-1.0,Seasonal Naive,1.0,1.0,1.0,0.54,0.422,0.655
-Toto-1.0,AutoETS,1.0,1.0,1.0,0.673,0.513,0.803
-Toto-1.0,Naive,1.0,1.0,1.0,0.762,0.679,0.83
-Toto-1.0,Drift,1.0,1.0,1.0,0.774,0.695,0.838
-TimesFM-2.5,Chronos-2,0.208,0.042,0.375,-0.075,-0.127,-0.032
-TimesFM-2.5,Toto-1.0,0.354,0.167,0.542,-0.02,-0.064,0.022
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TiRex,0.479,0.292,0.667,0.008,-0.031,0.05
-TimesFM-2.5,Moirai-2.0,0.771,0.583,0.917,0.058,0.01,0.11
-TimesFM-2.5,TabPFN-TS,0.833,0.667,0.958,0.143,0.071,0.211
-TimesFM-2.5,Sundial-Base,0.938,0.833,1.0,0.119,0.082,0.158
-TimesFM-2.5,Chronos-Bolt,0.854,0.708,0.958,0.125,0.072,0.178
-TimesFM-2.5,AutoARIMA,1.0,1.0,1.0,0.386,0.336,0.442
-TimesFM-2.5,Stat. Ensemble,1.0,1.0,1.0,0.466,0.393,0.535
-TimesFM-2.5,AutoTheta,1.0,1.0,1.0,0.568,0.475,0.655
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.531,0.422,0.639
-TimesFM-2.5,AutoETS,1.0,1.0,1.0,0.668,0.502,0.797
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.757,0.674,0.826
-TimesFM-2.5,Drift,1.0,1.0,1.0,0.769,0.69,0.834
-TiRex,Chronos-2,0.125,0.0,0.292,-0.084,-0.144,-0.04
-TiRex,Toto-1.0,0.229,0.083,0.396,-0.029,-0.055,0.002
-TiRex,TimesFM-2.5,0.521,0.333,0.708,-0.008,-0.052,0.03
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,Moirai-2.0,0.771,0.583,0.917,0.051,0.022,0.082
-TiRex,TabPFN-TS,0.792,0.625,0.917,0.136,0.061,0.211
-TiRex,Sundial-Base,0.938,0.833,1.0,0.112,0.051,0.16
-TiRex,Chronos-Bolt,0.938,0.833,1.0,0.118,0.077,0.158
-TiRex,AutoARIMA,1.0,1.0,1.0,0.381,0.329,0.441
-TiRex,Stat. Ensemble,1.0,1.0,1.0,0.461,0.39,0.534
-TiRex,AutoTheta,1.0,1.0,1.0,0.565,0.471,0.649
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.527,0.41,0.643
-TiRex,AutoETS,1.0,1.0,1.0,0.665,0.499,0.798
-TiRex,Naive,0.958,0.875,1.0,0.755,0.673,0.823
-TiRex,Drift,1.0,1.0,1.0,0.767,0.687,0.832
-Moirai-2.0,Chronos-2,0.042,0.0,0.125,-0.142,-0.219,-0.084
-Moirai-2.0,Toto-1.0,0.188,0.042,0.354,-0.084,-0.13,-0.039
-Moirai-2.0,TimesFM-2.5,0.229,0.083,0.417,-0.062,-0.123,-0.01
-Moirai-2.0,TiRex,0.229,0.083,0.417,-0.054,-0.09,-0.023
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,TabPFN-TS,0.75,0.582,0.917,0.09,0.014,0.159
-Moirai-2.0,Sundial-Base,0.854,0.708,0.979,0.064,-0.006,0.122
-Moirai-2.0,Chronos-Bolt,0.792,0.667,0.917,0.071,0.037,0.111
-Moirai-2.0,AutoARIMA,1.0,1.0,1.0,0.348,0.293,0.408
-Moirai-2.0,Stat. Ensemble,0.958,0.875,1.0,0.433,0.355,0.507
-Moirai-2.0,AutoTheta,0.958,0.875,1.0,0.542,0.448,0.629
-Moirai-2.0,Seasonal Naive,1.0,1.0,1.0,0.502,0.382,0.622
-Moirai-2.0,AutoETS,0.958,0.875,1.0,0.65,0.47,0.791
-Moirai-2.0,Naive,0.958,0.875,1.0,0.742,0.66,0.811
-Moirai-2.0,Drift,1.0,1.0,1.0,0.755,0.677,0.82
-TabPFN-TS,Chronos-2,0.0,0.0,0.0,-0.255,-0.372,-0.169
-TabPFN-TS,Toto-1.0,0.167,0.042,0.333,-0.191,-0.311,-0.094
-TabPFN-TS,TimesFM-2.5,0.167,0.042,0.333,-0.167,-0.267,-0.077
-TabPFN-TS,TiRex,0.208,0.083,0.375,-0.158,-0.267,-0.065
-TabPFN-TS,Moirai-2.0,0.25,0.083,0.418,-0.099,-0.189,-0.014
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Sundial-Base,0.458,0.25,0.667,-0.028,-0.117,0.049
-TabPFN-TS,Chronos-Bolt,0.458,0.25,0.667,-0.021,-0.107,0.061
-TabPFN-TS,AutoARIMA,0.917,0.792,1.0,0.284,0.206,0.357
-TabPFN-TS,Stat. Ensemble,0.917,0.792,1.0,0.376,0.292,0.462
-TabPFN-TS,AutoTheta,0.958,0.875,1.0,0.496,0.395,0.59
-TabPFN-TS,Seasonal Naive,0.958,0.875,1.0,0.452,0.326,0.577
-TabPFN-TS,AutoETS,0.875,0.75,1.0,0.619,0.419,0.775
-TabPFN-TS,Naive,1.0,1.0,1.0,0.717,0.63,0.787
-TabPFN-TS,Drift,1.0,1.0,1.0,0.73,0.648,0.798
-Sundial-Base,Chronos-2,0.042,0.0,0.125,-0.221,-0.29,-0.159
-Sundial-Base,Toto-1.0,0.062,0.0,0.167,-0.158,-0.221,-0.093
-Sundial-Base,TimesFM-2.5,0.062,0.0,0.167,-0.135,-0.187,-0.09
-Sundial-Base,TiRex,0.062,0.0,0.167,-0.126,-0.191,-0.053
-Sundial-Base,Moirai-2.0,0.146,0.021,0.292,-0.069,-0.139,0.006
-Sundial-Base,TabPFN-TS,0.542,0.333,0.75,0.028,-0.051,0.105
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Chronos-Bolt,0.438,0.25,0.625,0.007,-0.059,0.076
-Sundial-Base,AutoARIMA,1.0,1.0,1.0,0.303,0.246,0.365
-Sundial-Base,Stat. Ensemble,1.0,1.0,1.0,0.394,0.317,0.47
-Sundial-Base,AutoTheta,0.958,0.875,1.0,0.51,0.41,0.6
-Sundial-Base,Seasonal Naive,1.0,1.0,1.0,0.468,0.341,0.593
-Sundial-Base,AutoETS,1.0,1.0,1.0,0.628,0.447,0.776
-Sundial-Base,Naive,1.0,1.0,1.0,0.725,0.639,0.796
-Sundial-Base,Drift,1.0,1.0,1.0,0.738,0.654,0.807
-Chronos-Bolt,Chronos-2,0.0,0.0,0.0,-0.23,-0.314,-0.158
-Chronos-Bolt,Toto-1.0,0.104,0.0,0.23,-0.167,-0.232,-0.105
-Chronos-Bolt,TimesFM-2.5,0.146,0.042,0.292,-0.143,-0.217,-0.078
-Chronos-Bolt,TiRex,0.062,0.0,0.167,-0.134,-0.188,-0.083
-Chronos-Bolt,Moirai-2.0,0.208,0.083,0.333,-0.076,-0.125,-0.038
-Chronos-Bolt,TabPFN-TS,0.542,0.333,0.75,0.021,-0.065,0.096
-Chronos-Bolt,Sundial-Base,0.562,0.375,0.75,-0.007,-0.083,0.056
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,AutoARIMA,0.958,0.875,1.0,0.298,0.239,0.36
-Chronos-Bolt,Stat. Ensemble,0.917,0.792,1.0,0.389,0.311,0.462
-Chronos-Bolt,AutoTheta,0.958,0.875,1.0,0.507,0.407,0.593
-Chronos-Bolt,Seasonal Naive,0.958,0.875,1.0,0.464,0.336,0.589
-Chronos-Bolt,AutoETS,0.917,0.792,1.0,0.624,0.431,0.78
-Chronos-Bolt,Naive,0.958,0.875,1.0,0.723,0.636,0.795
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.736,0.653,0.805
-AutoARIMA,Chronos-2,0.0,0.0,0.0,-0.752,-0.971,-0.589
-AutoARIMA,Toto-1.0,0.0,0.0,0.0,-0.662,-0.856,-0.517
-AutoARIMA,TimesFM-2.5,0.0,0.0,0.0,-0.629,-0.792,-0.507
-AutoARIMA,TiRex,0.0,0.0,0.0,-0.616,-0.788,-0.49
-AutoARIMA,Moirai-2.0,0.0,0.0,0.0,-0.534,-0.69,-0.414
-AutoARIMA,TabPFN-TS,0.083,0.0,0.208,-0.396,-0.556,-0.26
-AutoARIMA,Sundial-Base,0.0,0.0,0.0,-0.436,-0.575,-0.326
-AutoARIMA,Chronos-Bolt,0.042,0.0,0.125,-0.425,-0.563,-0.314
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,Stat. Ensemble,0.729,0.604,0.854,0.129,0.055,0.205
-AutoARIMA,AutoTheta,0.75,0.583,0.917,0.297,0.16,0.424
-AutoARIMA,Seasonal Naive,0.729,0.604,0.854,0.236,0.077,0.386
-AutoARIMA,AutoETS,0.771,0.604,0.917,0.49,0.22,0.713
-AutoARIMA,Naive,0.917,0.792,1.0,0.605,0.485,0.708
-AutoARIMA,Drift,0.958,0.875,1.0,0.624,0.512,0.723
-Stat. Ensemble,Chronos-2,0.0,0.0,0.0,-1.013,-1.336,-0.769
-Stat. Ensemble,Toto-1.0,0.0,0.0,0.0,-0.91,-1.233,-0.673
-Stat. Ensemble,TimesFM-2.5,0.0,0.0,0.0,-0.872,-1.153,-0.646
-Stat. Ensemble,TiRex,0.0,0.0,0.0,-0.857,-1.146,-0.639
-Stat. Ensemble,Moirai-2.0,0.042,0.0,0.125,-0.762,-1.028,-0.55
-Stat. Ensemble,TabPFN-TS,0.083,0.0,0.208,-0.603,-0.858,-0.412
-Stat. Ensemble,Sundial-Base,0.0,0.0,0.0,-0.649,-0.887,-0.465
-Stat. Ensemble,Chronos-Bolt,0.083,0.0,0.208,-0.637,-0.86,-0.452
-Stat. Ensemble,AutoARIMA,0.271,0.146,0.396,-0.149,-0.259,-0.058
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoTheta,0.792,0.625,0.958,0.192,0.06,0.335
-Stat. Ensemble,Seasonal Naive,0.604,0.458,0.771,0.122,-0.066,0.298
-Stat. Ensemble,AutoETS,0.729,0.542,0.896,0.439,0.12,0.689
-Stat. Ensemble,Naive,0.917,0.792,1.0,0.546,0.41,0.66
-Stat. Ensemble,Drift,1.0,1.0,1.0,0.568,0.442,0.676
-AutoTheta,Chronos-2,0.0,0.0,0.0,-1.492,-2.115,-1.044
-AutoTheta,Toto-1.0,0.042,0.0,0.125,-1.364,-1.976,-0.929
-AutoTheta,TimesFM-2.5,0.0,0.0,0.0,-1.317,-1.896,-0.904
-AutoTheta,TiRex,0.0,0.0,0.0,-1.298,-1.852,-0.889
-AutoTheta,Moirai-2.0,0.042,0.0,0.125,-1.181,-1.693,-0.812
-AutoTheta,TabPFN-TS,0.042,0.0,0.125,-0.985,-1.437,-0.652
-AutoTheta,Sundial-Base,0.042,0.0,0.125,-1.041,-1.499,-0.695
-AutoTheta,Chronos-Bolt,0.042,0.0,0.125,-1.026,-1.454,-0.688
-AutoTheta,AutoARIMA,0.25,0.083,0.417,-0.422,-0.736,-0.191
-AutoTheta,Stat. Ensemble,0.208,0.042,0.375,-0.238,-0.503,-0.064
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Seasonal Naive,0.583,0.375,0.792,-0.087,-0.425,0.187
-AutoTheta,AutoETS,0.417,0.208,0.625,0.316,-0.143,0.641
-AutoTheta,Naive,0.792,0.625,0.958,0.438,0.307,0.552
-AutoTheta,Drift,0.958,0.875,1.0,0.465,0.339,0.573
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-1.293,-2.033,-0.842
-Seasonal Naive,Toto-1.0,0.0,0.0,0.0,-1.175,-1.896,-0.731
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-1.132,-1.771,-0.729
-Seasonal Naive,TiRex,0.0,0.0,0.0,-1.115,-1.799,-0.695
-Seasonal Naive,Moirai-2.0,0.0,0.0,0.0,-1.007,-1.647,-0.618
-Seasonal Naive,TabPFN-TS,0.042,0.0,0.125,-0.826,-1.363,-0.485
-Seasonal Naive,Sundial-Base,0.0,0.0,0.0,-0.878,-1.458,-0.518
-Seasonal Naive,Chronos-Bolt,0.042,0.0,0.125,-0.865,-1.431,-0.507
-Seasonal Naive,AutoARIMA,0.271,0.146,0.396,-0.308,-0.63,-0.084
-Seasonal Naive,Stat. Ensemble,0.396,0.229,0.542,-0.139,-0.424,0.062
-Seasonal Naive,AutoTheta,0.417,0.208,0.625,0.08,-0.23,0.298
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,AutoETS,0.479,0.292,0.667,0.367,-0.065,0.652
-Seasonal Naive,Naive,0.75,0.604,0.875,0.483,0.284,0.63
-Seasonal Naive,Drift,0.958,0.875,1.0,0.508,0.311,0.652
-AutoETS,Chronos-2,0.0,0.0,0.0,-2.236,-4.298,-1.173
-AutoETS,Toto-1.0,0.0,0.0,0.0,-2.063,-4.072,-1.052
-AutoETS,TimesFM-2.5,0.0,0.0,0.0,-2.013,-3.932,-1.009
-AutoETS,TiRex,0.0,0.0,0.0,-1.989,-3.958,-0.997
-AutoETS,Moirai-2.0,0.042,0.0,0.125,-1.854,-3.795,-0.887
-AutoETS,TabPFN-TS,0.125,0.0,0.25,-1.626,-3.45,-0.721
-AutoETS,Sundial-Base,0.0,0.0,0.0,-1.685,-3.458,-0.809
-AutoETS,Chronos-Bolt,0.083,0.0,0.208,-1.658,-3.552,-0.759
-AutoETS,AutoARIMA,0.229,0.083,0.396,-0.962,-2.481,-0.281
-AutoETS,Stat. Ensemble,0.271,0.104,0.458,-0.782,-2.221,-0.137
-AutoETS,AutoTheta,0.583,0.375,0.792,-0.461,-1.784,0.125
-AutoETS,Seasonal Naive,0.521,0.333,0.708,-0.58,-1.874,0.061
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Naive,0.667,0.5,0.833,0.148,-0.751,0.525
-AutoETS,Drift,0.75,0.583,0.917,0.186,-0.679,0.554
-Naive,Chronos-2,0.0,0.0,0.0,-3.433,-5.103,-2.32
-Naive,Toto-1.0,0.0,0.0,0.0,-3.206,-4.867,-2.12
-Naive,TimesFM-2.5,0.0,0.0,0.0,-3.122,-4.734,-2.067
-Naive,TiRex,0.042,0.0,0.125,-3.089,-4.662,-2.056
-Naive,Moirai-2.0,0.042,0.0,0.125,-2.881,-4.277,-1.937
-Naive,TabPFN-TS,0.0,0.0,0.0,-2.531,-3.704,-1.702
-Naive,Sundial-Base,0.0,0.0,0.0,-2.631,-3.909,-1.771
-Naive,Chronos-Bolt,0.042,0.0,0.125,-2.605,-3.867,-1.745
-Naive,AutoARIMA,0.083,0.0,0.208,-1.53,-2.43,-0.943
-Naive,Stat. Ensemble,0.083,0.0,0.208,-1.202,-1.944,-0.696
-Naive,AutoTheta,0.208,0.042,0.375,-0.779,-1.234,-0.443
-Naive,Seasonal Naive,0.25,0.125,0.396,-0.933,-1.702,-0.396
-Naive,AutoETS,0.333,0.167,0.5,-0.174,-1.107,0.429
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,0.958,0.875,1.0,0.048,0.034,0.064
-Drift,Chronos-2,0.0,0.0,0.0,-3.658,-5.424,-2.472
-Drift,Toto-1.0,0.0,0.0,0.0,-3.419,-5.171,-2.279
-Drift,TimesFM-2.5,0.0,0.0,0.0,-3.331,-5.04,-2.224
-Drift,TiRex,0.0,0.0,0.0,-3.296,-4.958,-2.2
-Drift,Moirai-2.0,0.0,0.0,0.0,-3.078,-4.557,-2.092
-Drift,TabPFN-TS,0.0,0.0,0.0,-2.71,-3.948,-1.839
-Drift,Sundial-Base,0.0,0.0,0.0,-2.816,-4.184,-1.894
-Drift,Chronos-Bolt,0.0,0.0,0.0,-2.788,-4.116,-1.88
-Drift,AutoARIMA,0.042,0.0,0.125,-1.658,-2.609,-1.05
-Drift,Stat. Ensemble,0.0,0.0,0.0,-1.314,-2.087,-0.791
-Drift,AutoTheta,0.042,0.0,0.125,-0.869,-1.342,-0.513
-Drift,Seasonal Naive,0.042,0.0,0.125,-1.032,-1.871,-0.452
-Drift,AutoETS,0.25,0.083,0.417,-0.229,-1.244,0.404
-Drift,Naive,0.042,0.0,0.125,-0.051,-0.068,-0.035
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/frequency_sub_hourly/pairwise_WAPE.csv b/tables/frequency_sub_hourly/pairwise_WAPE.csv
deleted file mode 100644
index d8ac1656651264c5812fe91e3e6eee5f7f6aa1e6..0000000000000000000000000000000000000000
--- a/tables/frequency_sub_hourly/pairwise_WAPE.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,Toto-1.0,0.458,0.25,0.625,0.05,-0.007,0.129
-Chronos-2,TimesFM-2.5,0.708,0.5,0.875,0.078,0.031,0.134
-Chronos-2,TiRex,0.875,0.75,1.0,0.086,0.032,0.169
-Chronos-2,Moirai-2.0,0.958,0.875,1.0,0.102,0.045,0.179
-Chronos-2,TabPFN-TS,0.958,0.875,1.0,0.14,0.077,0.21
-Chronos-2,Chronos-Bolt,1.0,1.0,1.0,0.163,0.093,0.245
-Chronos-2,Sundial-Base,1.0,1.0,1.0,0.145,0.101,0.189
-Chronos-2,Stat. Ensemble,1.0,1.0,1.0,0.381,0.313,0.444
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.343,0.27,0.421
-Chronos-2,AutoARIMA,1.0,1.0,1.0,0.381,0.31,0.444
-Chronos-2,Naive,0.958,0.875,1.0,0.435,0.349,0.527
-Chronos-2,AutoETS,1.0,1.0,1.0,0.435,0.327,0.548
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.438,0.356,0.517
-Chronos-2,Drift,1.0,1.0,1.0,0.485,0.412,0.562
-Toto-1.0,Chronos-2,0.542,0.375,0.75,-0.052,-0.147,0.007
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,TimesFM-2.5,0.729,0.542,0.875,0.03,-0.017,0.075
-Toto-1.0,TiRex,0.729,0.542,0.896,0.038,0.005,0.07
-Toto-1.0,Moirai-2.0,0.812,0.646,0.958,0.055,0.014,0.094
-Toto-1.0,TabPFN-TS,0.875,0.75,1.0,0.095,0.024,0.166
-Toto-1.0,Chronos-Bolt,0.812,0.646,0.958,0.119,0.063,0.179
-Toto-1.0,Sundial-Base,0.896,0.771,1.0,0.1,0.031,0.158
-Toto-1.0,Stat. Ensemble,1.0,1.0,1.0,0.349,0.28,0.421
-Toto-1.0,AutoTheta,1.0,1.0,1.0,0.308,0.241,0.381
-Toto-1.0,AutoARIMA,1.0,1.0,1.0,0.348,0.282,0.415
-Toto-1.0,Naive,0.958,0.875,1.0,0.405,0.322,0.502
-Toto-1.0,AutoETS,1.0,1.0,1.0,0.405,0.296,0.525
-Toto-1.0,Seasonal Naive,1.0,1.0,1.0,0.408,0.333,0.489
-Toto-1.0,Drift,1.0,1.0,1.0,0.458,0.388,0.541
-TimesFM-2.5,Chronos-2,0.292,0.125,0.5,-0.085,-0.155,-0.032
-TimesFM-2.5,Toto-1.0,0.271,0.125,0.458,-0.031,-0.081,0.017
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TiRex,0.521,0.312,0.708,0.009,-0.037,0.053
-TimesFM-2.5,Moirai-2.0,0.771,0.583,0.917,0.026,-0.032,0.075
-TimesFM-2.5,TabPFN-TS,0.75,0.542,0.917,0.067,0.002,0.132
-TimesFM-2.5,Chronos-Bolt,0.854,0.708,0.958,0.092,0.041,0.148
-TimesFM-2.5,Sundial-Base,0.812,0.625,0.958,0.072,0.025,0.118
-TimesFM-2.5,Stat. Ensemble,0.958,0.875,1.0,0.329,0.257,0.399
-TimesFM-2.5,AutoTheta,1.0,1.0,1.0,0.287,0.229,0.356
-TimesFM-2.5,AutoARIMA,0.958,0.875,1.0,0.328,0.263,0.389
-TimesFM-2.5,Naive,0.958,0.875,1.0,0.387,0.296,0.48
-TimesFM-2.5,AutoETS,0.958,0.875,1.0,0.387,0.275,0.513
-TimesFM-2.5,Seasonal Naive,0.958,0.875,1.0,0.39,0.31,0.47
-TimesFM-2.5,Drift,0.958,0.875,1.0,0.442,0.365,0.521
-TiRex,Chronos-2,0.125,0.0,0.25,-0.094,-0.203,-0.033
-TiRex,Toto-1.0,0.271,0.104,0.458,-0.04,-0.075,-0.005
-TiRex,TimesFM-2.5,0.479,0.292,0.688,-0.009,-0.056,0.035
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,Moirai-2.0,0.646,0.458,0.833,0.018,-0.01,0.044
-TiRex,TabPFN-TS,0.708,0.5,0.875,0.059,-0.026,0.14
-TiRex,Chronos-Bolt,0.812,0.646,0.958,0.085,0.033,0.141
-TiRex,Sundial-Base,0.854,0.688,0.958,0.064,-0.011,0.122
-TiRex,Stat. Ensemble,0.917,0.792,1.0,0.323,0.249,0.397
-TiRex,AutoTheta,1.0,1.0,1.0,0.281,0.222,0.349
-TiRex,AutoARIMA,0.958,0.875,1.0,0.323,0.256,0.387
-TiRex,Naive,0.917,0.792,1.0,0.382,0.285,0.485
-TiRex,AutoETS,0.917,0.792,1.0,0.382,0.261,0.518
-TiRex,Seasonal Naive,0.958,0.875,1.0,0.385,0.308,0.467
-TiRex,Drift,0.958,0.875,1.0,0.437,0.36,0.522
-Moirai-2.0,Chronos-2,0.042,0.0,0.125,-0.114,-0.218,-0.047
-Moirai-2.0,Toto-1.0,0.188,0.042,0.354,-0.058,-0.104,-0.014
-Moirai-2.0,TimesFM-2.5,0.229,0.083,0.417,-0.027,-0.081,0.031
-Moirai-2.0,TiRex,0.354,0.167,0.542,-0.018,-0.046,0.01
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,TabPFN-TS,0.542,0.333,0.75,0.042,-0.044,0.134
-Moirai-2.0,Chronos-Bolt,0.708,0.542,0.854,0.068,0.018,0.135
-Moirai-2.0,Sundial-Base,0.771,0.604,0.917,0.048,-0.026,0.109
-Moirai-2.0,Stat. Ensemble,0.958,0.875,1.0,0.311,0.238,0.386
-Moirai-2.0,AutoTheta,1.0,1.0,1.0,0.268,0.205,0.337
-Moirai-2.0,AutoARIMA,0.958,0.875,1.0,0.31,0.242,0.375
-Moirai-2.0,Naive,0.917,0.792,1.0,0.371,0.278,0.472
-Moirai-2.0,AutoETS,1.0,1.0,1.0,0.37,0.245,0.51
-Moirai-2.0,Seasonal Naive,0.917,0.792,1.0,0.374,0.293,0.452
-Moirai-2.0,Drift,0.958,0.875,1.0,0.427,0.351,0.51
-TabPFN-TS,Chronos-2,0.042,0.0,0.125,-0.163,-0.266,-0.084
-TabPFN-TS,Toto-1.0,0.125,0.0,0.25,-0.105,-0.2,-0.025
-TabPFN-TS,TimesFM-2.5,0.25,0.083,0.458,-0.072,-0.152,-0.002
-TabPFN-TS,TiRex,0.292,0.125,0.5,-0.063,-0.163,0.025
-TabPFN-TS,Moirai-2.0,0.458,0.25,0.667,-0.044,-0.155,0.042
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Chronos-Bolt,0.583,0.375,0.792,0.027,-0.056,0.108
-TabPFN-TS,Sundial-Base,0.5,0.292,0.708,0.006,-0.091,0.086
-TabPFN-TS,Stat. Ensemble,0.958,0.875,1.0,0.28,0.199,0.364
-TabPFN-TS,AutoTheta,0.875,0.75,1.0,0.236,0.148,0.328
-TabPFN-TS,AutoARIMA,0.958,0.875,1.0,0.28,0.207,0.356
-TabPFN-TS,Naive,0.875,0.708,1.0,0.343,0.227,0.464
-TabPFN-TS,AutoETS,0.875,0.75,1.0,0.343,0.203,0.492
-TabPFN-TS,Seasonal Naive,1.0,1.0,1.0,0.346,0.26,0.44
-TabPFN-TS,Drift,0.917,0.792,1.0,0.402,0.302,0.503
-Chronos-Bolt,Chronos-2,0.0,0.0,0.0,-0.195,-0.324,-0.102
-Chronos-Bolt,Toto-1.0,0.188,0.042,0.354,-0.136,-0.218,-0.067
-Chronos-Bolt,TimesFM-2.5,0.146,0.042,0.292,-0.102,-0.173,-0.042
-Chronos-Bolt,TiRex,0.188,0.042,0.354,-0.092,-0.165,-0.034
-Chronos-Bolt,Moirai-2.0,0.292,0.146,0.458,-0.073,-0.156,-0.018
-Chronos-Bolt,TabPFN-TS,0.417,0.208,0.625,-0.028,-0.121,0.053
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Sundial-Base,0.562,0.375,0.75,-0.022,-0.121,0.051
-Chronos-Bolt,Stat. Ensemble,0.958,0.875,1.0,0.26,0.184,0.328
-Chronos-Bolt,AutoTheta,0.958,0.875,1.0,0.214,0.16,0.268
-Chronos-Bolt,AutoARIMA,0.958,0.875,1.0,0.26,0.187,0.327
-Chronos-Bolt,Naive,0.875,0.75,1.0,0.325,0.227,0.428
-Chronos-Bolt,AutoETS,0.958,0.875,1.0,0.324,0.192,0.475
-Chronos-Bolt,Seasonal Naive,0.958,0.875,1.0,0.328,0.255,0.4
-Chronos-Bolt,Drift,0.917,0.792,1.0,0.385,0.3,0.471
-Sundial-Base,Chronos-2,0.0,0.0,0.0,-0.169,-0.234,-0.113
-Sundial-Base,Toto-1.0,0.104,0.0,0.229,-0.111,-0.188,-0.033
-Sundial-Base,TimesFM-2.5,0.188,0.042,0.375,-0.078,-0.134,-0.025
-Sundial-Base,TiRex,0.146,0.042,0.312,-0.069,-0.138,0.011
-Sundial-Base,Moirai-2.0,0.229,0.083,0.396,-0.05,-0.122,0.026
-Sundial-Base,TabPFN-TS,0.5,0.292,0.708,-0.006,-0.094,0.083
-Sundial-Base,Chronos-Bolt,0.438,0.25,0.625,0.022,-0.054,0.108
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Stat. Ensemble,0.958,0.875,1.0,0.276,0.209,0.352
-Sundial-Base,AutoTheta,0.875,0.75,1.0,0.231,0.155,0.314
-Sundial-Base,AutoARIMA,0.958,0.875,1.0,0.276,0.209,0.338
-Sundial-Base,Naive,0.917,0.792,1.0,0.339,0.25,0.433
-Sundial-Base,AutoETS,0.917,0.792,1.0,0.339,0.22,0.463
-Sundial-Base,Seasonal Naive,0.958,0.875,1.0,0.343,0.265,0.426
-Sundial-Base,Drift,0.958,0.875,1.0,0.398,0.327,0.477
-Stat. Ensemble,Chronos-2,0.0,0.0,0.0,-0.616,-0.799,-0.455
-Stat. Ensemble,Toto-1.0,0.0,0.0,0.0,-0.535,-0.728,-0.388
-Stat. Ensemble,TimesFM-2.5,0.042,0.0,0.125,-0.49,-0.665,-0.345
-Stat. Ensemble,TiRex,0.083,0.0,0.208,-0.477,-0.657,-0.332
-Stat. Ensemble,Moirai-2.0,0.042,0.0,0.125,-0.451,-0.628,-0.313
-Stat. Ensemble,TabPFN-TS,0.042,0.0,0.125,-0.39,-0.572,-0.248
-Stat. Ensemble,Chronos-Bolt,0.042,0.0,0.125,-0.352,-0.488,-0.225
-Stat. Ensemble,Sundial-Base,0.042,0.0,0.125,-0.382,-0.542,-0.265
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoTheta,0.667,0.499,0.833,-0.062,-0.175,0.023
-Stat. Ensemble,AutoARIMA,0.479,0.312,0.625,-0.0,-0.054,0.039
-Stat. Ensemble,Naive,0.75,0.583,0.917,0.087,-0.041,0.202
-Stat. Ensemble,AutoETS,0.688,0.5,0.875,0.087,-0.067,0.272
-Stat. Ensemble,Seasonal Naive,0.729,0.604,0.854,0.092,0.023,0.17
-Stat. Ensemble,Drift,0.792,0.625,0.958,0.168,0.068,0.262
-AutoTheta,Chronos-2,0.0,0.0,0.0,-0.521,-0.728,-0.371
-AutoTheta,Toto-1.0,0.0,0.0,0.0,-0.446,-0.616,-0.318
-AutoTheta,TimesFM-2.5,0.0,0.0,0.0,-0.402,-0.553,-0.297
-AutoTheta,TiRex,0.0,0.0,0.0,-0.39,-0.535,-0.285
-AutoTheta,Moirai-2.0,0.0,0.0,0.0,-0.366,-0.509,-0.258
-AutoTheta,TabPFN-TS,0.125,0.0,0.25,-0.308,-0.488,-0.174
-AutoTheta,Chronos-Bolt,0.042,0.0,0.125,-0.273,-0.366,-0.191
-AutoTheta,Sundial-Base,0.125,0.0,0.25,-0.301,-0.458,-0.184
-AutoTheta,Stat. Ensemble,0.333,0.167,0.501,0.058,-0.023,0.149
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,AutoARIMA,0.458,0.25,0.667,0.058,-0.042,0.153
-AutoTheta,Naive,0.75,0.583,0.917,0.14,0.042,0.242
-AutoTheta,AutoETS,0.5,0.292,0.708,0.14,-0.001,0.316
-AutoTheta,Seasonal Naive,0.792,0.625,0.958,0.145,0.062,0.228
-AutoTheta,Drift,0.958,0.875,1.0,0.217,0.141,0.309
-AutoARIMA,Chronos-2,0.0,0.0,0.0,-0.615,-0.798,-0.45
-AutoARIMA,Toto-1.0,0.0,0.0,0.0,-0.535,-0.71,-0.394
-AutoARIMA,TimesFM-2.5,0.042,0.0,0.125,-0.489,-0.637,-0.356
-AutoARIMA,TiRex,0.042,0.0,0.125,-0.476,-0.632,-0.343
-AutoARIMA,Moirai-2.0,0.042,0.0,0.125,-0.45,-0.6,-0.319
-AutoARIMA,TabPFN-TS,0.042,0.0,0.125,-0.389,-0.554,-0.261
-AutoARIMA,Chronos-Bolt,0.042,0.0,0.125,-0.351,-0.486,-0.23
-AutoARIMA,Sundial-Base,0.042,0.0,0.125,-0.381,-0.51,-0.264
-AutoARIMA,Stat. Ensemble,0.521,0.375,0.688,0.0,-0.041,0.051
-AutoARIMA,AutoTheta,0.542,0.333,0.75,-0.062,-0.18,0.04
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,Naive,0.625,0.417,0.833,0.087,-0.045,0.211
-AutoARIMA,AutoETS,0.646,0.458,0.833,0.087,-0.076,0.266
-AutoARIMA,Seasonal Naive,0.688,0.542,0.833,0.092,0.015,0.176
-AutoARIMA,Drift,0.75,0.583,0.917,0.169,0.065,0.265
-Naive,Chronos-2,0.042,0.0,0.125,-0.77,-1.113,-0.537
-Naive,Toto-1.0,0.042,0.0,0.125,-0.681,-1.01,-0.475
-Naive,TimesFM-2.5,0.042,0.0,0.125,-0.631,-0.924,-0.421
-Naive,TiRex,0.083,0.0,0.208,-0.617,-0.941,-0.398
-Naive,Moirai-2.0,0.083,0.0,0.208,-0.589,-0.896,-0.386
-Naive,TabPFN-TS,0.125,0.0,0.292,-0.522,-0.864,-0.294
-Naive,Chronos-Bolt,0.125,0.0,0.25,-0.481,-0.749,-0.294
-Naive,Sundial-Base,0.083,0.0,0.208,-0.513,-0.764,-0.333
-Naive,Stat. Ensemble,0.25,0.083,0.417,-0.095,-0.254,0.039
-Naive,AutoTheta,0.25,0.083,0.417,-0.163,-0.32,-0.044
-Naive,AutoARIMA,0.375,0.167,0.583,-0.096,-0.267,0.043
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,AutoETS,0.542,0.333,0.75,-0.0,-0.124,0.118
-Naive,Seasonal Naive,0.5,0.333,0.667,0.005,-0.133,0.133
-Naive,Drift,0.958,0.875,1.0,0.089,0.051,0.129
-AutoETS,Chronos-2,0.0,0.0,0.0,-0.769,-1.213,-0.486
-AutoETS,Toto-1.0,0.0,0.0,0.0,-0.681,-1.106,-0.42
-AutoETS,TimesFM-2.5,0.042,0.0,0.125,-0.631,-1.051,-0.38
-AutoETS,TiRex,0.083,0.0,0.208,-0.617,-1.073,-0.353
-AutoETS,Moirai-2.0,0.0,0.0,0.0,-0.588,-1.04,-0.325
-AutoETS,TabPFN-TS,0.125,0.0,0.25,-0.522,-0.967,-0.255
-AutoETS,Chronos-Bolt,0.042,0.0,0.125,-0.48,-0.905,-0.238
-AutoETS,Sundial-Base,0.083,0.0,0.208,-0.513,-0.863,-0.282
-AutoETS,Stat. Ensemble,0.312,0.125,0.5,-0.095,-0.373,0.062
-AutoETS,AutoTheta,0.5,0.292,0.708,-0.163,-0.463,0.001
-AutoETS,AutoARIMA,0.354,0.167,0.542,-0.095,-0.362,0.07
-AutoETS,Naive,0.458,0.25,0.667,0.0,-0.133,0.11
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Seasonal Naive,0.604,0.417,0.792,0.006,-0.257,0.171
-AutoETS,Drift,0.792,0.625,0.958,0.089,-0.045,0.19
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-0.779,-1.072,-0.552
-Seasonal Naive,Toto-1.0,0.0,0.0,0.0,-0.691,-0.957,-0.498
-Seasonal Naive,TimesFM-2.5,0.042,0.0,0.125,-0.64,-0.885,-0.449
-Seasonal Naive,TiRex,0.042,0.0,0.125,-0.626,-0.875,-0.445
-Seasonal Naive,Moirai-2.0,0.083,0.0,0.208,-0.597,-0.825,-0.415
-Seasonal Naive,TabPFN-TS,0.0,0.0,0.0,-0.53,-0.785,-0.352
-Seasonal Naive,Chronos-Bolt,0.042,0.0,0.125,-0.489,-0.667,-0.342
-Seasonal Naive,Sundial-Base,0.042,0.0,0.125,-0.521,-0.743,-0.36
-Seasonal Naive,Stat. Ensemble,0.271,0.146,0.396,-0.101,-0.204,-0.023
-Seasonal Naive,AutoTheta,0.208,0.042,0.375,-0.169,-0.295,-0.066
-Seasonal Naive,AutoARIMA,0.312,0.167,0.458,-0.102,-0.214,-0.015
-Seasonal Naive,Naive,0.5,0.333,0.667,-0.005,-0.153,0.117
-Seasonal Naive,AutoETS,0.396,0.208,0.583,-0.006,-0.206,0.205
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Drift,0.667,0.5,0.875,0.084,-0.026,0.185
-Drift,Chronos-2,0.0,0.0,0.0,-0.943,-1.284,-0.701
-Drift,Toto-1.0,0.0,0.0,0.0,-0.846,-1.177,-0.635
-Drift,TimesFM-2.5,0.042,0.0,0.125,-0.791,-1.089,-0.574
-Drift,TiRex,0.042,0.0,0.125,-0.776,-1.091,-0.562
-Drift,Moirai-2.0,0.042,0.0,0.125,-0.745,-1.041,-0.542
-Drift,TabPFN-TS,0.083,0.0,0.208,-0.671,-1.012,-0.432
-Drift,Chronos-Bolt,0.083,0.0,0.208,-0.626,-0.891,-0.429
-Drift,Sundial-Base,0.042,0.0,0.125,-0.662,-0.913,-0.485
-Drift,Stat. Ensemble,0.208,0.042,0.375,-0.202,-0.356,-0.073
-Drift,AutoTheta,0.042,0.0,0.125,-0.277,-0.446,-0.164
-Drift,AutoARIMA,0.25,0.083,0.417,-0.203,-0.361,-0.069
-Drift,Naive,0.042,0.0,0.125,-0.098,-0.149,-0.054
-Drift,AutoETS,0.208,0.042,0.375,-0.098,-0.235,0.043
-Drift,Seasonal Naive,0.333,0.125,0.5,-0.092,-0.227,0.025
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/frequency_sub_hourly/pairwise_WQL.csv b/tables/frequency_sub_hourly/pairwise_WQL.csv
deleted file mode 100644
index 1cbae5c2d629974e639c9fae77a676073e3bda4d..0000000000000000000000000000000000000000
--- a/tables/frequency_sub_hourly/pairwise_WQL.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,Toto-1.0,0.5,0.292,0.708,0.058,-0.002,0.142
-Chronos-2,TimesFM-2.5,0.75,0.583,0.917,0.085,0.032,0.149
-Chronos-2,TiRex,0.958,0.875,1.0,0.093,0.035,0.184
-Chronos-2,Moirai-2.0,0.958,0.875,1.0,0.123,0.058,0.212
-Chronos-2,TabPFN-TS,1.0,1.0,1.0,0.177,0.114,0.244
-Chronos-2,Chronos-Bolt,1.0,1.0,1.0,0.202,0.13,0.286
-Chronos-2,Sundial-Base,1.0,1.0,1.0,0.192,0.152,0.235
-Chronos-2,AutoARIMA,1.0,1.0,1.0,0.481,0.399,0.555
-Chronos-2,Stat. Ensemble,1.0,1.0,1.0,0.548,0.47,0.617
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.616,0.529,0.688
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.606,0.517,0.691
-Chronos-2,AutoETS,1.0,1.0,1.0,0.723,0.59,0.832
-Chronos-2,Naive,1.0,1.0,1.0,0.769,0.708,0.815
-Chronos-2,Drift,1.0,1.0,1.0,0.78,0.72,0.824
-Toto-1.0,Chronos-2,0.5,0.292,0.708,-0.062,-0.165,0.002
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,TimesFM-2.5,0.646,0.458,0.833,0.028,-0.023,0.077
-Toto-1.0,TiRex,0.729,0.542,0.896,0.037,0.006,0.068
-Toto-1.0,Moirai-2.0,0.812,0.667,0.958,0.069,0.029,0.107
-Toto-1.0,TabPFN-TS,0.833,0.667,0.958,0.126,0.041,0.204
-Toto-1.0,Chronos-Bolt,0.896,0.77,1.0,0.152,0.1,0.209
-Toto-1.0,Sundial-Base,0.938,0.833,1.0,0.142,0.072,0.2
-Toto-1.0,AutoARIMA,1.0,1.0,1.0,0.449,0.377,0.525
-Toto-1.0,Stat. Ensemble,1.0,1.0,1.0,0.521,0.439,0.597
-Toto-1.0,AutoTheta,1.0,1.0,1.0,0.592,0.499,0.671
-Toto-1.0,Seasonal Naive,1.0,1.0,1.0,0.582,0.485,0.667
-Toto-1.0,AutoETS,1.0,1.0,1.0,0.705,0.55,0.825
-Toto-1.0,Naive,1.0,1.0,1.0,0.755,0.683,0.809
-Toto-1.0,Drift,1.0,1.0,1.0,0.766,0.697,0.818
-TimesFM-2.5,Chronos-2,0.25,0.083,0.417,-0.093,-0.175,-0.033
-TimesFM-2.5,Toto-1.0,0.354,0.167,0.542,-0.029,-0.083,0.022
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TiRex,0.521,0.312,0.708,0.009,-0.041,0.061
-TimesFM-2.5,Moirai-2.0,0.812,0.646,0.958,0.042,-0.014,0.094
-TimesFM-2.5,TabPFN-TS,0.75,0.542,0.917,0.1,0.023,0.178
-TimesFM-2.5,Chronos-Bolt,0.896,0.75,1.0,0.127,0.078,0.178
-TimesFM-2.5,Sundial-Base,0.896,0.771,1.0,0.117,0.068,0.164
-TimesFM-2.5,AutoARIMA,1.0,1.0,1.0,0.432,0.354,0.516
-TimesFM-2.5,Stat. Ensemble,1.0,1.0,1.0,0.507,0.417,0.587
-TimesFM-2.5,AutoTheta,1.0,1.0,1.0,0.58,0.484,0.664
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.569,0.475,0.66
-TimesFM-2.5,AutoETS,1.0,1.0,1.0,0.697,0.541,0.82
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.747,0.668,0.803
-TimesFM-2.5,Drift,1.0,1.0,1.0,0.76,0.684,0.813
-TiRex,Chronos-2,0.042,0.0,0.125,-0.103,-0.226,-0.036
-TiRex,Toto-1.0,0.271,0.104,0.458,-0.039,-0.073,-0.006
-TiRex,TimesFM-2.5,0.479,0.292,0.688,-0.009,-0.065,0.04
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,Moirai-2.0,0.812,0.646,0.958,0.033,0.003,0.064
-TiRex,TabPFN-TS,0.708,0.542,0.875,0.092,-0.009,0.176
-TiRex,Chronos-Bolt,0.896,0.771,1.0,0.119,0.072,0.172
-TiRex,Sundial-Base,0.938,0.833,1.0,0.109,0.026,0.171
-TiRex,AutoARIMA,1.0,1.0,1.0,0.427,0.355,0.502
-TiRex,Stat. Ensemble,1.0,1.0,1.0,0.502,0.419,0.576
-TiRex,AutoTheta,1.0,1.0,1.0,0.576,0.486,0.653
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.565,0.466,0.651
-TiRex,AutoETS,1.0,1.0,1.0,0.695,0.534,0.818
-TiRex,Naive,1.0,1.0,1.0,0.745,0.67,0.801
-TiRex,Drift,1.0,1.0,1.0,0.757,0.687,0.81
-Moirai-2.0,Chronos-2,0.042,0.0,0.125,-0.14,-0.27,-0.061
-Moirai-2.0,Toto-1.0,0.188,0.042,0.333,-0.074,-0.12,-0.03
-Moirai-2.0,TimesFM-2.5,0.188,0.042,0.354,-0.043,-0.104,0.014
-Moirai-2.0,TiRex,0.188,0.042,0.354,-0.034,-0.068,-0.003
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,TabPFN-TS,0.542,0.333,0.75,0.061,-0.04,0.152
-Moirai-2.0,Chronos-Bolt,0.875,0.792,0.958,0.09,0.044,0.153
-Moirai-2.0,Sundial-Base,0.896,0.771,1.0,0.079,-0.011,0.145
-Moirai-2.0,AutoARIMA,1.0,1.0,1.0,0.408,0.335,0.49
-Moirai-2.0,Stat. Ensemble,1.0,1.0,1.0,0.485,0.398,0.564
-Moirai-2.0,AutoTheta,1.0,1.0,1.0,0.562,0.467,0.645
-Moirai-2.0,Seasonal Naive,1.0,1.0,1.0,0.551,0.451,0.641
-Moirai-2.0,AutoETS,1.0,1.0,1.0,0.685,0.518,0.816
-Moirai-2.0,Naive,1.0,1.0,1.0,0.736,0.662,0.793
-Moirai-2.0,Drift,1.0,1.0,1.0,0.749,0.679,0.803
-TabPFN-TS,Chronos-2,0.0,0.0,0.0,-0.214,-0.323,-0.129
-TabPFN-TS,Toto-1.0,0.167,0.042,0.333,-0.144,-0.256,-0.043
-TabPFN-TS,TimesFM-2.5,0.25,0.083,0.458,-0.111,-0.216,-0.023
-TabPFN-TS,TiRex,0.292,0.125,0.458,-0.101,-0.214,0.009
-TabPFN-TS,Moirai-2.0,0.458,0.25,0.667,-0.065,-0.179,0.038
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Chronos-Bolt,0.542,0.333,0.75,0.03,-0.074,0.124
-TabPFN-TS,Sundial-Base,0.625,0.458,0.833,0.019,-0.087,0.113
-TabPFN-TS,AutoARIMA,0.917,0.792,1.0,0.369,0.268,0.469
-TabPFN-TS,Stat. Ensemble,0.958,0.875,1.0,0.452,0.352,0.535
-TabPFN-TS,AutoTheta,1.0,1.0,1.0,0.533,0.425,0.626
-TabPFN-TS,Seasonal Naive,1.0,1.0,1.0,0.522,0.407,0.63
-TabPFN-TS,AutoETS,0.958,0.875,1.0,0.671,0.49,0.808
-TabPFN-TS,Naive,1.0,1.0,1.0,0.719,0.637,0.779
-TabPFN-TS,Drift,1.0,1.0,1.0,0.733,0.655,0.791
-Chronos-Bolt,Chronos-2,0.0,0.0,0.0,-0.252,-0.4,-0.15
-Chronos-Bolt,Toto-1.0,0.104,0.0,0.23,-0.179,-0.264,-0.111
-Chronos-Bolt,TimesFM-2.5,0.104,0.0,0.25,-0.146,-0.216,-0.084
-Chronos-Bolt,TiRex,0.104,0.0,0.229,-0.135,-0.208,-0.077
-Chronos-Bolt,Moirai-2.0,0.125,0.042,0.208,-0.098,-0.181,-0.046
-Chronos-Bolt,TabPFN-TS,0.458,0.25,0.667,-0.031,-0.141,0.069
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Sundial-Base,0.521,0.333,0.729,-0.012,-0.116,0.069
-Chronos-Bolt,AutoARIMA,0.958,0.875,1.0,0.35,0.261,0.445
-Chronos-Bolt,Stat. Ensemble,0.958,0.875,1.0,0.434,0.331,0.52
-Chronos-Bolt,AutoTheta,1.0,1.0,1.0,0.519,0.407,0.609
-Chronos-Bolt,Seasonal Naive,1.0,1.0,1.0,0.507,0.401,0.604
-Chronos-Bolt,AutoETS,1.0,1.0,1.0,0.657,0.468,0.8
-Chronos-Bolt,Naive,1.0,1.0,1.0,0.711,0.623,0.773
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.725,0.641,0.784
-Sundial-Base,Chronos-2,0.0,0.0,0.0,-0.238,-0.307,-0.18
-Sundial-Base,Toto-1.0,0.062,0.0,0.167,-0.166,-0.251,-0.077
-Sundial-Base,TimesFM-2.5,0.104,0.0,0.229,-0.133,-0.196,-0.073
-Sundial-Base,TiRex,0.062,0.0,0.167,-0.122,-0.206,-0.026
-Sundial-Base,Moirai-2.0,0.104,0.0,0.229,-0.086,-0.17,0.011
-Sundial-Base,TabPFN-TS,0.375,0.167,0.542,-0.019,-0.127,0.08
-Sundial-Base,Chronos-Bolt,0.479,0.271,0.667,0.012,-0.074,0.104
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,AutoARIMA,1.0,1.0,1.0,0.357,0.268,0.443
-Sundial-Base,Stat. Ensemble,1.0,1.0,1.0,0.441,0.345,0.529
-Sundial-Base,AutoTheta,0.958,0.875,1.0,0.524,0.422,0.615
-Sundial-Base,Seasonal Naive,1.0,1.0,1.0,0.512,0.407,0.612
-Sundial-Base,AutoETS,1.0,1.0,1.0,0.66,0.495,0.8
-Sundial-Base,Naive,1.0,1.0,1.0,0.714,0.637,0.772
-Sundial-Base,Drift,1.0,1.0,1.0,0.728,0.651,0.783
-AutoARIMA,Chronos-2,0.0,0.0,0.0,-0.926,-1.246,-0.665
-AutoARIMA,Toto-1.0,0.0,0.0,0.0,-0.813,-1.106,-0.604
-AutoARIMA,TimesFM-2.5,0.0,0.0,0.0,-0.762,-1.064,-0.548
-AutoARIMA,TiRex,0.0,0.0,0.0,-0.746,-1.009,-0.55
-AutoARIMA,Moirai-2.0,0.0,0.0,0.0,-0.689,-0.963,-0.504
-AutoARIMA,TabPFN-TS,0.083,0.0,0.208,-0.586,-0.884,-0.365
-AutoARIMA,Chronos-Bolt,0.042,0.0,0.125,-0.538,-0.802,-0.353
-AutoARIMA,Sundial-Base,0.0,0.0,0.0,-0.555,-0.796,-0.367
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,Stat. Ensemble,0.729,0.604,0.854,0.131,0.049,0.214
-AutoARIMA,AutoTheta,0.708,0.542,0.875,0.26,0.148,0.365
-AutoARIMA,Seasonal Naive,0.688,0.542,0.833,0.241,0.096,0.38
-AutoARIMA,AutoETS,0.771,0.604,0.917,0.496,0.217,0.718
-AutoARIMA,Naive,0.917,0.792,1.0,0.555,0.441,0.644
-AutoARIMA,Drift,0.917,0.792,1.0,0.577,0.472,0.662
-Stat. Ensemble,Chronos-2,0.0,0.0,0.0,-1.215,-1.609,-0.886
-Stat. Ensemble,Toto-1.0,0.0,0.0,0.0,-1.086,-1.481,-0.781
-Stat. Ensemble,TimesFM-2.5,0.0,0.0,0.0,-1.027,-1.42,-0.714
-Stat. Ensemble,TiRex,0.0,0.0,0.0,-1.008,-1.359,-0.721
-Stat. Ensemble,Moirai-2.0,0.0,0.0,0.0,-0.942,-1.292,-0.662
-Stat. Ensemble,TabPFN-TS,0.042,0.0,0.125,-0.824,-1.152,-0.542
-Stat. Ensemble,Chronos-Bolt,0.042,0.0,0.125,-0.768,-1.083,-0.494
-Stat. Ensemble,Sundial-Base,0.0,0.0,0.0,-0.789,-1.125,-0.527
-Stat. Ensemble,AutoARIMA,0.271,0.146,0.396,-0.15,-0.272,-0.051
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoTheta,0.75,0.583,0.917,0.149,0.058,0.238
-Stat. Ensemble,Seasonal Naive,0.604,0.458,0.771,0.128,-0.061,0.301
-Stat. Ensemble,AutoETS,0.729,0.542,0.896,0.447,0.138,0.694
-Stat. Ensemble,Naive,0.917,0.792,1.0,0.488,0.377,0.585
-Stat. Ensemble,Drift,0.958,0.875,1.0,0.513,0.411,0.604
-AutoTheta,Chronos-2,0.0,0.0,0.0,-1.603,-2.208,-1.121
-AutoTheta,Toto-1.0,0.0,0.0,0.0,-1.451,-2.038,-0.996
-AutoTheta,TimesFM-2.5,0.0,0.0,0.0,-1.382,-1.975,-0.939
-AutoTheta,TiRex,0.0,0.0,0.0,-1.36,-1.878,-0.944
-AutoTheta,Moirai-2.0,0.0,0.0,0.0,-1.283,-1.816,-0.876
-AutoTheta,TabPFN-TS,0.0,0.0,0.0,-1.143,-1.675,-0.74
-AutoTheta,Chronos-Bolt,0.0,0.0,0.0,-1.078,-1.557,-0.686
-AutoTheta,Sundial-Base,0.042,0.0,0.125,-1.103,-1.596,-0.73
-AutoTheta,AutoARIMA,0.292,0.125,0.458,-0.352,-0.574,-0.173
-AutoTheta,Stat. Ensemble,0.25,0.083,0.417,-0.175,-0.313,-0.061
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Seasonal Naive,0.625,0.417,0.792,-0.025,-0.272,0.203
-AutoTheta,AutoETS,0.5,0.292,0.708,0.361,-0.06,0.657
-AutoTheta,Naive,0.875,0.75,1.0,0.398,0.256,0.517
-AutoTheta,Drift,0.958,0.875,1.0,0.428,0.294,0.544
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-1.538,-2.236,-1.07
-Seasonal Naive,Toto-1.0,0.0,0.0,0.0,-1.39,-2.005,-0.94
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-1.323,-1.938,-0.904
-Seasonal Naive,TiRex,0.0,0.0,0.0,-1.301,-1.867,-0.874
-Seasonal Naive,Moirai-2.0,0.0,0.0,0.0,-1.226,-1.784,-0.822
-Seasonal Naive,TabPFN-TS,0.0,0.0,0.0,-1.09,-1.7,-0.688
-Seasonal Naive,Chronos-Bolt,0.0,0.0,0.0,-1.027,-1.526,-0.668
-Seasonal Naive,Sundial-Base,0.0,0.0,0.0,-1.05,-1.579,-0.686
-Seasonal Naive,AutoARIMA,0.312,0.167,0.458,-0.318,-0.612,-0.106
-Seasonal Naive,Stat. Ensemble,0.396,0.229,0.542,-0.146,-0.431,0.057
-Seasonal Naive,AutoTheta,0.375,0.208,0.583,0.025,-0.254,0.214
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,AutoETS,0.479,0.292,0.667,0.369,-0.057,0.653
-Seasonal Naive,Naive,0.75,0.604,0.875,0.413,0.237,0.548
-Seasonal Naive,Drift,0.875,0.708,1.0,0.442,0.271,0.571
-AutoETS,Chronos-2,0.0,0.0,0.0,-2.605,-4.936,-1.437
-AutoETS,Toto-1.0,0.0,0.0,0.0,-2.384,-4.698,-1.224
-AutoETS,TimesFM-2.5,0.0,0.0,0.0,-2.297,-4.569,-1.178
-AutoETS,TiRex,0.0,0.0,0.0,-2.273,-4.506,-1.145
-AutoETS,Moirai-2.0,0.0,0.0,0.0,-2.178,-4.422,-1.073
-AutoETS,TabPFN-TS,0.042,0.0,0.125,-2.04,-4.217,-0.961
-AutoETS,Chronos-Bolt,0.0,0.0,0.0,-1.914,-4.006,-0.881
-AutoETS,Sundial-Base,0.0,0.0,0.0,-1.944,-4.004,-0.981
-AutoETS,AutoARIMA,0.229,0.083,0.396,-0.983,-2.549,-0.278
-AutoETS,Stat. Ensemble,0.271,0.104,0.458,-0.81,-2.272,-0.16
-AutoETS,AutoTheta,0.5,0.292,0.708,-0.564,-1.912,0.056
-AutoETS,Seasonal Naive,0.521,0.333,0.708,-0.586,-1.883,0.054
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Naive,0.667,0.5,0.833,0.02,-0.976,0.445
-AutoETS,Drift,0.708,0.542,0.875,0.064,-0.899,0.47
-Naive,Chronos-2,0.0,0.0,0.0,-3.327,-4.403,-2.425
-Naive,Toto-1.0,0.0,0.0,0.0,-3.075,-4.234,-2.15
-Naive,TimesFM-2.5,0.0,0.0,0.0,-2.959,-4.08,-2.014
-Naive,TiRex,0.0,0.0,0.0,-2.923,-4.014,-2.031
-Naive,Moirai-2.0,0.0,0.0,0.0,-2.795,-3.832,-1.957
-Naive,TabPFN-TS,0.0,0.0,0.0,-2.563,-3.533,-1.755
-Naive,Chronos-Bolt,0.0,0.0,0.0,-2.455,-3.414,-1.649
-Naive,Sundial-Base,0.0,0.0,0.0,-2.495,-3.377,-1.752
-Naive,AutoARIMA,0.083,0.0,0.208,-1.247,-1.812,-0.79
-Naive,Stat. Ensemble,0.083,0.0,0.208,-0.954,-1.412,-0.605
-Naive,AutoTheta,0.125,0.0,0.25,-0.662,-1.07,-0.345
-Naive,Seasonal Naive,0.25,0.125,0.396,-0.705,-1.211,-0.31
-Naive,AutoETS,0.333,0.167,0.5,-0.02,-0.8,0.494
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,0.958,0.875,1.0,0.048,0.034,0.064
-Drift,Chronos-2,0.0,0.0,0.0,-3.547,-4.693,-2.565
-Drift,Toto-1.0,0.0,0.0,0.0,-3.282,-4.507,-2.296
-Drift,TimesFM-2.5,0.0,0.0,0.0,-3.161,-4.336,-2.16
-Drift,TiRex,0.0,0.0,0.0,-3.123,-4.25,-2.191
-Drift,Moirai-2.0,0.0,0.0,0.0,-2.988,-4.069,-2.118
-Drift,TabPFN-TS,0.0,0.0,0.0,-2.744,-3.775,-1.899
-Drift,Chronos-Bolt,0.0,0.0,0.0,-2.631,-3.629,-1.789
-Drift,Sundial-Base,0.0,0.0,0.0,-2.673,-3.602,-1.867
-Drift,AutoARIMA,0.083,0.0,0.208,-1.362,-1.957,-0.894
-Drift,Stat. Ensemble,0.042,0.0,0.125,-1.053,-1.524,-0.698
-Drift,AutoTheta,0.042,0.0,0.125,-0.747,-1.191,-0.416
-Drift,Seasonal Naive,0.125,0.0,0.292,-0.791,-1.331,-0.372
-Drift,AutoETS,0.292,0.125,0.458,-0.068,-0.886,0.473
-Drift,Naive,0.042,0.0,0.125,-0.051,-0.069,-0.035
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/frequency_weekly/leaderboard_MASE.csv b/tables/frequency_weekly/leaderboard_MASE.csv
deleted file mode 100644
index 9981c80beae16e0be8fe13586ff06d9a450b152b..0000000000000000000000000000000000000000
--- a/tables/frequency_weekly/leaderboard_MASE.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,84.03361344537814,31.481794451725598,0.0,0.32956550214577657,0.0,0.0
-TimesFM-2.5,73.94957983193277,26.52900086602983,0.0,0.2144064880392157,0.11764705882352941,0.0
-TiRex,72.6890756302521,26.261371917757693,0.0,0.12932927313725492,0.0,0.0
-TabPFN-TS,63.44537815126049,28.503438987326348,0.0,22.63179935822034,0.0,0.0
-Chronos-Bolt,61.344537815126046,24.789294507776617,0.0,0.12887287921568627,0.0,0.0
-Moirai-2.0,54.20168067226891,22.723384164617542,0.0,0.22658025411764707,0.11764705882352941,0.0
-Stat. Ensemble,53.361344537815135,15.365311043980789,0.0,25.918509003474572,0.0,0.0
-Toto-1.0,51.68067226890757,20.2421879515411,0.0,5.434461828245326,0.0,0.0
-Sundial-Base,44.537815126050425,19.731530492164218,0.0,7.870155007102804,0.0,0.0
-AutoETS,40.33613445378151,11.57581735742166,0.0,0.47871178898305083,0.0,0.0
-AutoARIMA,34.03361344537815,3.6737220914351054,0.0,3.3998517208296395,0.0,0.0
-AutoTheta,34.033613445378144,7.803844369279123,0.0,0.6619522274576272,0.0,0.0
-Naive,31.722689075630246,0.0,0.0,0.2594528489051095,0.0,0.0
-Seasonal Naive,31.722689075630246,0.0,0.0,0.25224424306569343,0.0,0.0
-Drift,18.907563025210084,-1.4487951551292788,0.0,0.253097096350365,0.0,0.0
diff --git a/tables/frequency_weekly/leaderboard_SQL.csv b/tables/frequency_weekly/leaderboard_SQL.csv
deleted file mode 100644
index 27d728683e0b48fa6482be99fc31082279545857..0000000000000000000000000000000000000000
--- a/tables/frequency_weekly/leaderboard_SQL.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,89.07563025210085,43.08495823445069,0.0,0.32956550214577657,0.0,0.0
-TimesFM-2.5,81.5126050420168,39.40546078196011,0.0,0.2144064880392157,0.11764705882352941,0.0
-TiRex,77.7310924369748,38.66421195014754,0.0,0.12932927313725492,0.0,0.0
-Chronos-Bolt,68.4873949579832,37.8955057470284,0.0,0.12887287921568627,0.0,0.0
-TabPFN-TS,66.80672268907564,40.4501363806809,0.0,22.63179935822034,0.0,0.0
-Moirai-2.0,59.66386554621849,35.084488727551175,0.0,0.22658025411764707,0.11764705882352941,0.0
-Toto-1.0,59.663865546218474,33.816247574403114,0.0,5.434461828245326,0.0,0.0
-Stat. Ensemble,49.99999999999999,26.73938046367741,0.0,25.918509003474572,0.0,0.0
-AutoARIMA,41.17647058823529,17.165725601006145,0.0,3.3998517208296395,0.0,0.0
-AutoETS,40.33613445378151,-34.43610777026744,0.0,0.47871178898305083,0.0,0.0
-Sundial-Base,38.23529411764705,28.13662869222201,0.0,7.870155007102804,0.0,0.0
-AutoTheta,27.310924369747898,18.597473231459126,0.0,0.6619522274576272,0.0,0.0
-Naive,19.957983193277308,0.0,0.0,0.2594528489051095,0.0,0.0
-Seasonal Naive,19.957983193277308,0.0,0.0,0.25224424306569343,0.0,0.0
-Drift,10.084033613445378,-0.43479898554135143,0.0,0.253097096350365,0.0,0.0
diff --git a/tables/frequency_weekly/leaderboard_WAPE.csv b/tables/frequency_weekly/leaderboard_WAPE.csv
deleted file mode 100644
index ce1c977feec822c8f89db6cd71bc4bd2963d901f..0000000000000000000000000000000000000000
--- a/tables/frequency_weekly/leaderboard_WAPE.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,80.67226890756302,33.033168227019026,0.0,0.32956550214577657,0.0,0.0
-TiRex,72.6890756302521,27.26832437632678,0.0,0.12932927313725492,0.0,0.0
-TimesFM-2.5,71.84873949579831,27.337795666708587,0.0,0.2144064880392157,0.11764705882352941,0.0
-TabPFN-TS,65.54621848739495,30.55368652274818,0.0,22.63179935822034,0.0,0.0
-Chronos-Bolt,61.344537815126046,25.51157354409269,0.0,0.12887287921568627,0.0,0.0
-Stat. Ensemble,55.042016806722685,15.743089812031885,0.0,25.918509003474572,0.0,0.0
-Toto-1.0,53.78151260504202,20.258967855985233,0.0,5.434461828245326,0.0,0.0
-Moirai-2.0,52.10084033613446,23.083039753958012,0.0,0.22658025411764707,0.11764705882352941,0.0
-Sundial-Base,45.79831932773109,19.8798541280895,0.0,7.870155007102804,0.0,0.0
-AutoETS,43.27731092436974,10.432170599418688,0.0,0.47871178898305083,0.0,0.0
-AutoTheta,36.134453781512605,8.27094240114572,0.0,0.6619522274576272,0.0,0.0
-AutoARIMA,36.1344537815126,7.846800330751369,0.0,3.3998517208296395,0.0,0.0
-Naive,28.361344537815125,0.0,0.0,0.2594528489051095,0.0,0.0
-Seasonal Naive,28.361344537815125,0.0,0.0,0.25224424306569343,0.0,0.0
-Drift,18.90756302521008,-1.418173352182306,0.0,0.253097096350365,0.0,0.0
diff --git a/tables/frequency_weekly/leaderboard_WQL.csv b/tables/frequency_weekly/leaderboard_WQL.csv
deleted file mode 100644
index ef6237b49da70b883ac2380d6e28803c3e46c870..0000000000000000000000000000000000000000
--- a/tables/frequency_weekly/leaderboard_WQL.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,85.71428571428571,46.95158936276389,0.0,0.32956550214577657,0.0,0.0
-TiRex,75.63025210084034,41.67847001395525,0.0,0.12932927313725492,0.0,0.0
-TimesFM-2.5,75.63025210084032,42.705288955262354,0.0,0.2144064880392157,0.11764705882352941,0.0
-Chronos-Bolt,70.58823529411764,41.418152536422134,0.0,0.12887287921568627,0.0,0.0
-TabPFN-TS,69.74789915966386,45.19356656769271,0.0,22.63179935822034,0.0,0.0
-Moirai-2.0,60.50420168067227,38.68049112544482,0.0,0.22658025411764707,0.11764705882352941,0.0
-Toto-1.0,59.2436974789916,37.025124965614744,0.0,5.434461828245326,0.0,0.0
-Stat. Ensemble,50.84033613445379,28.908056466103393,0.0,25.918509003474572,0.0,0.0
-Sundial-Base,42.85714285714285,31.75917388658207,0.0,7.870155007102804,0.0,0.0
-AutoARIMA,41.17647058823529,23.59314903701112,0.0,3.3998517208296395,0.0,0.0
-AutoETS,38.65546218487395,-38.47401258640348,0.0,0.47871178898305083,0.0,0.0
-AutoTheta,29.411764705882348,20.289228155537774,0.0,0.6619522274576272,0.0,0.0
-Naive,18.697478991596633,0.0,0.0,0.2594528489051095,0.0,0.0
-Seasonal Naive,18.697478991596633,0.0,0.0,0.25224424306569343,0.0,0.0
-Drift,12.605042016806726,-0.2604826926005721,0.0,0.253097096350365,0.0,0.0
diff --git a/tables/frequency_weekly/pairwise_MASE.csv b/tables/frequency_weekly/pairwise_MASE.csv
deleted file mode 100644
index 9f4e37eed09cfe2dfc4644a81ba64f5c16149a02..0000000000000000000000000000000000000000
--- a/tables/frequency_weekly/pairwise_MASE.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TimesFM-2.5,0.647,0.412,0.882,0.067,-0.014,0.151
-Chronos-2,TiRex,0.882,0.706,1.0,0.071,0.014,0.137
-Chronos-2,TabPFN-TS,0.647,0.412,0.882,0.042,-0.034,0.118
-Chronos-2,Chronos-Bolt,0.882,0.706,1.0,0.089,0.026,0.157
-Chronos-2,Moirai-2.0,0.882,0.706,1.0,0.113,0.024,0.197
-Chronos-2,Stat. Ensemble,0.765,0.587,0.941,0.19,0.058,0.305
-Chronos-2,Toto-1.0,0.882,0.706,1.0,0.141,0.077,0.214
-Chronos-2,Sundial-Base,0.824,0.647,1.0,0.146,0.042,0.232
-Chronos-2,AutoETS,0.765,0.587,0.941,0.225,0.091,0.344
-Chronos-2,AutoARIMA,0.941,0.824,1.0,0.289,0.164,0.388
-Chronos-2,AutoTheta,0.941,0.824,1.0,0.257,0.153,0.352
-Chronos-2,Seasonal Naive,0.882,0.706,1.0,0.315,0.207,0.413
-Chronos-2,Naive,0.882,0.706,1.0,0.315,0.207,0.413
-Chronos-2,Drift,0.941,0.824,1.0,0.325,0.214,0.423
-TimesFM-2.5,Chronos-2,0.353,0.118,0.588,-0.072,-0.177,0.014
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TiRex,0.647,0.412,0.882,0.004,-0.046,0.044
-TimesFM-2.5,TabPFN-TS,0.529,0.294,0.765,-0.028,-0.168,0.084
-TimesFM-2.5,Chronos-Bolt,0.706,0.5,0.912,0.023,-0.016,0.059
-TimesFM-2.5,Moirai-2.0,0.706,0.528,0.882,0.049,-0.007,0.105
-TimesFM-2.5,Stat. Ensemble,0.706,0.528,0.941,0.132,-0.023,0.265
-TimesFM-2.5,Toto-1.0,0.765,0.588,0.941,0.079,0.006,0.147
-TimesFM-2.5,Sundial-Base,0.824,0.647,1.0,0.085,0.022,0.133
-TimesFM-2.5,AutoETS,0.765,0.587,0.941,0.169,0.019,0.303
-TimesFM-2.5,AutoARIMA,0.824,0.647,1.0,0.237,0.105,0.358
-TimesFM-2.5,AutoTheta,0.882,0.706,1.0,0.203,0.101,0.303
-TimesFM-2.5,Seasonal Naive,0.882,0.706,1.0,0.265,0.17,0.36
-TimesFM-2.5,Naive,0.882,0.706,1.0,0.265,0.17,0.36
-TimesFM-2.5,Drift,0.882,0.706,1.0,0.276,0.17,0.371
-TiRex,Chronos-2,0.118,0.0,0.294,-0.076,-0.158,-0.014
-TiRex,TimesFM-2.5,0.353,0.118,0.588,-0.004,-0.046,0.044
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,TabPFN-TS,0.471,0.235,0.706,-0.031,-0.156,0.07
-TiRex,Chronos-Bolt,0.765,0.529,0.941,0.02,-0.019,0.053
-TiRex,Moirai-2.0,0.882,0.706,1.0,0.046,0.001,0.092
-TiRex,Stat. Ensemble,0.765,0.587,0.941,0.129,0.001,0.247
-TiRex,Toto-1.0,0.882,0.706,1.0,0.075,0.029,0.123
-TiRex,Sundial-Base,0.765,0.529,0.941,0.081,-0.002,0.15
-TiRex,AutoETS,0.765,0.587,0.941,0.166,0.031,0.288
-TiRex,AutoARIMA,0.882,0.706,1.0,0.234,0.098,0.356
-TiRex,AutoTheta,0.882,0.706,1.0,0.2,0.103,0.295
-TiRex,Seasonal Naive,0.882,0.706,1.0,0.263,0.158,0.367
-TiRex,Naive,0.882,0.706,1.0,0.263,0.158,0.367
-TiRex,Drift,0.882,0.706,1.0,0.273,0.175,0.367
-TabPFN-TS,Chronos-2,0.353,0.118,0.588,-0.043,-0.134,0.033
-TabPFN-TS,TimesFM-2.5,0.471,0.235,0.706,0.027,-0.091,0.144
-TabPFN-TS,TiRex,0.529,0.294,0.765,0.03,-0.076,0.135
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Chronos-Bolt,0.588,0.353,0.824,0.049,-0.057,0.149
-TabPFN-TS,Moirai-2.0,0.529,0.294,0.765,0.075,-0.039,0.186
-TabPFN-TS,Stat. Ensemble,0.588,0.353,0.824,0.155,0.006,0.275
-TabPFN-TS,Toto-1.0,0.588,0.353,0.824,0.104,-0.001,0.207
-TabPFN-TS,Sundial-Base,0.706,0.471,0.941,0.109,0.003,0.207
-TabPFN-TS,AutoETS,0.647,0.412,0.882,0.191,0.047,0.312
-TabPFN-TS,AutoARIMA,0.706,0.471,0.882,0.258,0.09,0.383
-TabPFN-TS,AutoTheta,0.824,0.647,1.0,0.225,0.096,0.333
-TabPFN-TS,Seasonal Naive,0.765,0.529,0.941,0.285,0.141,0.403
-TabPFN-TS,Naive,0.765,0.529,0.941,0.285,0.141,0.403
-TabPFN-TS,Drift,0.824,0.588,1.0,0.295,0.151,0.414
-Chronos-Bolt,Chronos-2,0.118,0.0,0.294,-0.098,-0.186,-0.026
-Chronos-Bolt,TimesFM-2.5,0.294,0.088,0.5,-0.024,-0.063,0.016
-Chronos-Bolt,TiRex,0.235,0.059,0.471,-0.02,-0.056,0.019
-Chronos-Bolt,TabPFN-TS,0.412,0.176,0.647,-0.052,-0.175,0.054
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Moirai-2.0,0.529,0.324,0.735,0.027,-0.023,0.093
-Chronos-Bolt,Stat. Ensemble,0.529,0.294,0.765,0.111,-0.025,0.234
-Chronos-Bolt,Toto-1.0,0.647,0.412,0.882,0.057,0.001,0.117
-Chronos-Bolt,Sundial-Base,0.706,0.471,0.882,0.063,0.003,0.116
-Chronos-Bolt,AutoETS,0.765,0.587,0.941,0.149,0.016,0.27
-Chronos-Bolt,AutoARIMA,0.824,0.647,1.0,0.219,0.086,0.338
-Chronos-Bolt,AutoTheta,0.824,0.647,1.0,0.184,0.084,0.281
-Chronos-Bolt,Seasonal Naive,0.882,0.706,1.0,0.248,0.146,0.342
-Chronos-Bolt,Naive,0.882,0.706,1.0,0.248,0.146,0.342
-Chronos-Bolt,Drift,0.941,0.824,1.0,0.259,0.152,0.354
-Moirai-2.0,Chronos-2,0.118,0.0,0.294,-0.128,-0.245,-0.025
-Moirai-2.0,TimesFM-2.5,0.294,0.118,0.472,-0.052,-0.117,0.007
-Moirai-2.0,TiRex,0.118,0.0,0.294,-0.048,-0.102,-0.001
-Moirai-2.0,TabPFN-TS,0.471,0.235,0.706,-0.081,-0.229,0.038
-Moirai-2.0,Chronos-Bolt,0.471,0.265,0.676,-0.027,-0.103,0.022
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Stat. Ensemble,0.588,0.353,0.765,0.087,-0.039,0.204
-Moirai-2.0,Toto-1.0,0.529,0.294,0.765,0.031,-0.022,0.087
-Moirai-2.0,Sundial-Base,0.647,0.412,0.882,0.037,-0.073,0.115
-Moirai-2.0,AutoETS,0.588,0.353,0.765,0.126,-0.009,0.247
-Moirai-2.0,AutoARIMA,0.765,0.529,0.941,0.198,0.043,0.332
-Moirai-2.0,AutoTheta,0.824,0.647,1.0,0.162,0.065,0.256
-Moirai-2.0,Seasonal Naive,0.706,0.471,0.941,0.227,0.117,0.329
-Moirai-2.0,Naive,0.706,0.471,0.941,0.227,0.117,0.329
-Moirai-2.0,Drift,0.765,0.587,0.941,0.238,0.143,0.326
-Stat. Ensemble,Chronos-2,0.235,0.059,0.413,-0.235,-0.439,-0.061
-Stat. Ensemble,TimesFM-2.5,0.294,0.059,0.472,-0.152,-0.361,0.022
-Stat. Ensemble,TiRex,0.235,0.059,0.413,-0.148,-0.328,-0.001
-Stat. Ensemble,TabPFN-TS,0.412,0.176,0.647,-0.184,-0.38,-0.006
-Stat. Ensemble,Chronos-Bolt,0.471,0.235,0.706,-0.125,-0.305,0.025
-Stat. Ensemble,Moirai-2.0,0.412,0.235,0.647,-0.095,-0.256,0.037
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,Toto-1.0,0.471,0.235,0.706,-0.061,-0.186,0.046
-Stat. Ensemble,Sundial-Base,0.529,0.294,0.765,-0.054,-0.255,0.114
-Stat. Ensemble,AutoETS,0.765,0.529,0.941,0.043,0.009,0.076
-Stat. Ensemble,AutoARIMA,0.588,0.353,0.824,0.121,-0.012,0.275
-Stat. Ensemble,AutoTheta,0.765,0.529,0.941,0.082,0.014,0.167
-Stat. Ensemble,Seasonal Naive,0.706,0.471,0.882,0.154,0.042,0.274
-Stat. Ensemble,Naive,0.706,0.471,0.882,0.154,0.042,0.274
-Stat. Ensemble,Drift,0.882,0.706,1.0,0.166,0.086,0.243
-Toto-1.0,Chronos-2,0.118,0.0,0.294,-0.164,-0.272,-0.083
-Toto-1.0,TimesFM-2.5,0.235,0.059,0.412,-0.086,-0.172,-0.006
-Toto-1.0,TiRex,0.118,0.0,0.294,-0.082,-0.14,-0.03
-Toto-1.0,TabPFN-TS,0.412,0.176,0.647,-0.116,-0.261,0.001
-Toto-1.0,Chronos-Bolt,0.353,0.118,0.588,-0.06,-0.132,-0.001
-Toto-1.0,Moirai-2.0,0.471,0.235,0.706,-0.032,-0.095,0.022
-Toto-1.0,Stat. Ensemble,0.529,0.294,0.765,0.058,-0.048,0.157
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,Sundial-Base,0.647,0.412,0.882,0.006,-0.108,0.103
-Toto-1.0,AutoETS,0.588,0.353,0.824,0.098,-0.013,0.21
-Toto-1.0,AutoARIMA,0.706,0.471,0.882,0.172,0.041,0.293
-Toto-1.0,AutoTheta,0.706,0.471,0.882,0.135,0.052,0.22
-Toto-1.0,Seasonal Naive,0.765,0.529,0.941,0.202,0.099,0.305
-Toto-1.0,Naive,0.765,0.529,0.941,0.202,0.099,0.305
-Toto-1.0,Drift,0.824,0.647,1.0,0.214,0.125,0.296
-Sundial-Base,Chronos-2,0.176,0.0,0.353,-0.171,-0.303,-0.044
-Sundial-Base,TimesFM-2.5,0.176,0.0,0.353,-0.093,-0.154,-0.023
-Sundial-Base,TiRex,0.235,0.059,0.471,-0.089,-0.177,0.002
-Sundial-Base,TabPFN-TS,0.294,0.059,0.529,-0.123,-0.261,-0.003
-Sundial-Base,Chronos-Bolt,0.294,0.118,0.529,-0.067,-0.132,-0.003
-Sundial-Base,Moirai-2.0,0.353,0.118,0.588,-0.039,-0.129,0.068
-Sundial-Base,Stat. Ensemble,0.471,0.235,0.706,0.052,-0.129,0.203
-Sundial-Base,Toto-1.0,0.353,0.118,0.588,-0.006,-0.115,0.098
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,AutoETS,0.471,0.235,0.706,0.092,-0.08,0.24
-Sundial-Base,AutoARIMA,0.706,0.471,0.882,0.167,0.001,0.308
-Sundial-Base,AutoTheta,0.588,0.353,0.824,0.129,-0.002,0.242
-Sundial-Base,Seasonal Naive,0.706,0.471,0.882,0.197,0.082,0.298
-Sundial-Base,Naive,0.706,0.471,0.882,0.197,0.082,0.298
-Sundial-Base,Drift,0.706,0.471,0.882,0.209,0.078,0.323
-AutoETS,Chronos-2,0.235,0.059,0.413,-0.291,-0.524,-0.1
-AutoETS,TimesFM-2.5,0.235,0.059,0.413,-0.204,-0.435,-0.019
-AutoETS,TiRex,0.235,0.059,0.413,-0.199,-0.405,-0.032
-AutoETS,TabPFN-TS,0.353,0.118,0.588,-0.237,-0.454,-0.049
-AutoETS,Chronos-Bolt,0.235,0.059,0.413,-0.176,-0.37,-0.016
-AutoETS,Moirai-2.0,0.412,0.235,0.647,-0.144,-0.328,0.009
-AutoETS,Stat. Ensemble,0.235,0.059,0.471,-0.045,-0.082,-0.009
-AutoETS,Toto-1.0,0.412,0.176,0.647,-0.109,-0.266,0.013
-AutoETS,Sundial-Base,0.529,0.294,0.765,-0.102,-0.315,0.074
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,AutoARIMA,0.471,0.235,0.706,0.082,-0.066,0.241
-AutoETS,AutoTheta,0.412,0.176,0.647,0.041,-0.038,0.125
-AutoETS,Seasonal Naive,0.588,0.353,0.824,0.116,0.011,0.232
-AutoETS,Naive,0.588,0.353,0.824,0.116,0.011,0.232
-AutoETS,Drift,0.706,0.471,0.882,0.128,0.052,0.207
-AutoARIMA,Chronos-2,0.059,0.0,0.176,-0.406,-0.633,-0.196
-AutoARIMA,TimesFM-2.5,0.176,0.0,0.353,-0.311,-0.557,-0.117
-AutoARIMA,TiRex,0.118,0.0,0.294,-0.306,-0.553,-0.109
-AutoARIMA,TabPFN-TS,0.294,0.118,0.529,-0.347,-0.621,-0.099
-AutoARIMA,Chronos-Bolt,0.176,0.0,0.353,-0.281,-0.511,-0.094
-AutoARIMA,Moirai-2.0,0.235,0.059,0.471,-0.247,-0.498,-0.045
-AutoARIMA,Stat. Ensemble,0.412,0.176,0.647,-0.138,-0.379,0.012
-AutoARIMA,Toto-1.0,0.294,0.118,0.529,-0.208,-0.415,-0.043
-AutoARIMA,Sundial-Base,0.294,0.118,0.529,-0.2,-0.445,-0.001
-AutoARIMA,AutoETS,0.529,0.294,0.765,-0.089,-0.317,0.062
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoTheta,0.588,0.353,0.824,-0.045,-0.204,0.064
-AutoARIMA,Seasonal Naive,0.471,0.235,0.706,0.037,-0.118,0.141
-AutoARIMA,Naive,0.471,0.235,0.706,0.037,-0.118,0.141
-AutoARIMA,Drift,0.647,0.412,0.882,0.05,-0.122,0.172
-AutoTheta,Chronos-2,0.059,0.0,0.176,-0.346,-0.542,-0.181
-AutoTheta,TimesFM-2.5,0.118,0.0,0.294,-0.255,-0.435,-0.112
-AutoTheta,TiRex,0.118,0.0,0.294,-0.25,-0.419,-0.115
-AutoTheta,TabPFN-TS,0.176,0.0,0.353,-0.29,-0.499,-0.106
-AutoTheta,Chronos-Bolt,0.176,0.0,0.353,-0.226,-0.391,-0.092
-AutoTheta,Moirai-2.0,0.176,0.0,0.353,-0.193,-0.345,-0.07
-AutoTheta,Stat. Ensemble,0.235,0.059,0.471,-0.089,-0.2,-0.014
-AutoTheta,Toto-1.0,0.294,0.118,0.529,-0.156,-0.282,-0.054
-AutoTheta,Sundial-Base,0.412,0.176,0.647,-0.149,-0.32,0.002
-AutoTheta,AutoETS,0.588,0.353,0.824,-0.043,-0.143,0.036
-AutoTheta,AutoARIMA,0.412,0.176,0.647,0.043,-0.069,0.169
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Seasonal Naive,0.647,0.412,0.882,0.078,0.015,0.139
-AutoTheta,Naive,0.647,0.412,0.882,0.078,0.015,0.139
-AutoTheta,Drift,0.706,0.471,0.882,0.091,0.041,0.143
-Seasonal Naive,Chronos-2,0.118,0.0,0.294,-0.459,-0.705,-0.26
-Seasonal Naive,TimesFM-2.5,0.118,0.0,0.294,-0.361,-0.563,-0.204
-Seasonal Naive,TiRex,0.118,0.0,0.294,-0.356,-0.579,-0.188
-Seasonal Naive,TabPFN-TS,0.235,0.059,0.471,-0.399,-0.675,-0.165
-Seasonal Naive,Chronos-Bolt,0.118,0.0,0.294,-0.33,-0.521,-0.172
-Seasonal Naive,Moirai-2.0,0.294,0.059,0.529,-0.294,-0.489,-0.132
-Seasonal Naive,Stat. Ensemble,0.294,0.118,0.529,-0.182,-0.377,-0.044
-Seasonal Naive,Toto-1.0,0.235,0.059,0.471,-0.254,-0.439,-0.11
-Seasonal Naive,Sundial-Base,0.294,0.118,0.529,-0.246,-0.424,-0.09
-Seasonal Naive,AutoETS,0.412,0.176,0.647,-0.131,-0.302,-0.011
-Seasonal Naive,AutoARIMA,0.529,0.294,0.765,-0.038,-0.164,0.105
-Seasonal Naive,AutoTheta,0.353,0.118,0.588,-0.085,-0.161,-0.015
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Drift,0.824,0.647,1.0,0.014,-0.057,0.077
-Naive,Chronos-2,0.118,0.0,0.294,-0.459,-0.705,-0.26
-Naive,TimesFM-2.5,0.118,0.0,0.294,-0.361,-0.563,-0.204
-Naive,TiRex,0.118,0.0,0.294,-0.356,-0.579,-0.188
-Naive,TabPFN-TS,0.235,0.059,0.471,-0.399,-0.675,-0.165
-Naive,Chronos-Bolt,0.118,0.0,0.294,-0.33,-0.521,-0.172
-Naive,Moirai-2.0,0.294,0.059,0.529,-0.294,-0.489,-0.132
-Naive,Stat. Ensemble,0.294,0.118,0.529,-0.182,-0.377,-0.044
-Naive,Toto-1.0,0.235,0.059,0.471,-0.254,-0.439,-0.11
-Naive,Sundial-Base,0.294,0.118,0.529,-0.246,-0.424,-0.09
-Naive,AutoETS,0.412,0.176,0.647,-0.131,-0.302,-0.011
-Naive,AutoARIMA,0.529,0.294,0.765,-0.038,-0.164,0.105
-Naive,AutoTheta,0.353,0.118,0.588,-0.085,-0.161,-0.015
-Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,0.824,0.647,1.0,0.014,-0.057,0.077
-Drift,Chronos-2,0.059,0.0,0.176,-0.481,-0.733,-0.273
-Drift,TimesFM-2.5,0.118,0.0,0.294,-0.381,-0.589,-0.205
-Drift,TiRex,0.118,0.0,0.294,-0.376,-0.58,-0.212
-Drift,TabPFN-TS,0.176,0.0,0.412,-0.419,-0.706,-0.178
-Drift,Chronos-Bolt,0.059,0.0,0.176,-0.349,-0.548,-0.18
-Drift,Moirai-2.0,0.235,0.059,0.413,-0.313,-0.485,-0.166
-Drift,Stat. Ensemble,0.118,0.0,0.294,-0.199,-0.321,-0.094
-Drift,Toto-1.0,0.176,0.0,0.353,-0.272,-0.421,-0.143
-Drift,Sundial-Base,0.294,0.118,0.529,-0.264,-0.478,-0.085
-Drift,AutoETS,0.294,0.118,0.529,-0.147,-0.262,-0.055
-Drift,AutoARIMA,0.353,0.118,0.588,-0.053,-0.208,0.109
-Drift,AutoTheta,0.294,0.118,0.529,-0.1,-0.167,-0.043
-Drift,Seasonal Naive,0.176,0.0,0.353,-0.014,-0.084,0.054
-Drift,Naive,0.176,0.0,0.353,-0.014,-0.084,0.054
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/frequency_weekly/pairwise_SQL.csv b/tables/frequency_weekly/pairwise_SQL.csv
deleted file mode 100644
index 4db239384c2369277961057c72489edd8a273e78..0000000000000000000000000000000000000000
--- a/tables/frequency_weekly/pairwise_SQL.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TimesFM-2.5,0.706,0.471,0.882,0.061,-0.011,0.135
-Chronos-2,TiRex,0.824,0.588,1.0,0.072,0.024,0.128
-Chronos-2,Chronos-Bolt,0.824,0.588,1.0,0.084,0.024,0.141
-Chronos-2,TabPFN-TS,0.706,0.471,0.941,0.044,-0.015,0.106
-Chronos-2,Toto-1.0,0.882,0.706,1.0,0.14,0.075,0.214
-Chronos-2,Moirai-2.0,0.882,0.706,1.0,0.123,0.039,0.2
-Chronos-2,Stat. Ensemble,0.882,0.706,1.0,0.223,0.102,0.33
-Chronos-2,AutoARIMA,0.941,0.824,1.0,0.313,0.185,0.417
-Chronos-2,AutoETS,0.882,0.706,1.0,0.547,0.245,0.764
-Chronos-2,Sundial-Base,0.941,0.824,1.0,0.208,0.107,0.287
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.301,0.201,0.393
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.431,0.319,0.527
-Chronos-2,Naive,1.0,1.0,1.0,0.431,0.319,0.527
-Chronos-2,Drift,1.0,1.0,1.0,0.433,0.322,0.528
-TimesFM-2.5,Chronos-2,0.294,0.118,0.529,-0.065,-0.157,0.011
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TiRex,0.706,0.471,0.882,0.012,-0.027,0.046
-TimesFM-2.5,Chronos-Bolt,0.706,0.5,0.912,0.024,-0.016,0.062
-TimesFM-2.5,TabPFN-TS,0.647,0.412,0.882,-0.018,-0.134,0.078
-TimesFM-2.5,Toto-1.0,0.765,0.588,0.941,0.084,0.01,0.153
-TimesFM-2.5,Moirai-2.0,0.882,0.706,1.0,0.067,0.011,0.124
-TimesFM-2.5,Stat. Ensemble,0.824,0.647,1.0,0.173,0.029,0.303
-TimesFM-2.5,AutoARIMA,0.882,0.706,1.0,0.268,0.136,0.394
-TimesFM-2.5,AutoETS,0.824,0.647,1.0,0.519,0.197,0.751
-TimesFM-2.5,Sundial-Base,0.882,0.706,1.0,0.157,0.099,0.203
-TimesFM-2.5,AutoTheta,1.0,1.0,1.0,0.256,0.153,0.356
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.394,0.295,0.487
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.394,0.295,0.487
-TimesFM-2.5,Drift,1.0,1.0,1.0,0.397,0.29,0.494
-TiRex,Chronos-2,0.176,0.0,0.412,-0.078,-0.147,-0.025
-TiRex,TimesFM-2.5,0.294,0.118,0.529,-0.012,-0.048,0.026
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,Chronos-Bolt,0.824,0.588,1.0,0.012,-0.027,0.045
-TiRex,TabPFN-TS,0.471,0.235,0.706,-0.03,-0.14,0.061
-TiRex,Toto-1.0,0.882,0.706,1.0,0.073,0.02,0.129
-TiRex,Moirai-2.0,0.824,0.647,1.0,0.055,0.006,0.109
-TiRex,Stat. Ensemble,0.824,0.647,1.0,0.163,0.042,0.281
-TiRex,AutoARIMA,0.882,0.706,1.0,0.26,0.125,0.379
-TiRex,AutoETS,0.824,0.647,1.0,0.515,0.198,0.749
-TiRex,Sundial-Base,0.882,0.706,1.0,0.146,0.07,0.209
-TiRex,AutoTheta,1.0,1.0,1.0,0.247,0.147,0.343
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.387,0.279,0.482
-TiRex,Naive,1.0,1.0,1.0,0.387,0.279,0.482
-TiRex,Drift,1.0,1.0,1.0,0.389,0.281,0.484
-Chronos-Bolt,Chronos-2,0.176,0.0,0.412,-0.091,-0.164,-0.025
-Chronos-Bolt,TimesFM-2.5,0.294,0.088,0.5,-0.025,-0.066,0.016
-Chronos-Bolt,TiRex,0.176,0.0,0.412,-0.013,-0.047,0.026
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,TabPFN-TS,0.471,0.235,0.706,-0.043,-0.144,0.047
-Chronos-Bolt,Toto-1.0,0.706,0.471,0.882,0.062,0.001,0.127
-Chronos-Bolt,Moirai-2.0,0.588,0.382,0.794,0.043,-0.008,0.116
-Chronos-Bolt,Stat. Ensemble,0.765,0.529,0.941,0.152,0.031,0.269
-Chronos-Bolt,AutoARIMA,0.824,0.647,1.0,0.25,0.113,0.373
-Chronos-Bolt,AutoETS,0.765,0.529,0.941,0.511,0.189,0.746
-Chronos-Bolt,Sundial-Base,0.882,0.706,1.0,0.136,0.078,0.191
-Chronos-Bolt,AutoTheta,0.941,0.824,1.0,0.237,0.137,0.329
-Chronos-Bolt,Seasonal Naive,1.0,1.0,1.0,0.379,0.275,0.468
-Chronos-Bolt,Naive,1.0,1.0,1.0,0.379,0.275,0.468
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.382,0.278,0.477
-TabPFN-TS,Chronos-2,0.294,0.059,0.529,-0.046,-0.119,0.015
-TabPFN-TS,TimesFM-2.5,0.353,0.118,0.588,0.017,-0.085,0.118
-TabPFN-TS,TiRex,0.529,0.294,0.765,0.029,-0.065,0.123
-TabPFN-TS,Chronos-Bolt,0.529,0.294,0.765,0.041,-0.049,0.126
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Toto-1.0,0.588,0.353,0.824,0.1,0.003,0.193
-TabPFN-TS,Moirai-2.0,0.588,0.353,0.824,0.083,-0.022,0.187
-TabPFN-TS,Stat. Ensemble,0.647,0.412,0.882,0.187,0.056,0.297
-TabPFN-TS,AutoARIMA,0.765,0.529,0.941,0.281,0.126,0.401
-TabPFN-TS,AutoETS,0.647,0.412,0.882,0.527,0.21,0.753
-TabPFN-TS,Sundial-Base,0.882,0.706,1.0,0.171,0.074,0.257
-TabPFN-TS,AutoTheta,0.882,0.706,1.0,0.268,0.161,0.361
-TabPFN-TS,Seasonal Naive,0.882,0.706,1.0,0.405,0.276,0.506
-TabPFN-TS,Naive,0.882,0.706,1.0,0.405,0.276,0.506
-TabPFN-TS,Drift,0.882,0.706,1.0,0.407,0.28,0.518
-Toto-1.0,Chronos-2,0.118,0.0,0.294,-0.163,-0.272,-0.082
-Toto-1.0,TimesFM-2.5,0.235,0.059,0.412,-0.092,-0.181,-0.01
-Toto-1.0,TiRex,0.118,0.0,0.294,-0.079,-0.147,-0.021
-Toto-1.0,Chronos-Bolt,0.294,0.118,0.529,-0.066,-0.145,-0.001
-Toto-1.0,TabPFN-TS,0.412,0.176,0.647,-0.111,-0.239,-0.003
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,Moirai-2.0,0.471,0.235,0.706,-0.02,-0.081,0.035
-Toto-1.0,Stat. Ensemble,0.706,0.471,0.882,0.097,0.004,0.19
-Toto-1.0,AutoARIMA,0.765,0.529,0.941,0.201,0.063,0.334
-Toto-1.0,AutoETS,0.706,0.471,0.882,0.484,0.142,0.738
-Toto-1.0,Sundial-Base,0.765,0.529,0.941,0.079,-0.03,0.175
-Toto-1.0,AutoTheta,0.941,0.824,1.0,0.187,0.1,0.277
-Toto-1.0,Seasonal Naive,0.941,0.824,1.0,0.338,0.23,0.436
-Toto-1.0,Naive,0.941,0.824,1.0,0.338,0.23,0.436
-Toto-1.0,Drift,0.941,0.824,1.0,0.341,0.244,0.429
-Moirai-2.0,Chronos-2,0.118,0.0,0.294,-0.141,-0.249,-0.04
-Moirai-2.0,TimesFM-2.5,0.118,0.0,0.294,-0.071,-0.142,-0.011
-Moirai-2.0,TiRex,0.176,0.0,0.353,-0.058,-0.123,-0.006
-Moirai-2.0,Chronos-Bolt,0.412,0.206,0.618,-0.045,-0.131,0.008
-Moirai-2.0,TabPFN-TS,0.412,0.176,0.647,-0.09,-0.231,0.021
-Moirai-2.0,Toto-1.0,0.529,0.294,0.765,0.019,-0.036,0.075
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Stat. Ensemble,0.706,0.471,0.882,0.114,-0.014,0.233
-Moirai-2.0,AutoARIMA,0.765,0.529,0.941,0.216,0.053,0.355
-Moirai-2.0,AutoETS,0.706,0.471,0.882,0.492,0.147,0.742
-Moirai-2.0,Sundial-Base,0.824,0.647,1.0,0.097,-0.012,0.174
-Moirai-2.0,AutoTheta,0.882,0.706,1.0,0.203,0.099,0.303
-Moirai-2.0,Seasonal Naive,0.882,0.706,1.0,0.351,0.227,0.454
-Moirai-2.0,Naive,0.882,0.706,1.0,0.351,0.227,0.454
-Moirai-2.0,Drift,0.941,0.824,1.0,0.354,0.239,0.452
-Stat. Ensemble,Chronos-2,0.118,0.0,0.294,-0.287,-0.493,-0.114
-Stat. Ensemble,TimesFM-2.5,0.176,0.0,0.353,-0.209,-0.435,-0.03
-Stat. Ensemble,TiRex,0.176,0.0,0.353,-0.194,-0.391,-0.044
-Stat. Ensemble,Chronos-Bolt,0.235,0.059,0.471,-0.18,-0.367,-0.032
-Stat. Ensemble,TabPFN-TS,0.353,0.118,0.588,-0.23,-0.422,-0.06
-Stat. Ensemble,Toto-1.0,0.294,0.118,0.529,-0.107,-0.235,-0.004
-Stat. Ensemble,Moirai-2.0,0.294,0.118,0.529,-0.129,-0.304,0.014
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoARIMA,0.647,0.412,0.882,0.116,-0.022,0.273
-Stat. Ensemble,AutoETS,0.706,0.471,0.882,0.438,0.038,0.713
-Stat. Ensemble,Sundial-Base,0.588,0.353,0.824,-0.019,-0.221,0.144
-Stat. Ensemble,AutoTheta,0.882,0.706,1.0,0.1,0.028,0.186
-Stat. Ensemble,Seasonal Naive,0.824,0.647,0.941,0.267,0.141,0.378
-Stat. Ensemble,Naive,0.824,0.647,0.941,0.267,0.141,0.378
-Stat. Ensemble,Drift,0.882,0.706,1.0,0.271,0.171,0.359
-AutoARIMA,Chronos-2,0.059,0.0,0.176,-0.455,-0.716,-0.227
-AutoARIMA,TimesFM-2.5,0.118,0.0,0.294,-0.367,-0.65,-0.157
-AutoARIMA,TiRex,0.118,0.0,0.294,-0.351,-0.61,-0.143
-AutoARIMA,Chronos-Bolt,0.176,0.0,0.353,-0.334,-0.595,-0.128
-AutoARIMA,TabPFN-TS,0.235,0.059,0.471,-0.391,-0.67,-0.144
-AutoARIMA,Toto-1.0,0.235,0.059,0.471,-0.252,-0.502,-0.067
-AutoARIMA,Moirai-2.0,0.235,0.059,0.471,-0.276,-0.551,-0.056
-AutoARIMA,Stat. Ensemble,0.353,0.118,0.588,-0.131,-0.376,0.022
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoETS,0.588,0.353,0.824,0.358,-0.097,0.681
-AutoARIMA,Sundial-Base,0.471,0.235,0.706,-0.153,-0.417,0.05
-AutoARIMA,AutoTheta,0.706,0.471,0.882,-0.018,-0.19,0.101
-AutoARIMA,Seasonal Naive,0.824,0.647,1.0,0.172,-0.011,0.302
-AutoARIMA,Naive,0.824,0.647,1.0,0.172,-0.011,0.302
-AutoARIMA,Drift,0.824,0.647,1.0,0.175,-0.025,0.321
-AutoETS,Chronos-2,0.118,0.0,0.294,-1.208,-3.239,-0.325
-AutoETS,TimesFM-2.5,0.176,0.0,0.353,-1.08,-3.015,-0.246
-AutoETS,TiRex,0.176,0.0,0.353,-1.06,-2.983,-0.248
-AutoETS,Chronos-Bolt,0.235,0.059,0.471,-1.045,-2.936,-0.233
-AutoETS,TabPFN-TS,0.353,0.118,0.588,-1.113,-3.044,-0.267
-AutoETS,Toto-1.0,0.294,0.118,0.529,-0.937,-2.814,-0.166
-AutoETS,Moirai-2.0,0.294,0.118,0.529,-0.967,-2.881,-0.173
-AutoETS,Stat. Ensemble,0.294,0.118,0.529,-0.78,-2.483,-0.04
-AutoETS,AutoARIMA,0.412,0.176,0.647,-0.558,-2.133,0.088
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Sundial-Base,0.471,0.235,0.706,-0.776,-2.496,-0.056
-AutoETS,AutoTheta,0.529,0.294,0.765,-0.62,-2.269,0.042
-AutoETS,Seasonal Naive,0.765,0.529,0.941,-0.344,-1.76,0.201
-AutoETS,Naive,0.765,0.529,0.941,-0.344,-1.76,0.201
-AutoETS,Drift,0.765,0.529,0.941,-0.347,-1.747,0.191
-Sundial-Base,Chronos-2,0.059,0.0,0.176,-0.263,-0.402,-0.12
-Sundial-Base,TimesFM-2.5,0.118,0.0,0.294,-0.186,-0.255,-0.109
-Sundial-Base,TiRex,0.118,0.0,0.294,-0.172,-0.265,-0.075
-Sundial-Base,Chronos-Bolt,0.118,0.0,0.294,-0.157,-0.236,-0.085
-Sundial-Base,TabPFN-TS,0.118,0.0,0.294,-0.207,-0.346,-0.08
-Sundial-Base,Toto-1.0,0.235,0.059,0.471,-0.086,-0.211,0.029
-Sundial-Base,Moirai-2.0,0.176,0.0,0.353,-0.107,-0.211,0.012
-Sundial-Base,Stat. Ensemble,0.412,0.176,0.647,0.019,-0.168,0.181
-Sundial-Base,AutoARIMA,0.529,0.294,0.765,0.132,-0.052,0.294
-Sundial-Base,AutoETS,0.529,0.294,0.765,0.437,0.053,0.714
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,AutoTheta,0.529,0.294,0.765,0.117,-0.014,0.233
-Sundial-Base,Seasonal Naive,0.824,0.647,1.0,0.281,0.162,0.385
-Sundial-Base,Naive,0.824,0.647,1.0,0.281,0.162,0.385
-Sundial-Base,Drift,0.765,0.587,0.941,0.284,0.14,0.401
-AutoTheta,Chronos-2,0.0,0.0,0.0,-0.43,-0.647,-0.251
-AutoTheta,TimesFM-2.5,0.0,0.0,0.0,-0.343,-0.553,-0.181
-AutoTheta,TiRex,0.0,0.0,0.0,-0.327,-0.523,-0.172
-AutoTheta,Chronos-Bolt,0.059,0.0,0.176,-0.311,-0.49,-0.159
-AutoTheta,TabPFN-TS,0.118,0.0,0.294,-0.367,-0.565,-0.192
-AutoTheta,Toto-1.0,0.059,0.0,0.176,-0.23,-0.383,-0.111
-AutoTheta,Moirai-2.0,0.118,0.0,0.294,-0.254,-0.434,-0.109
-AutoTheta,Stat. Ensemble,0.118,0.0,0.294,-0.111,-0.229,-0.029
-AutoTheta,AutoARIMA,0.294,0.118,0.529,0.017,-0.112,0.159
-AutoTheta,AutoETS,0.471,0.235,0.706,0.383,-0.044,0.694
-AutoTheta,Sundial-Base,0.471,0.235,0.706,-0.133,-0.304,0.014
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Seasonal Naive,0.647,0.412,0.882,0.186,0.095,0.268
-AutoTheta,Naive,0.647,0.412,0.882,0.186,0.095,0.268
-AutoTheta,Drift,0.824,0.647,1.0,0.189,0.096,0.275
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-0.757,-1.115,-0.468
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-0.65,-0.948,-0.418
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.63,-0.931,-0.386
-Seasonal Naive,Chronos-Bolt,0.0,0.0,0.0,-0.61,-0.881,-0.379
-Seasonal Naive,TabPFN-TS,0.118,0.0,0.294,-0.679,-1.026,-0.381
-Seasonal Naive,Toto-1.0,0.059,0.0,0.176,-0.511,-0.773,-0.299
-Seasonal Naive,Moirai-2.0,0.118,0.0,0.294,-0.54,-0.831,-0.293
-Seasonal Naive,Stat. Ensemble,0.176,0.059,0.353,-0.365,-0.608,-0.165
-Seasonal Naive,AutoARIMA,0.176,0.0,0.353,-0.207,-0.432,0.011
-Seasonal Naive,AutoETS,0.235,0.059,0.471,0.256,-0.252,0.638
-Seasonal Naive,Sundial-Base,0.176,0.0,0.353,-0.392,-0.627,-0.194
-Seasonal Naive,AutoTheta,0.353,0.118,0.588,-0.228,-0.365,-0.105
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Drift,0.882,0.706,1.0,0.004,-0.062,0.061
-Naive,Chronos-2,0.0,0.0,0.0,-0.757,-1.115,-0.468
-Naive,TimesFM-2.5,0.0,0.0,0.0,-0.65,-0.948,-0.418
-Naive,TiRex,0.0,0.0,0.0,-0.63,-0.931,-0.386
-Naive,Chronos-Bolt,0.0,0.0,0.0,-0.61,-0.881,-0.379
-Naive,TabPFN-TS,0.118,0.0,0.294,-0.679,-1.026,-0.381
-Naive,Toto-1.0,0.059,0.0,0.176,-0.511,-0.773,-0.299
-Naive,Moirai-2.0,0.118,0.0,0.294,-0.54,-0.831,-0.293
-Naive,Stat. Ensemble,0.176,0.059,0.353,-0.365,-0.608,-0.165
-Naive,AutoARIMA,0.176,0.0,0.353,-0.207,-0.432,0.011
-Naive,AutoETS,0.235,0.059,0.471,0.256,-0.252,0.638
-Naive,Sundial-Base,0.176,0.0,0.353,-0.392,-0.627,-0.194
-Naive,AutoTheta,0.353,0.118,0.588,-0.228,-0.365,-0.105
-Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,0.882,0.706,1.0,0.004,-0.062,0.061
-Drift,Chronos-2,0.0,0.0,0.0,-0.765,-1.118,-0.476
-Drift,TimesFM-2.5,0.0,0.0,0.0,-0.657,-0.977,-0.407
-Drift,TiRex,0.0,0.0,0.0,-0.637,-0.937,-0.391
-Drift,Chronos-Bolt,0.0,0.0,0.0,-0.617,-0.911,-0.385
-Drift,TabPFN-TS,0.118,0.0,0.294,-0.687,-1.076,-0.389
-Drift,Toto-1.0,0.059,0.0,0.176,-0.518,-0.75,-0.322
-Drift,Moirai-2.0,0.059,0.0,0.176,-0.547,-0.824,-0.314
-Drift,Stat. Ensemble,0.118,0.0,0.294,-0.371,-0.559,-0.206
-Drift,AutoARIMA,0.176,0.0,0.353,-0.212,-0.472,0.024
-Drift,AutoETS,0.235,0.059,0.471,0.257,-0.236,0.636
-Drift,Sundial-Base,0.235,0.059,0.413,-0.398,-0.669,-0.163
-Drift,AutoTheta,0.176,0.0,0.353,-0.234,-0.379,-0.107
-Drift,Seasonal Naive,0.118,0.0,0.294,-0.004,-0.065,0.058
-Drift,Naive,0.118,0.0,0.294,-0.004,-0.065,0.058
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/frequency_weekly/pairwise_WAPE.csv b/tables/frequency_weekly/pairwise_WAPE.csv
deleted file mode 100644
index 57b65d5643da627470c5fa373f7e3cf2328e6395..0000000000000000000000000000000000000000
--- a/tables/frequency_weekly/pairwise_WAPE.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TiRex,0.706,0.471,0.941,0.079,0.01,0.153
-Chronos-2,TimesFM-2.5,0.824,0.588,1.0,0.078,-0.026,0.172
-Chronos-2,TabPFN-TS,0.588,0.353,0.824,0.036,-0.025,0.098
-Chronos-2,Chronos-Bolt,0.824,0.647,1.0,0.101,0.008,0.183
-Chronos-2,Stat. Ensemble,0.765,0.587,0.941,0.205,0.042,0.342
-Chronos-2,Toto-1.0,0.824,0.647,1.0,0.16,0.091,0.233
-Chronos-2,Moirai-2.0,0.824,0.647,1.0,0.129,0.027,0.216
-Chronos-2,Sundial-Base,0.765,0.529,0.941,0.164,0.033,0.263
-Chronos-2,AutoETS,0.765,0.587,0.941,0.252,0.076,0.401
-Chronos-2,AutoARIMA,0.882,0.706,1.0,0.273,0.157,0.377
-Chronos-2,AutoTheta,0.882,0.706,1.0,0.27,0.125,0.39
-Chronos-2,Seasonal Naive,0.882,0.706,1.0,0.33,0.175,0.45
-Chronos-2,Naive,0.882,0.706,1.0,0.33,0.175,0.45
-Chronos-2,Drift,0.882,0.706,1.0,0.34,0.195,0.456
-TiRex,Chronos-2,0.294,0.059,0.529,-0.086,-0.181,-0.01
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,TimesFM-2.5,0.412,0.176,0.647,-0.001,-0.047,0.039
-TiRex,TabPFN-TS,0.529,0.294,0.765,-0.047,-0.172,0.047
-TiRex,Chronos-Bolt,0.765,0.529,0.941,0.024,-0.025,0.068
-TiRex,Stat. Ensemble,0.706,0.471,0.882,0.137,-0.009,0.28
-TiRex,Toto-1.0,0.882,0.706,1.0,0.088,0.031,0.14
-TiRex,Moirai-2.0,0.765,0.587,0.941,0.054,-0.002,0.105
-TiRex,Sundial-Base,0.765,0.529,0.941,0.092,-0.002,0.161
-TiRex,AutoETS,0.706,0.471,0.882,0.188,0.025,0.349
-TiRex,AutoARIMA,0.882,0.706,1.0,0.211,0.096,0.313
-TiRex,AutoTheta,0.882,0.706,1.0,0.207,0.08,0.327
-TiRex,Seasonal Naive,0.882,0.706,1.0,0.273,0.141,0.389
-TiRex,Naive,0.882,0.706,1.0,0.273,0.141,0.389
-TiRex,Drift,0.824,0.647,1.0,0.283,0.156,0.394
-TimesFM-2.5,Chronos-2,0.176,0.0,0.412,-0.085,-0.208,0.026
-TimesFM-2.5,TiRex,0.588,0.353,0.824,0.001,-0.041,0.045
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TabPFN-TS,0.471,0.235,0.706,-0.046,-0.183,0.057
-TimesFM-2.5,Chronos-Bolt,0.647,0.441,0.853,0.025,-0.018,0.07
-TimesFM-2.5,Stat. Ensemble,0.765,0.588,0.941,0.138,-0.021,0.285
-TimesFM-2.5,Toto-1.0,0.765,0.588,0.941,0.089,0.007,0.161
-TimesFM-2.5,Moirai-2.0,0.765,0.588,0.941,0.055,-0.013,0.117
-TimesFM-2.5,Sundial-Base,0.824,0.647,1.0,0.093,0.028,0.144
-TimesFM-2.5,AutoETS,0.706,0.471,0.882,0.189,0.018,0.35
-TimesFM-2.5,AutoARIMA,0.882,0.706,1.0,0.212,0.092,0.312
-TimesFM-2.5,AutoTheta,0.824,0.647,1.0,0.208,0.092,0.326
-TimesFM-2.5,Seasonal Naive,0.882,0.706,1.0,0.273,0.157,0.383
-TimesFM-2.5,Naive,0.882,0.706,1.0,0.273,0.157,0.383
-TimesFM-2.5,Drift,0.882,0.706,1.0,0.284,0.162,0.394
-TabPFN-TS,Chronos-2,0.412,0.176,0.647,-0.037,-0.108,0.024
-TabPFN-TS,TiRex,0.471,0.235,0.706,0.045,-0.05,0.147
-TabPFN-TS,TimesFM-2.5,0.529,0.294,0.765,0.044,-0.06,0.154
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Chronos-Bolt,0.471,0.235,0.706,0.068,-0.029,0.172
-TabPFN-TS,Stat. Ensemble,0.647,0.412,0.882,0.176,0.009,0.315
-TabPFN-TS,Toto-1.0,0.529,0.294,0.765,0.129,0.034,0.228
-TabPFN-TS,Moirai-2.0,0.529,0.294,0.765,0.097,-0.023,0.211
-TabPFN-TS,Sundial-Base,0.882,0.706,1.0,0.133,0.027,0.235
-TabPFN-TS,AutoETS,0.647,0.412,0.882,0.225,0.045,0.374
-TabPFN-TS,AutoARIMA,0.824,0.647,0.943,0.246,0.126,0.342
-TabPFN-TS,AutoTheta,0.765,0.529,0.941,0.243,0.106,0.362
-TabPFN-TS,Seasonal Naive,0.824,0.588,1.0,0.306,0.156,0.418
-TabPFN-TS,Naive,0.824,0.588,1.0,0.306,0.156,0.418
-TabPFN-TS,Drift,0.824,0.588,1.0,0.315,0.168,0.437
-Chronos-Bolt,Chronos-2,0.176,0.0,0.353,-0.112,-0.225,-0.008
-Chronos-Bolt,TiRex,0.235,0.059,0.471,-0.024,-0.073,0.024
-Chronos-Bolt,TimesFM-2.5,0.353,0.147,0.559,-0.025,-0.075,0.018
-Chronos-Bolt,TabPFN-TS,0.529,0.294,0.765,-0.073,-0.208,0.028
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Stat. Ensemble,0.647,0.412,0.882,0.116,-0.03,0.257
-Chronos-Bolt,Toto-1.0,0.529,0.294,0.765,0.066,0.005,0.131
-Chronos-Bolt,Moirai-2.0,0.588,0.382,0.794,0.032,-0.033,0.1
-Chronos-Bolt,Sundial-Base,0.706,0.471,0.882,0.07,0.007,0.125
-Chronos-Bolt,AutoETS,0.647,0.412,0.882,0.168,0.007,0.325
-Chronos-Bolt,AutoARIMA,0.824,0.646,1.0,0.192,0.082,0.289
-Chronos-Bolt,AutoTheta,0.882,0.706,1.0,0.188,0.071,0.302
-Chronos-Bolt,Seasonal Naive,0.824,0.647,1.0,0.255,0.129,0.366
-Chronos-Bolt,Naive,0.824,0.647,1.0,0.255,0.129,0.366
-Chronos-Bolt,Drift,0.824,0.647,1.0,0.266,0.142,0.372
-Stat. Ensemble,Chronos-2,0.235,0.059,0.413,-0.258,-0.521,-0.043
-Stat. Ensemble,TiRex,0.294,0.118,0.529,-0.158,-0.389,0.009
-Stat. Ensemble,TimesFM-2.5,0.235,0.059,0.412,-0.16,-0.399,0.02
-Stat. Ensemble,TabPFN-TS,0.353,0.118,0.588,-0.213,-0.459,-0.009
-Stat. Ensemble,Chronos-Bolt,0.353,0.118,0.588,-0.131,-0.346,0.029
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,Toto-1.0,0.529,0.294,0.765,-0.057,-0.228,0.078
-Stat. Ensemble,Moirai-2.0,0.471,0.235,0.706,-0.095,-0.28,0.047
-Stat. Ensemble,Sundial-Base,0.529,0.294,0.765,-0.052,-0.265,0.121
-Stat. Ensemble,AutoETS,0.765,0.529,0.941,0.059,0.01,0.119
-Stat. Ensemble,AutoARIMA,0.647,0.412,0.882,0.086,-0.015,0.202
-Stat. Ensemble,AutoTheta,0.941,0.824,1.0,0.081,0.016,0.167
-Stat. Ensemble,Seasonal Naive,0.765,0.529,0.941,0.157,0.048,0.277
-Stat. Ensemble,Naive,0.765,0.529,0.941,0.157,0.048,0.277
-Stat. Ensemble,Drift,0.824,0.588,1.0,0.169,0.092,0.247
-Toto-1.0,Chronos-2,0.176,0.0,0.353,-0.191,-0.305,-0.1
-Toto-1.0,TiRex,0.118,0.0,0.294,-0.096,-0.162,-0.032
-Toto-1.0,TimesFM-2.5,0.235,0.059,0.412,-0.097,-0.192,-0.007
-Toto-1.0,TabPFN-TS,0.471,0.235,0.706,-0.148,-0.295,-0.035
-Toto-1.0,Chronos-Bolt,0.471,0.235,0.706,-0.071,-0.15,-0.005
-Toto-1.0,Stat. Ensemble,0.471,0.235,0.706,0.054,-0.085,0.186
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,Moirai-2.0,0.529,0.294,0.765,-0.037,-0.109,0.027
-Toto-1.0,Sundial-Base,0.588,0.353,0.824,0.005,-0.124,0.108
-Toto-1.0,AutoETS,0.529,0.294,0.765,0.11,-0.051,0.257
-Toto-1.0,AutoARIMA,0.706,0.471,0.882,0.135,0.04,0.231
-Toto-1.0,AutoTheta,0.765,0.529,0.941,0.131,0.002,0.237
-Toto-1.0,Seasonal Naive,0.824,0.588,1.0,0.203,0.059,0.321
-Toto-1.0,Naive,0.824,0.588,1.0,0.203,0.059,0.321
-Toto-1.0,Drift,0.824,0.588,1.0,0.214,0.085,0.322
-Moirai-2.0,Chronos-2,0.176,0.0,0.353,-0.149,-0.276,-0.028
-Moirai-2.0,TiRex,0.235,0.059,0.413,-0.058,-0.117,0.002
-Moirai-2.0,TimesFM-2.5,0.235,0.059,0.412,-0.059,-0.133,0.012
-Moirai-2.0,TabPFN-TS,0.471,0.235,0.706,-0.108,-0.267,0.023
-Moirai-2.0,Chronos-Bolt,0.412,0.206,0.618,-0.033,-0.111,0.032
-Moirai-2.0,Stat. Ensemble,0.529,0.294,0.765,0.087,-0.049,0.219
-Moirai-2.0,Toto-1.0,0.471,0.235,0.706,0.035,-0.028,0.098
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Sundial-Base,0.647,0.412,0.882,0.04,-0.075,0.129
-Moirai-2.0,AutoETS,0.529,0.294,0.765,0.141,-0.014,0.287
-Moirai-2.0,AutoARIMA,0.706,0.471,0.882,0.165,0.035,0.283
-Moirai-2.0,AutoTheta,0.765,0.588,0.941,0.161,0.04,0.278
-Moirai-2.0,Seasonal Naive,0.706,0.471,0.882,0.231,0.095,0.358
-Moirai-2.0,Naive,0.706,0.471,0.882,0.231,0.095,0.358
-Moirai-2.0,Drift,0.706,0.471,0.882,0.242,0.121,0.352
-Sundial-Base,Chronos-2,0.235,0.059,0.471,-0.196,-0.356,-0.034
-Sundial-Base,TiRex,0.235,0.059,0.471,-0.102,-0.192,0.002
-Sundial-Base,TimesFM-2.5,0.176,0.0,0.353,-0.103,-0.168,-0.029
-Sundial-Base,TabPFN-TS,0.118,0.0,0.294,-0.154,-0.307,-0.027
-Sundial-Base,Chronos-Bolt,0.294,0.118,0.529,-0.076,-0.143,-0.007
-Sundial-Base,Stat. Ensemble,0.471,0.235,0.706,0.049,-0.137,0.209
-Sundial-Base,Toto-1.0,0.412,0.176,0.647,-0.005,-0.121,0.11
-Sundial-Base,Moirai-2.0,0.353,0.118,0.588,-0.042,-0.148,0.07
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,AutoETS,0.529,0.294,0.765,0.105,-0.087,0.272
-Sundial-Base,AutoARIMA,0.706,0.471,0.882,0.131,-0.011,0.246
-Sundial-Base,AutoTheta,0.588,0.353,0.824,0.127,-0.006,0.254
-Sundial-Base,Seasonal Naive,0.765,0.529,0.941,0.199,0.069,0.311
-Sundial-Base,Naive,0.765,0.529,0.941,0.199,0.069,0.311
-Sundial-Base,Drift,0.765,0.588,0.941,0.21,0.069,0.34
-AutoETS,Chronos-2,0.235,0.059,0.413,-0.337,-0.668,-0.083
-AutoETS,TiRex,0.294,0.118,0.529,-0.231,-0.536,-0.025
-AutoETS,TimesFM-2.5,0.294,0.118,0.529,-0.233,-0.539,-0.018
-AutoETS,TabPFN-TS,0.353,0.118,0.588,-0.29,-0.597,-0.047
-AutoETS,Chronos-Bolt,0.353,0.118,0.588,-0.202,-0.482,-0.007
-AutoETS,Stat. Ensemble,0.235,0.059,0.471,-0.063,-0.134,-0.01
-AutoETS,Toto-1.0,0.471,0.235,0.706,-0.123,-0.345,0.049
-AutoETS,Moirai-2.0,0.471,0.235,0.706,-0.164,-0.403,0.014
-AutoETS,Sundial-Base,0.471,0.235,0.706,-0.118,-0.373,0.08
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,AutoARIMA,0.529,0.294,0.765,0.028,-0.117,0.166
-AutoETS,AutoTheta,0.353,0.118,0.588,0.024,-0.083,0.123
-AutoETS,Seasonal Naive,0.647,0.412,0.882,0.104,-0.022,0.236
-AutoETS,Naive,0.647,0.412,0.882,0.104,-0.022,0.236
-AutoETS,Drift,0.706,0.471,0.882,0.117,0.025,0.207
-AutoARIMA,Chronos-2,0.118,0.0,0.294,-0.376,-0.604,-0.186
-AutoARIMA,TiRex,0.118,0.0,0.294,-0.267,-0.455,-0.106
-AutoARIMA,TimesFM-2.5,0.118,0.0,0.294,-0.268,-0.454,-0.101
-AutoARIMA,TabPFN-TS,0.176,0.057,0.353,-0.327,-0.521,-0.144
-AutoARIMA,Chronos-Bolt,0.176,0.0,0.354,-0.237,-0.407,-0.089
-AutoARIMA,Stat. Ensemble,0.353,0.118,0.588,-0.094,-0.254,0.015
-AutoARIMA,Toto-1.0,0.294,0.118,0.529,-0.156,-0.3,-0.041
-AutoARIMA,Moirai-2.0,0.294,0.118,0.529,-0.198,-0.394,-0.036
-AutoARIMA,Sundial-Base,0.294,0.118,0.529,-0.15,-0.326,0.011
-AutoARIMA,AutoETS,0.471,0.235,0.706,-0.029,-0.199,0.105
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoTheta,0.471,0.235,0.706,-0.005,-0.106,0.067
-AutoARIMA,Seasonal Naive,0.706,0.471,0.882,0.078,-0.04,0.162
-AutoARIMA,Naive,0.706,0.471,0.882,0.078,-0.04,0.162
-AutoARIMA,Drift,0.765,0.588,0.941,0.091,-0.023,0.183
-AutoTheta,Chronos-2,0.118,0.0,0.294,-0.37,-0.64,-0.144
-AutoTheta,TiRex,0.118,0.0,0.294,-0.261,-0.485,-0.087
-AutoTheta,TimesFM-2.5,0.176,0.0,0.353,-0.262,-0.483,-0.101
-AutoTheta,TabPFN-TS,0.235,0.059,0.471,-0.321,-0.569,-0.119
-AutoTheta,Chronos-Bolt,0.118,0.0,0.294,-0.231,-0.433,-0.076
-AutoTheta,Stat. Ensemble,0.059,0.0,0.176,-0.089,-0.2,-0.016
-AutoTheta,Toto-1.0,0.235,0.059,0.471,-0.15,-0.311,-0.002
-AutoTheta,Moirai-2.0,0.235,0.059,0.412,-0.193,-0.385,-0.041
-AutoTheta,Sundial-Base,0.412,0.176,0.647,-0.145,-0.341,0.006
-AutoTheta,AutoETS,0.647,0.412,0.882,-0.024,-0.14,0.077
-AutoTheta,AutoARIMA,0.529,0.294,0.765,0.005,-0.072,0.096
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Seasonal Naive,0.706,0.471,0.882,0.083,0.013,0.148
-AutoTheta,Naive,0.706,0.471,0.882,0.083,0.013,0.148
-AutoTheta,Drift,0.765,0.588,0.941,0.096,0.044,0.148
-Seasonal Naive,Chronos-2,0.118,0.0,0.294,-0.493,-0.817,-0.213
-Seasonal Naive,TiRex,0.118,0.0,0.294,-0.375,-0.636,-0.164
-Seasonal Naive,TimesFM-2.5,0.118,0.0,0.294,-0.376,-0.621,-0.186
-Seasonal Naive,TabPFN-TS,0.176,0.0,0.412,-0.44,-0.719,-0.185
-Seasonal Naive,Chronos-Bolt,0.176,0.0,0.353,-0.342,-0.578,-0.148
-Seasonal Naive,Stat. Ensemble,0.235,0.059,0.471,-0.187,-0.383,-0.051
-Seasonal Naive,Toto-1.0,0.176,0.0,0.412,-0.254,-0.474,-0.063
-Seasonal Naive,Moirai-2.0,0.294,0.118,0.529,-0.3,-0.559,-0.105
-Seasonal Naive,Sundial-Base,0.235,0.059,0.471,-0.248,-0.45,-0.074
-Seasonal Naive,AutoETS,0.353,0.118,0.588,-0.116,-0.309,0.022
-Seasonal Naive,AutoARIMA,0.294,0.118,0.529,-0.085,-0.193,0.039
-Seasonal Naive,AutoTheta,0.294,0.118,0.529,-0.09,-0.174,-0.013
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Drift,0.882,0.706,1.0,0.014,-0.061,0.08
-Naive,Chronos-2,0.118,0.0,0.294,-0.493,-0.817,-0.213
-Naive,TiRex,0.118,0.0,0.294,-0.375,-0.636,-0.164
-Naive,TimesFM-2.5,0.118,0.0,0.294,-0.376,-0.621,-0.186
-Naive,TabPFN-TS,0.176,0.0,0.412,-0.44,-0.719,-0.185
-Naive,Chronos-Bolt,0.176,0.0,0.353,-0.342,-0.578,-0.148
-Naive,Stat. Ensemble,0.235,0.059,0.471,-0.187,-0.383,-0.051
-Naive,Toto-1.0,0.176,0.0,0.412,-0.254,-0.474,-0.063
-Naive,Moirai-2.0,0.294,0.118,0.529,-0.3,-0.559,-0.105
-Naive,Sundial-Base,0.235,0.059,0.471,-0.248,-0.45,-0.074
-Naive,AutoETS,0.353,0.118,0.588,-0.116,-0.309,0.022
-Naive,AutoARIMA,0.294,0.118,0.529,-0.085,-0.193,0.039
-Naive,AutoTheta,0.294,0.118,0.529,-0.09,-0.174,-0.013
-Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,0.882,0.706,1.0,0.014,-0.061,0.08
-Drift,Chronos-2,0.118,0.0,0.294,-0.514,-0.837,-0.243
-Drift,TiRex,0.176,0.0,0.353,-0.394,-0.65,-0.185
-Drift,TimesFM-2.5,0.118,0.0,0.294,-0.396,-0.65,-0.194
-Drift,TabPFN-TS,0.176,0.0,0.412,-0.46,-0.777,-0.203
-Drift,Chronos-Bolt,0.176,0.0,0.353,-0.362,-0.593,-0.165
-Drift,Stat. Ensemble,0.176,0.0,0.412,-0.204,-0.328,-0.102
-Drift,Toto-1.0,0.176,0.0,0.412,-0.272,-0.474,-0.093
-Drift,Moirai-2.0,0.294,0.118,0.529,-0.319,-0.542,-0.138
-Drift,Sundial-Base,0.235,0.059,0.412,-0.266,-0.515,-0.074
-Drift,AutoETS,0.294,0.118,0.529,-0.132,-0.26,-0.025
-Drift,AutoARIMA,0.235,0.059,0.412,-0.101,-0.224,0.022
-Drift,AutoTheta,0.235,0.059,0.412,-0.106,-0.174,-0.046
-Drift,Seasonal Naive,0.118,0.0,0.294,-0.014,-0.087,0.057
-Drift,Naive,0.118,0.0,0.294,-0.014,-0.087,0.057
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/frequency_weekly/pairwise_WQL.csv b/tables/frequency_weekly/pairwise_WQL.csv
deleted file mode 100644
index 2cc1218c6177acc4694f642de538a7efa6cb184d..0000000000000000000000000000000000000000
--- a/tables/frequency_weekly/pairwise_WQL.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TimesFM-2.5,0.882,0.706,1.0,0.074,-0.013,0.155
-Chronos-2,TiRex,0.765,0.587,0.941,0.09,0.029,0.154
-Chronos-2,Chronos-Bolt,0.824,0.647,1.0,0.094,0.007,0.17
-Chronos-2,TabPFN-TS,0.588,0.353,0.824,0.032,-0.019,0.085
-Chronos-2,Moirai-2.0,0.824,0.647,1.0,0.135,0.041,0.217
-Chronos-2,Toto-1.0,0.824,0.647,1.0,0.158,0.087,0.23
-Chronos-2,Stat. Ensemble,0.824,0.647,1.0,0.254,0.121,0.374
-Chronos-2,Sundial-Base,0.941,0.824,1.0,0.223,0.102,0.311
-Chronos-2,AutoARIMA,0.941,0.824,1.0,0.306,0.193,0.402
-Chronos-2,AutoETS,0.824,0.647,1.0,0.583,0.277,0.786
-Chronos-2,AutoTheta,0.941,0.824,1.0,0.334,0.21,0.443
-Chronos-2,Seasonal Naive,0.941,0.824,1.0,0.47,0.339,0.574
-Chronos-2,Naive,0.941,0.824,1.0,0.47,0.339,0.574
-Chronos-2,Drift,0.941,0.824,1.0,0.471,0.345,0.573
-TimesFM-2.5,Chronos-2,0.118,0.0,0.294,-0.08,-0.183,0.013
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TiRex,0.529,0.294,0.765,0.018,-0.013,0.055
-TimesFM-2.5,Chronos-Bolt,0.647,0.441,0.853,0.022,-0.021,0.069
-TimesFM-2.5,TabPFN-TS,0.529,0.294,0.765,-0.045,-0.165,0.048
-TimesFM-2.5,Moirai-2.0,0.765,0.588,0.941,0.066,0.003,0.129
-TimesFM-2.5,Toto-1.0,0.706,0.529,0.941,0.09,0.009,0.166
-TimesFM-2.5,Stat. Ensemble,0.824,0.647,1.0,0.194,0.052,0.328
-TimesFM-2.5,Sundial-Base,0.882,0.706,1.0,0.16,0.096,0.212
-TimesFM-2.5,AutoARIMA,0.882,0.706,1.0,0.25,0.13,0.351
-TimesFM-2.5,AutoETS,0.824,0.647,1.0,0.552,0.23,0.773
-TimesFM-2.5,AutoTheta,0.941,0.824,1.0,0.281,0.166,0.396
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.427,0.32,0.524
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.427,0.32,0.524
-TimesFM-2.5,Drift,0.941,0.824,1.0,0.429,0.318,0.531
-TiRex,Chronos-2,0.235,0.059,0.413,-0.099,-0.182,-0.03
-TiRex,TimesFM-2.5,0.471,0.235,0.706,-0.018,-0.058,0.013
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,Chronos-Bolt,0.765,0.529,0.941,0.004,-0.049,0.05
-TiRex,TabPFN-TS,0.529,0.294,0.765,-0.064,-0.173,0.025
-TiRex,Moirai-2.0,0.765,0.587,0.941,0.049,-0.016,0.111
-TiRex,Toto-1.0,0.882,0.706,1.0,0.074,0.012,0.134
-TiRex,Stat. Ensemble,0.765,0.529,0.941,0.18,0.039,0.314
-TiRex,Sundial-Base,0.882,0.706,1.0,0.145,0.058,0.21
-TiRex,AutoARIMA,0.882,0.706,1.0,0.237,0.118,0.336
-TiRex,AutoETS,0.765,0.529,0.941,0.546,0.218,0.771
-TiRex,AutoTheta,0.882,0.706,1.0,0.268,0.157,0.384
-TiRex,Seasonal Naive,0.941,0.824,1.0,0.417,0.297,0.517
-TiRex,Naive,0.941,0.824,1.0,0.417,0.297,0.517
-TiRex,Drift,0.882,0.706,1.0,0.418,0.302,0.522
-Chronos-Bolt,Chronos-2,0.176,0.0,0.353,-0.104,-0.205,-0.007
-Chronos-Bolt,TimesFM-2.5,0.353,0.147,0.559,-0.022,-0.074,0.02
-Chronos-Bolt,TiRex,0.235,0.059,0.471,-0.004,-0.052,0.047
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,TabPFN-TS,0.529,0.294,0.765,-0.069,-0.189,0.026
-Chronos-Bolt,Moirai-2.0,0.647,0.412,0.853,0.045,-0.019,0.121
-Chronos-Bolt,Toto-1.0,0.647,0.412,0.882,0.07,0.004,0.14
-Chronos-Bolt,Stat. Ensemble,0.765,0.529,0.941,0.176,0.046,0.302
-Chronos-Bolt,Sundial-Base,0.882,0.706,1.0,0.142,0.079,0.197
-Chronos-Bolt,AutoARIMA,0.882,0.706,1.0,0.233,0.12,0.33
-Chronos-Bolt,AutoETS,0.824,0.647,1.0,0.547,0.218,0.773
-Chronos-Bolt,AutoTheta,0.941,0.824,1.0,0.265,0.158,0.37
-Chronos-Bolt,Seasonal Naive,1.0,1.0,1.0,0.414,0.309,0.505
-Chronos-Bolt,Naive,1.0,1.0,1.0,0.414,0.309,0.505
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.416,0.311,0.512
-TabPFN-TS,Chronos-2,0.412,0.176,0.647,-0.033,-0.093,0.019
-TabPFN-TS,TimesFM-2.5,0.471,0.235,0.706,0.043,-0.05,0.142
-TabPFN-TS,TiRex,0.471,0.235,0.706,0.06,-0.026,0.148
-TabPFN-TS,Chronos-Bolt,0.471,0.235,0.706,0.064,-0.027,0.159
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Moirai-2.0,0.647,0.412,0.882,0.106,-0.008,0.214
-TabPFN-TS,Toto-1.0,0.588,0.353,0.824,0.13,0.035,0.223
-TabPFN-TS,Stat. Ensemble,0.706,0.471,0.882,0.229,0.083,0.352
-TabPFN-TS,Sundial-Base,0.941,0.824,1.0,0.197,0.086,0.291
-TabPFN-TS,AutoARIMA,0.824,0.647,1.0,0.283,0.174,0.367
-TabPFN-TS,AutoETS,0.706,0.471,0.882,0.57,0.25,0.783
-TabPFN-TS,AutoTheta,0.882,0.706,1.0,0.312,0.194,0.414
-TabPFN-TS,Seasonal Naive,0.882,0.706,1.0,0.452,0.325,0.553
-TabPFN-TS,Naive,0.882,0.706,1.0,0.452,0.325,0.553
-TabPFN-TS,Drift,0.882,0.706,1.0,0.453,0.326,0.558
-Moirai-2.0,Chronos-2,0.176,0.0,0.353,-0.156,-0.277,-0.042
-Moirai-2.0,TimesFM-2.5,0.235,0.059,0.412,-0.07,-0.148,-0.003
-Moirai-2.0,TiRex,0.235,0.059,0.413,-0.051,-0.125,0.016
-Moirai-2.0,Chronos-Bolt,0.353,0.147,0.588,-0.047,-0.138,0.018
-Moirai-2.0,TabPFN-TS,0.353,0.118,0.588,-0.119,-0.272,0.008
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Toto-1.0,0.647,0.412,0.824,0.026,-0.034,0.083
-Moirai-2.0,Stat. Ensemble,0.706,0.471,0.882,0.137,0.008,0.263
-Moirai-2.0,Sundial-Base,0.824,0.647,1.0,0.101,-0.014,0.191
-Moirai-2.0,AutoARIMA,0.765,0.529,0.941,0.197,0.061,0.317
-Moirai-2.0,AutoETS,0.706,0.471,0.882,0.528,0.182,0.766
-Moirai-2.0,AutoTheta,0.824,0.647,0.941,0.231,0.116,0.341
-Moirai-2.0,Seasonal Naive,0.882,0.706,1.0,0.387,0.259,0.495
-Moirai-2.0,Naive,0.882,0.706,1.0,0.387,0.259,0.495
-Moirai-2.0,Drift,0.882,0.706,1.0,0.388,0.271,0.491
-Toto-1.0,Chronos-2,0.176,0.0,0.353,-0.187,-0.299,-0.095
-Toto-1.0,TimesFM-2.5,0.294,0.059,0.471,-0.099,-0.199,-0.009
-Toto-1.0,TiRex,0.118,0.0,0.294,-0.08,-0.154,-0.012
-Toto-1.0,Chronos-Bolt,0.353,0.118,0.588,-0.075,-0.162,-0.004
-Toto-1.0,TabPFN-TS,0.412,0.176,0.647,-0.149,-0.287,-0.036
-Toto-1.0,Moirai-2.0,0.353,0.176,0.588,-0.027,-0.091,0.033
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,Stat. Ensemble,0.647,0.412,0.882,0.114,0.007,0.225
-Toto-1.0,Sundial-Base,0.765,0.529,0.941,0.077,-0.049,0.18
-Toto-1.0,AutoARIMA,0.765,0.529,0.941,0.176,0.076,0.271
-Toto-1.0,AutoETS,0.706,0.471,0.882,0.518,0.172,0.758
-Toto-1.0,AutoTheta,0.882,0.706,1.0,0.21,0.105,0.308
-Toto-1.0,Seasonal Naive,0.941,0.824,1.0,0.37,0.244,0.475
-Toto-1.0,Naive,0.941,0.824,1.0,0.37,0.244,0.475
-Toto-1.0,Drift,0.941,0.824,1.0,0.372,0.261,0.465
-Stat. Ensemble,Chronos-2,0.176,0.0,0.353,-0.34,-0.597,-0.138
-Stat. Ensemble,TimesFM-2.5,0.176,0.0,0.353,-0.241,-0.488,-0.055
-Stat. Ensemble,TiRex,0.235,0.059,0.471,-0.219,-0.459,-0.041
-Stat. Ensemble,Chronos-Bolt,0.235,0.059,0.471,-0.214,-0.433,-0.048
-Stat. Ensemble,TabPFN-TS,0.294,0.118,0.529,-0.297,-0.543,-0.09
-Stat. Ensemble,Moirai-2.0,0.294,0.118,0.529,-0.159,-0.358,-0.008
-Stat. Ensemble,Toto-1.0,0.353,0.118,0.588,-0.129,-0.291,-0.007
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,Sundial-Base,0.412,0.176,0.647,-0.042,-0.256,0.132
-Stat. Ensemble,AutoARIMA,0.529,0.294,0.765,0.07,-0.035,0.195
-Stat. Ensemble,AutoETS,0.706,0.471,0.884,0.467,0.051,0.734
-Stat. Ensemble,AutoTheta,0.882,0.706,1.0,0.108,0.041,0.196
-Stat. Ensemble,Seasonal Naive,0.941,0.824,1.0,0.289,0.169,0.395
-Stat. Ensemble,Naive,0.941,0.824,1.0,0.289,0.169,0.395
-Stat. Ensemble,Drift,0.941,0.824,1.0,0.291,0.192,0.377
-Sundial-Base,Chronos-2,0.059,0.0,0.176,-0.286,-0.452,-0.114
-Sundial-Base,TimesFM-2.5,0.118,0.0,0.294,-0.191,-0.269,-0.106
-Sundial-Base,TiRex,0.118,0.0,0.294,-0.17,-0.266,-0.062
-Sundial-Base,Chronos-Bolt,0.118,0.0,0.294,-0.165,-0.245,-0.086
-Sundial-Base,TabPFN-TS,0.059,0.0,0.176,-0.245,-0.41,-0.094
-Sundial-Base,Moirai-2.0,0.176,0.0,0.353,-0.113,-0.236,0.014
-Sundial-Base,Toto-1.0,0.235,0.059,0.471,-0.084,-0.22,0.047
-Sundial-Base,Stat. Ensemble,0.588,0.353,0.824,0.04,-0.152,0.204
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,AutoARIMA,0.706,0.471,0.941,0.107,-0.056,0.237
-Sundial-Base,AutoETS,0.647,0.412,0.882,0.475,0.09,0.736
-Sundial-Base,AutoTheta,0.706,0.471,0.882,0.144,0.008,0.266
-Sundial-Base,Seasonal Naive,0.824,0.647,0.943,0.318,0.194,0.423
-Sundial-Base,Naive,0.824,0.647,0.943,0.318,0.194,0.423
-Sundial-Base,Drift,0.824,0.647,1.0,0.319,0.181,0.442
-AutoARIMA,Chronos-2,0.059,0.0,0.176,-0.44,-0.673,-0.239
-AutoARIMA,TimesFM-2.5,0.118,0.0,0.294,-0.334,-0.542,-0.149
-AutoARIMA,TiRex,0.118,0.0,0.294,-0.31,-0.505,-0.134
-AutoARIMA,Chronos-Bolt,0.118,0.0,0.294,-0.304,-0.493,-0.136
-AutoARIMA,TabPFN-TS,0.176,0.0,0.353,-0.394,-0.58,-0.21
-AutoARIMA,Moirai-2.0,0.235,0.059,0.471,-0.246,-0.465,-0.065
-AutoARIMA,Toto-1.0,0.235,0.059,0.471,-0.213,-0.372,-0.082
-AutoARIMA,Stat. Ensemble,0.471,0.235,0.706,-0.075,-0.242,0.034
-AutoARIMA,Sundial-Base,0.294,0.059,0.529,-0.12,-0.31,0.053
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoETS,0.588,0.353,0.824,0.42,-0.002,0.715
-AutoARIMA,AutoTheta,0.706,0.471,0.882,0.041,-0.062,0.118
-AutoARIMA,Seasonal Naive,0.882,0.706,1.0,0.236,0.096,0.346
-AutoARIMA,Naive,0.882,0.706,1.0,0.236,0.096,0.346
-AutoARIMA,Drift,0.882,0.706,1.0,0.238,0.1,0.354
-AutoETS,Chronos-2,0.176,0.0,0.353,-1.4,-3.668,-0.383
-AutoETS,TimesFM-2.5,0.176,0.0,0.353,-1.233,-3.406,-0.299
-AutoETS,TiRex,0.235,0.059,0.471,-1.201,-3.366,-0.279
-AutoETS,Chronos-Bolt,0.176,0.0,0.353,-1.206,-3.408,-0.279
-AutoETS,TabPFN-TS,0.294,0.118,0.529,-1.326,-3.6,-0.333
-AutoETS,Moirai-2.0,0.294,0.118,0.529,-1.121,-3.271,-0.223
-AutoETS,Toto-1.0,0.294,0.118,0.529,-1.074,-3.125,-0.207
-AutoETS,Stat. Ensemble,0.294,0.116,0.529,-0.877,-2.759,-0.053
-AutoETS,Sundial-Base,0.353,0.118,0.588,-0.903,-2.791,-0.099
-AutoETS,AutoARIMA,0.412,0.176,0.647,-0.724,-2.513,0.002
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,AutoTheta,0.529,0.294,0.765,-0.694,-2.439,0.032
-AutoETS,Seasonal Naive,0.706,0.529,0.882,-0.385,-1.856,0.2
-AutoETS,Naive,0.706,0.529,0.882,-0.385,-1.856,0.2
-AutoETS,Drift,0.765,0.529,0.941,-0.39,-1.866,0.187
-AutoTheta,Chronos-2,0.059,0.0,0.176,-0.503,-0.796,-0.266
-AutoTheta,TimesFM-2.5,0.059,0.0,0.176,-0.391,-0.657,-0.2
-AutoTheta,TiRex,0.118,0.0,0.294,-0.367,-0.624,-0.186
-AutoTheta,Chronos-Bolt,0.059,0.0,0.176,-0.361,-0.587,-0.187
-AutoTheta,TabPFN-TS,0.118,0.0,0.294,-0.454,-0.706,-0.24
-AutoTheta,Moirai-2.0,0.176,0.059,0.353,-0.3,-0.517,-0.131
-AutoTheta,Toto-1.0,0.118,0.0,0.294,-0.266,-0.446,-0.117
-AutoTheta,Stat. Ensemble,0.118,0.0,0.294,-0.121,-0.244,-0.043
-AutoTheta,Sundial-Base,0.294,0.118,0.529,-0.168,-0.362,-0.008
-AutoTheta,AutoARIMA,0.294,0.118,0.529,-0.043,-0.134,0.059
-AutoTheta,AutoETS,0.471,0.235,0.706,0.41,-0.033,0.709
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Seasonal Naive,0.765,0.529,0.941,0.203,0.105,0.29
-AutoTheta,Naive,0.765,0.529,0.941,0.203,0.105,0.29
-AutoTheta,Drift,0.706,0.471,0.882,0.205,0.11,0.297
-Seasonal Naive,Chronos-2,0.059,0.0,0.176,-0.885,-1.345,-0.512
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-0.745,-1.103,-0.471
-Seasonal Naive,TiRex,0.059,0.0,0.176,-0.715,-1.069,-0.423
-Seasonal Naive,Chronos-Bolt,0.0,0.0,0.0,-0.707,-1.02,-0.448
-Seasonal Naive,TabPFN-TS,0.118,0.0,0.294,-0.825,-1.236,-0.481
-Seasonal Naive,Moirai-2.0,0.118,0.0,0.294,-0.631,-0.979,-0.35
-Seasonal Naive,Toto-1.0,0.059,0.0,0.176,-0.588,-0.905,-0.322
-Seasonal Naive,Stat. Ensemble,0.059,0.0,0.176,-0.407,-0.653,-0.204
-Seasonal Naive,Sundial-Base,0.176,0.057,0.353,-0.465,-0.735,-0.241
-Seasonal Naive,AutoARIMA,0.118,0.0,0.294,-0.309,-0.53,-0.106
-Seasonal Naive,AutoETS,0.294,0.118,0.471,0.278,-0.25,0.65
-Seasonal Naive,AutoTheta,0.235,0.059,0.471,-0.255,-0.407,-0.117
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Drift,0.824,0.647,1.0,0.003,-0.067,0.061
-Naive,Chronos-2,0.059,0.0,0.176,-0.885,-1.345,-0.512
-Naive,TimesFM-2.5,0.0,0.0,0.0,-0.745,-1.103,-0.471
-Naive,TiRex,0.059,0.0,0.176,-0.715,-1.069,-0.423
-Naive,Chronos-Bolt,0.0,0.0,0.0,-0.707,-1.02,-0.448
-Naive,TabPFN-TS,0.118,0.0,0.294,-0.825,-1.236,-0.481
-Naive,Moirai-2.0,0.118,0.0,0.294,-0.631,-0.979,-0.35
-Naive,Toto-1.0,0.059,0.0,0.176,-0.588,-0.905,-0.322
-Naive,Stat. Ensemble,0.059,0.0,0.176,-0.407,-0.653,-0.204
-Naive,Sundial-Base,0.176,0.057,0.353,-0.465,-0.735,-0.241
-Naive,AutoARIMA,0.118,0.0,0.294,-0.309,-0.53,-0.106
-Naive,AutoETS,0.294,0.118,0.471,0.278,-0.25,0.65
-Naive,AutoTheta,0.235,0.059,0.471,-0.255,-0.407,-0.117
-Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,0.824,0.647,1.0,0.003,-0.067,0.061
-Drift,Chronos-2,0.059,0.0,0.176,-0.89,-1.34,-0.527
-Drift,TimesFM-2.5,0.059,0.0,0.176,-0.75,-1.131,-0.465
-Drift,TiRex,0.118,0.0,0.294,-0.719,-1.091,-0.433
-Drift,Chronos-Bolt,0.0,0.0,0.0,-0.711,-1.05,-0.451
-Drift,TabPFN-TS,0.118,0.0,0.294,-0.829,-1.263,-0.484
-Drift,Moirai-2.0,0.118,0.0,0.294,-0.635,-0.965,-0.372
-Drift,Toto-1.0,0.059,0.0,0.176,-0.592,-0.871,-0.352
-Drift,Stat. Ensemble,0.059,0.0,0.176,-0.41,-0.606,-0.237
-Drift,Sundial-Base,0.176,0.0,0.353,-0.469,-0.793,-0.221
-Drift,AutoARIMA,0.118,0.0,0.294,-0.312,-0.548,-0.111
-Drift,AutoETS,0.235,0.059,0.471,0.28,-0.23,0.651
-Drift,AutoTheta,0.294,0.118,0.529,-0.258,-0.422,-0.124
-Drift,Seasonal Naive,0.176,0.0,0.353,-0.003,-0.065,0.063
-Drift,Naive,0.176,0.0,0.353,-0.003,-0.065,0.063
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/full/leaderboard_MASE.csv b/tables/full/leaderboard_MASE.csv
deleted file mode 100644
index f2a83f0cc2b818ee876260cffaaee8f3edd0522d..0000000000000000000000000000000000000000
--- a/tables/full/leaderboard_MASE.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,88.07142857142857,35.49604819631662,0.0,0.8031324525807175,0.0,0.0
-TiRex,76.89285714285712,30.012261671412087,0.0,0.22657166035714288,0.01,0.0
-TimesFM-2.5,75.07142857142857,30.197590695974842,0.0,1.8920524236607146,0.1,0.0
-Toto-1.0,66.85714285714285,28.213885409107164,0.0,22.06562094568182,0.08,0.0
-Moirai-2.0,61.21428571428572,27.25905867510979,0.0,0.34801128166666667,0.28,0.0
-Chronos-Bolt,60.785714285714285,26.51514785224567,0.0,0.24851168673039045,0.0,0.0
-TabPFN-TS,58.67857142857142,27.649834806479856,0.0,88.93563502960615,0.0,2.0
-Sundial-Base,53.39285714285714,24.746214191232585,0.0,8.007535389309524,0.01,0.0
-Stat. Ensemble,48.535714285714285,15.654207763455553,0.0,148.58311610827104,0.0,11.0
-AutoARIMA,36.67857142857143,11.239602667684679,0.0,19.52332778642857,0.0,10.0
-AutoTheta,34.92857142857142,10.9884701559679,0.0,3.250292683443853,0.0,0.0
-AutoETS,33.25,2.258981670108584,0.0,3.4683364387499998,0.0,3.0
-Seasonal Naive,20.96428571428571,0.0,0.0,0.455576268872549,0.0,0.0
-Naive,19.321428571428573,-16.673948793089565,0.0,0.45289251607142855,0.0,0.0
-Drift,15.357142857142856,-18.13920384837251,0.0,0.451296885,0.0,0.0
diff --git a/tables/full/leaderboard_SQL.csv b/tables/full/leaderboard_SQL.csv
deleted file mode 100644
index e086150fde37995292a14568e0bea7a3732c4a97..0000000000000000000000000000000000000000
--- a/tables/full/leaderboard_SQL.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,91.42857142857143,47.28056105322771,0.0,0.8031324525807175,0.0,0.0
-TiRex,82.67857142857142,42.57610775202675,0.0,0.22657166035714288,0.01,0.0
-TimesFM-2.5,77.57142857142858,42.20062128325953,0.0,1.8920524236607146,0.1,0.0
-Toto-1.0,70.21428571428571,40.7460359139889,0.0,22.06562094568182,0.08,0.0
-Chronos-Bolt,64.42857142857143,38.892961600022936,0.0,0.24851168673039045,0.0,0.0
-Moirai-2.0,64.42857142857143,39.332013785815214,0.0,0.34801128166666667,0.28,0.0
-TabPFN-TS,62.96428571428573,39.58671179038912,0.0,88.93563502960615,0.0,2.0
-Sundial-Base,45.964285714285715,33.42287717226134,0.0,8.007535389309524,0.01,0.0
-Stat. Ensemble,45.53571428571429,20.161731427800046,0.0,148.58311610827104,0.0,11.0
-AutoARIMA,40.67857142857143,20.561948549632326,0.0,19.52332778642857,0.0,10.0
-AutoETS,33.67857142857143,-26.818526760288375,0.0,3.4683364387499998,0.0,3.0
-AutoTheta,27.142857142857142,5.457380397818312,0.0,3.250292683443853,0.0,0.0
-Seasonal Naive,20.178571428571423,0.0,0.0,0.455576268872549,0.0,0.0
-Naive,13.821428571428573,-45.398988807164976,0.0,0.45289251607142855,0.0,0.0
-Drift,9.285714285714286,-45.77585379444895,0.0,0.451296885,0.0,0.0
diff --git a/tables/full/leaderboard_WAPE.csv b/tables/full/leaderboard_WAPE.csv
deleted file mode 100644
index 790fe98cb7e23af6ac639609b331647605276690..0000000000000000000000000000000000000000
--- a/tables/full/leaderboard_WAPE.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,85.92857142857142,39.40980595628945,0.0,0.8031324525807175,0.0,0.0
-TimesFM-2.5,75.28571428571428,33.719263075740194,0.0,1.8920524236607146,0.1,0.0
-TiRex,75.25000000000001,33.56017122067458,0.0,0.22657166035714288,0.01,0.0
-Toto-1.0,67.64285714285717,31.488756179777678,0.0,22.06562094568182,0.08,0.0
-TabPFN-TS,64.32142857142857,33.36123166513091,0.0,88.93563502960615,0.0,2.0
-Moirai-2.0,62.14285714285715,30.651048841637785,0.0,0.34801128166666667,0.28,0.0
-Chronos-Bolt,61.142857142857146,29.770064235526473,0.0,0.24851168673039045,0.0,0.0
-Sundial-Base,51.24999999999999,27.263435775595426,0.0,8.007535389309524,0.01,0.0
-Stat. Ensemble,47.32142857142856,17.693885547849597,0.0,148.58311610827104,0.0,11.0
-AutoARIMA,34.96428571428571,13.271687847205381,0.0,19.52332778642857,0.0,10.0
-AutoETS,34.60714285714286,4.328689341465408,0.0,3.4683364387499998,0.0,3.0
-AutoTheta,32.0,13.794755020224814,0.0,3.250292683443853,0.0,0.0
-Naive,22.749999999999996,-6.11148881462471,0.0,0.45289251607142855,0.0,0.0
-Seasonal Naive,19.249999999999996,0.0,0.0,0.455576268872549,0.0,0.0
-Drift,16.142857142857146,-8.604851625817744,0.0,0.451296885,0.0,0.0
diff --git a/tables/full/leaderboard_WQL.csv b/tables/full/leaderboard_WQL.csv
deleted file mode 100644
index 95fd7dadac7b669317e1df1ca638bfc7eb9a28e0..0000000000000000000000000000000000000000
--- a/tables/full/leaderboard_WQL.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,89.14285714285714,51.51952213752647,0.0,0.8031324525807175,0.0,0.0
-TiRex,80.60714285714286,46.6655039781259,0.0,0.22657166035714288,0.01,0.0
-TimesFM-2.5,78.28571428571429,46.72558173490076,0.0,1.8920524236607146,0.1,0.0
-Toto-1.0,70.85714285714285,45.00088243993733,0.0,22.06562094568182,0.08,0.0
-TabPFN-TS,68.10714285714286,45.822378843833036,0.0,88.93563502960615,0.0,2.0
-Moirai-2.0,66.21428571428571,43.864523387242194,0.0,0.34801128166666667,0.28,0.0
-Chronos-Bolt,64.85714285714286,43.187343947848866,0.0,0.24851168673039045,0.0,0.0
-Sundial-Base,47.035714285714285,37.43731640370259,0.0,8.007535389309524,0.01,0.0
-Stat. Ensemble,44.17857142857143,21.795752415252334,0.0,148.58311610827104,0.0,11.0
-AutoARIMA,40.10714285714287,23.401617100945593,0.0,19.52332778642857,0.0,10.0
-AutoETS,31.392857142857146,-27.026777935471568,0.0,3.4683364387499998,0.0,3.0
-AutoTheta,26.714285714285708,7.846425960422055,0.0,3.250292683443853,0.0,0.0
-Seasonal Naive,19.464285714285708,0.0,0.0,0.455576268872549,0.0,0.0
-Naive,13.750000000000002,-39.121433468308894,0.0,0.45289251607142855,0.0,0.0
-Drift,9.285714285714288,-40.05851008470427,0.0,0.451296885,0.0,0.0
diff --git a/tables/full/pairwise_MASE.csv b/tables/full/pairwise_MASE.csv
deleted file mode 100644
index 70886f6ef01b27f227b1e22898d2d1917aa13f84..0000000000000000000000000000000000000000
--- a/tables/full/pairwise_MASE.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TiRex,0.72,0.63,0.81,0.078,0.052,0.108
-Chronos-2,TimesFM-2.5,0.71,0.62,0.79,0.076,0.048,0.103
-Chronos-2,Toto-1.0,0.74,0.65,0.83,0.101,0.073,0.133
-Chronos-2,Moirai-2.0,0.92,0.86,0.97,0.113,0.086,0.141
-Chronos-2,Chronos-Bolt,0.94,0.89,0.98,0.122,0.096,0.15
-Chronos-2,TabPFN-TS,0.85,0.77,0.92,0.108,0.08,0.14
-Chronos-2,Sundial-Base,0.91,0.85,0.96,0.143,0.113,0.172
-Chronos-2,Stat. Ensemble,0.86,0.79,0.93,0.235,0.19,0.277
-Chronos-2,AutoARIMA,0.95,0.9,0.99,0.273,0.23,0.315
-Chronos-2,AutoTheta,0.94,0.89,0.98,0.275,0.236,0.316
-Chronos-2,AutoETS,0.89,0.83,0.95,0.34,0.28,0.401
-Chronos-2,Seasonal Naive,0.98,0.95,1.0,0.355,0.318,0.393
-Chronos-2,Naive,0.98,0.95,1.0,0.447,0.388,0.505
-Chronos-2,Drift,0.94,0.89,0.98,0.454,0.392,0.513
-TiRex,Chronos-2,0.28,0.19,0.37,-0.085,-0.121,-0.055
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,TimesFM-2.5,0.485,0.385,0.585,-0.003,-0.019,0.014
-TiRex,Toto-1.0,0.615,0.52,0.71,0.025,0.003,0.046
-TiRex,Moirai-2.0,0.765,0.685,0.845,0.038,0.021,0.055
-TiRex,Chronos-Bolt,0.765,0.68,0.845,0.048,0.029,0.067
-TiRex,TabPFN-TS,0.69,0.6,0.78,0.033,-0.01,0.074
-TiRex,Sundial-Base,0.805,0.72,0.88,0.07,0.036,0.104
-TiRex,Stat. Ensemble,0.81,0.73,0.89,0.17,0.132,0.21
-TiRex,AutoARIMA,0.9,0.84,0.95,0.211,0.175,0.253
-TiRex,AutoTheta,0.94,0.89,0.98,0.214,0.18,0.249
-TiRex,AutoETS,0.84,0.77,0.91,0.284,0.225,0.345
-TiRex,Seasonal Naive,0.97,0.94,1.0,0.3,0.264,0.339
-TiRex,Naive,0.96,0.92,0.99,0.4,0.344,0.457
-TiRex,Drift,0.94,0.89,0.98,0.408,0.347,0.462
-TimesFM-2.5,Chronos-2,0.29,0.21,0.38,-0.082,-0.115,-0.05
-TimesFM-2.5,TiRex,0.515,0.415,0.615,0.003,-0.014,0.019
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,Toto-1.0,0.57,0.485,0.66,0.028,0.005,0.051
-TimesFM-2.5,Moirai-2.0,0.71,0.625,0.795,0.04,0.021,0.06
-TimesFM-2.5,Chronos-Bolt,0.71,0.625,0.79,0.05,0.029,0.071
-TimesFM-2.5,TabPFN-TS,0.67,0.58,0.77,0.035,-0.011,0.081
-TimesFM-2.5,Sundial-Base,0.805,0.73,0.88,0.072,0.04,0.105
-TimesFM-2.5,Stat. Ensemble,0.79,0.71,0.87,0.172,0.126,0.217
-TimesFM-2.5,AutoARIMA,0.87,0.8,0.93,0.214,0.175,0.257
-TimesFM-2.5,AutoTheta,0.9,0.83,0.95,0.216,0.177,0.255
-TimesFM-2.5,AutoETS,0.84,0.76,0.91,0.286,0.228,0.347
-TimesFM-2.5,Seasonal Naive,0.96,0.92,0.99,0.302,0.267,0.342
-TimesFM-2.5,Naive,0.96,0.92,0.99,0.402,0.341,0.458
-TimesFM-2.5,Drift,0.92,0.86,0.97,0.409,0.345,0.469
-Toto-1.0,Chronos-2,0.26,0.17,0.35,-0.113,-0.154,-0.079
-Toto-1.0,TiRex,0.385,0.29,0.48,-0.026,-0.048,-0.003
-Toto-1.0,TimesFM-2.5,0.43,0.34,0.515,-0.028,-0.054,-0.005
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,Moirai-2.0,0.58,0.49,0.67,0.013,-0.008,0.034
-Toto-1.0,Chronos-Bolt,0.56,0.46,0.645,0.023,-0.005,0.048
-Toto-1.0,TabPFN-TS,0.58,0.49,0.67,0.008,-0.043,0.055
-Toto-1.0,Sundial-Base,0.675,0.585,0.765,0.046,0.007,0.088
-Toto-1.0,Stat. Ensemble,0.73,0.64,0.81,0.149,0.102,0.193
-Toto-1.0,AutoARIMA,0.81,0.73,0.88,0.191,0.149,0.237
-Toto-1.0,AutoTheta,0.82,0.74,0.89,0.194,0.151,0.235
-Toto-1.0,AutoETS,0.79,0.71,0.86,0.266,0.203,0.326
-Toto-1.0,Seasonal Naive,0.91,0.85,0.96,0.282,0.241,0.327
-Toto-1.0,Naive,0.94,0.88,0.98,0.385,0.32,0.442
-Toto-1.0,Drift,0.89,0.82,0.94,0.392,0.328,0.451
-Moirai-2.0,Chronos-2,0.08,0.03,0.14,-0.128,-0.165,-0.094
-Moirai-2.0,TiRex,0.235,0.155,0.315,-0.039,-0.059,-0.021
-Moirai-2.0,TimesFM-2.5,0.29,0.205,0.375,-0.042,-0.064,-0.022
-Moirai-2.0,Toto-1.0,0.42,0.33,0.51,-0.013,-0.036,0.008
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Chronos-Bolt,0.55,0.465,0.64,0.01,-0.012,0.032
-Moirai-2.0,TabPFN-TS,0.52,0.43,0.62,-0.005,-0.054,0.038
-Moirai-2.0,Sundial-Base,0.685,0.595,0.775,0.033,-0.004,0.067
-Moirai-2.0,Stat. Ensemble,0.73,0.64,0.82,0.138,0.09,0.18
-Moirai-2.0,AutoARIMA,0.81,0.73,0.88,0.18,0.138,0.228
-Moirai-2.0,AutoTheta,0.85,0.77,0.91,0.183,0.144,0.223
-Moirai-2.0,AutoETS,0.76,0.67,0.83,0.256,0.192,0.32
-Moirai-2.0,Seasonal Naive,0.87,0.8,0.93,0.273,0.236,0.314
-Moirai-2.0,Naive,0.91,0.85,0.96,0.377,0.316,0.433
-Moirai-2.0,Drift,0.86,0.79,0.92,0.384,0.32,0.441
-Chronos-Bolt,Chronos-2,0.06,0.02,0.11,-0.139,-0.177,-0.106
-Chronos-Bolt,TiRex,0.235,0.155,0.32,-0.05,-0.072,-0.03
-Chronos-Bolt,TimesFM-2.5,0.29,0.21,0.375,-0.053,-0.077,-0.03
-Chronos-Bolt,Toto-1.0,0.44,0.355,0.54,-0.024,-0.051,0.005
-Chronos-Bolt,Moirai-2.0,0.45,0.36,0.535,-0.01,-0.033,0.012
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,TabPFN-TS,0.52,0.42,0.61,-0.016,-0.062,0.025
-Chronos-Bolt,Sundial-Base,0.605,0.51,0.695,0.024,-0.014,0.057
-Chronos-Bolt,Stat. Ensemble,0.7,0.61,0.79,0.129,0.084,0.174
-Chronos-Bolt,AutoARIMA,0.84,0.76,0.9,0.172,0.132,0.215
-Chronos-Bolt,AutoTheta,0.86,0.79,0.92,0.174,0.137,0.212
-Chronos-Bolt,AutoETS,0.77,0.68,0.85,0.248,0.184,0.315
-Chronos-Bolt,Seasonal Naive,0.9,0.84,0.95,0.265,0.226,0.304
-Chronos-Bolt,Naive,0.94,0.89,0.98,0.37,0.315,0.423
-Chronos-Bolt,Drift,0.9,0.83,0.95,0.378,0.319,0.435
-TabPFN-TS,Chronos-2,0.15,0.08,0.23,-0.122,-0.163,-0.087
-TabPFN-TS,TiRex,0.31,0.22,0.4,-0.034,-0.08,0.01
-TabPFN-TS,TimesFM-2.5,0.33,0.23,0.42,-0.036,-0.088,0.011
-TabPFN-TS,Toto-1.0,0.42,0.33,0.51,-0.008,-0.058,0.041
-TabPFN-TS,Moirai-2.0,0.48,0.38,0.57,0.005,-0.039,0.051
-TabPFN-TS,Chronos-Bolt,0.48,0.39,0.58,0.015,-0.026,0.058
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Sundial-Base,0.53,0.43,0.63,0.039,-0.001,0.078
-TabPFN-TS,Stat. Ensemble,0.645,0.545,0.735,0.142,0.089,0.19
-TabPFN-TS,AutoARIMA,0.75,0.67,0.83,0.185,0.133,0.241
-TabPFN-TS,AutoTheta,0.75,0.66,0.83,0.187,0.14,0.235
-TabPFN-TS,AutoETS,0.72,0.63,0.81,0.26,0.183,0.332
-TabPFN-TS,Seasonal Naive,0.91,0.855,0.96,0.276,0.231,0.321
-TabPFN-TS,Naive,0.87,0.8,0.93,0.38,0.318,0.442
-TabPFN-TS,Drift,0.87,0.8,0.94,0.388,0.321,0.45
-Sundial-Base,Chronos-2,0.09,0.04,0.15,-0.167,-0.207,-0.128
-Sundial-Base,TiRex,0.195,0.12,0.28,-0.075,-0.115,-0.037
-Sundial-Base,TimesFM-2.5,0.195,0.12,0.27,-0.078,-0.117,-0.042
-Sundial-Base,Toto-1.0,0.325,0.235,0.415,-0.048,-0.097,-0.007
-Sundial-Base,Moirai-2.0,0.315,0.225,0.405,-0.035,-0.072,0.004
-Sundial-Base,Chronos-Bolt,0.395,0.305,0.49,-0.024,-0.061,0.014
-Sundial-Base,TabPFN-TS,0.47,0.37,0.57,-0.04,-0.085,0.001
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Stat. Ensemble,0.66,0.56,0.76,0.108,0.051,0.16
-Sundial-Base,AutoARIMA,0.76,0.67,0.84,0.152,0.098,0.203
-Sundial-Base,AutoTheta,0.77,0.68,0.85,0.155,0.109,0.199
-Sundial-Base,AutoETS,0.71,0.61,0.8,0.23,0.152,0.3
-Sundial-Base,Seasonal Naive,0.88,0.81,0.94,0.247,0.206,0.288
-Sundial-Base,Naive,0.88,0.8,0.94,0.355,0.289,0.417
-Sundial-Base,Drift,0.83,0.75,0.9,0.363,0.291,0.428
-Stat. Ensemble,Chronos-2,0.14,0.07,0.21,-0.308,-0.383,-0.234
-Stat. Ensemble,TiRex,0.19,0.11,0.27,-0.205,-0.265,-0.152
-Stat. Ensemble,TimesFM-2.5,0.21,0.13,0.29,-0.208,-0.277,-0.144
-Stat. Ensemble,Toto-1.0,0.27,0.19,0.36,-0.175,-0.239,-0.113
-Stat. Ensemble,Moirai-2.0,0.27,0.18,0.36,-0.16,-0.219,-0.099
-Stat. Ensemble,Chronos-Bolt,0.3,0.21,0.39,-0.148,-0.211,-0.091
-Stat. Ensemble,TabPFN-TS,0.355,0.265,0.455,-0.166,-0.235,-0.097
-Stat. Ensemble,Sundial-Base,0.34,0.24,0.44,-0.121,-0.19,-0.054
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoARIMA,0.64,0.545,0.73,0.05,0.02,0.09
-Stat. Ensemble,AutoTheta,0.75,0.67,0.83,0.052,0.025,0.082
-Stat. Ensemble,AutoETS,0.795,0.72,0.87,0.137,0.081,0.194
-Stat. Ensemble,Seasonal Naive,0.795,0.725,0.865,0.157,0.116,0.203
-Stat. Ensemble,Naive,0.85,0.78,0.92,0.277,0.218,0.346
-Stat. Ensemble,Drift,0.89,0.82,0.95,0.286,0.225,0.35
-AutoARIMA,Chronos-2,0.05,0.01,0.1,-0.376,-0.459,-0.298
-AutoARIMA,TiRex,0.1,0.05,0.16,-0.268,-0.339,-0.212
-AutoARIMA,TimesFM-2.5,0.13,0.07,0.2,-0.272,-0.346,-0.212
-AutoARIMA,Toto-1.0,0.19,0.12,0.27,-0.236,-0.311,-0.175
-AutoARIMA,Moirai-2.0,0.19,0.12,0.27,-0.22,-0.295,-0.16
-AutoARIMA,Chronos-Bolt,0.16,0.1,0.24,-0.208,-0.274,-0.152
-AutoARIMA,TabPFN-TS,0.25,0.17,0.33,-0.227,-0.317,-0.153
-AutoARIMA,Sundial-Base,0.24,0.16,0.33,-0.179,-0.254,-0.108
-AutoARIMA,Stat. Ensemble,0.36,0.27,0.455,-0.052,-0.099,-0.02
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoTheta,0.55,0.45,0.64,0.003,-0.039,0.039
-AutoARIMA,AutoETS,0.595,0.5,0.69,0.092,0.024,0.162
-AutoARIMA,Seasonal Naive,0.75,0.665,0.83,0.112,0.068,0.161
-AutoARIMA,Naive,0.77,0.69,0.85,0.239,0.169,0.312
-AutoARIMA,Drift,0.8,0.72,0.87,0.249,0.174,0.324
-AutoTheta,Chronos-2,0.06,0.02,0.11,-0.38,-0.462,-0.308
-AutoTheta,TiRex,0.06,0.02,0.11,-0.272,-0.332,-0.22
-AutoTheta,TimesFM-2.5,0.1,0.05,0.17,-0.275,-0.343,-0.215
-AutoTheta,Toto-1.0,0.18,0.11,0.26,-0.24,-0.307,-0.178
-AutoTheta,Moirai-2.0,0.15,0.09,0.23,-0.224,-0.287,-0.168
-AutoTheta,Chronos-Bolt,0.14,0.08,0.21,-0.211,-0.269,-0.159
-AutoTheta,TabPFN-TS,0.25,0.17,0.34,-0.23,-0.307,-0.163
-AutoTheta,Sundial-Base,0.23,0.15,0.32,-0.183,-0.249,-0.122
-AutoTheta,Stat. Ensemble,0.25,0.17,0.33,-0.055,-0.09,-0.025
-AutoTheta,AutoARIMA,0.45,0.36,0.55,-0.003,-0.041,0.037
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,AutoETS,0.59,0.5,0.69,0.089,0.026,0.155
-AutoTheta,Seasonal Naive,0.78,0.7,0.86,0.11,0.069,0.149
-AutoTheta,Naive,0.83,0.75,0.9,0.237,0.181,0.301
-AutoTheta,Drift,0.82,0.74,0.9,0.247,0.189,0.31
-AutoETS,Chronos-2,0.11,0.05,0.17,-0.515,-0.671,-0.39
-AutoETS,TiRex,0.16,0.09,0.23,-0.397,-0.526,-0.291
-AutoETS,TimesFM-2.5,0.16,0.09,0.24,-0.4,-0.531,-0.295
-AutoETS,Toto-1.0,0.21,0.14,0.29,-0.362,-0.484,-0.254
-AutoETS,Moirai-2.0,0.24,0.17,0.33,-0.344,-0.471,-0.237
-AutoETS,Chronos-Bolt,0.23,0.15,0.32,-0.33,-0.459,-0.225
-AutoETS,TabPFN-TS,0.28,0.19,0.37,-0.351,-0.498,-0.225
-AutoETS,Sundial-Base,0.29,0.2,0.39,-0.299,-0.428,-0.179
-AutoETS,Stat. Ensemble,0.205,0.13,0.28,-0.159,-0.241,-0.088
-AutoETS,AutoARIMA,0.405,0.31,0.5,-0.101,-0.194,-0.024
-AutoETS,AutoTheta,0.41,0.31,0.5,-0.098,-0.183,-0.027
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Seasonal Naive,0.635,0.54,0.72,0.023,-0.071,0.103
-AutoETS,Naive,0.64,0.55,0.73,0.162,0.086,0.251
-AutoETS,Drift,0.68,0.59,0.77,0.173,0.098,0.258
-Seasonal Naive,Chronos-2,0.02,0.0,0.05,-0.55,-0.648,-0.466
-Seasonal Naive,TiRex,0.03,0.0,0.06,-0.429,-0.512,-0.359
-Seasonal Naive,TimesFM-2.5,0.04,0.01,0.08,-0.433,-0.52,-0.365
-Seasonal Naive,Toto-1.0,0.09,0.04,0.15,-0.393,-0.485,-0.318
-Seasonal Naive,Moirai-2.0,0.13,0.07,0.2,-0.375,-0.458,-0.308
-Seasonal Naive,Chronos-Bolt,0.1,0.05,0.16,-0.361,-0.437,-0.293
-Seasonal Naive,TabPFN-TS,0.09,0.04,0.145,-0.382,-0.472,-0.301
-Seasonal Naive,Sundial-Base,0.12,0.06,0.19,-0.329,-0.405,-0.259
-Seasonal Naive,Stat. Ensemble,0.205,0.135,0.275,-0.186,-0.255,-0.131
-Seasonal Naive,AutoARIMA,0.25,0.17,0.335,-0.127,-0.191,-0.073
-Seasonal Naive,AutoTheta,0.22,0.14,0.3,-0.123,-0.176,-0.074
-Seasonal Naive,AutoETS,0.365,0.28,0.46,-0.023,-0.115,0.067
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Naive,0.575,0.48,0.665,0.143,0.065,0.223
-Seasonal Naive,Drift,0.7,0.6,0.79,0.154,0.067,0.238
-Naive,Chronos-2,0.02,0.0,0.05,-0.809,-1.021,-0.634
-Naive,TiRex,0.04,0.01,0.08,-0.667,-0.842,-0.525
-Naive,TimesFM-2.5,0.04,0.01,0.08,-0.671,-0.844,-0.518
-Naive,Toto-1.0,0.06,0.02,0.12,-0.625,-0.792,-0.471
-Naive,Moirai-2.0,0.09,0.04,0.15,-0.604,-0.764,-0.463
-Naive,Chronos-Bolt,0.06,0.02,0.11,-0.588,-0.733,-0.46
-Naive,TabPFN-TS,0.13,0.07,0.2,-0.613,-0.791,-0.467
-Naive,Sundial-Base,0.12,0.06,0.2,-0.55,-0.716,-0.407
-Naive,Stat. Ensemble,0.15,0.08,0.22,-0.383,-0.529,-0.279
-Naive,AutoARIMA,0.23,0.15,0.31,-0.314,-0.454,-0.204
-Naive,AutoTheta,0.17,0.1,0.25,-0.311,-0.432,-0.222
-Naive,AutoETS,0.36,0.27,0.45,-0.194,-0.336,-0.094
-Naive,Seasonal Naive,0.425,0.335,0.52,-0.167,-0.288,-0.069
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,0.81,0.73,0.89,0.012,-0.012,0.035
-Drift,Chronos-2,0.06,0.02,0.11,-0.832,-1.053,-0.644
-Drift,TiRex,0.06,0.02,0.11,-0.688,-0.859,-0.531
-Drift,TimesFM-2.5,0.08,0.03,0.14,-0.692,-0.883,-0.526
-Drift,Toto-1.0,0.11,0.06,0.18,-0.646,-0.821,-0.487
-Drift,Moirai-2.0,0.14,0.08,0.21,-0.624,-0.789,-0.47
-Drift,Chronos-Bolt,0.1,0.05,0.17,-0.608,-0.77,-0.468
-Drift,TabPFN-TS,0.13,0.06,0.2,-0.633,-0.819,-0.473
-Drift,Sundial-Base,0.17,0.1,0.25,-0.57,-0.747,-0.411
-Drift,Stat. Ensemble,0.11,0.05,0.18,-0.401,-0.539,-0.291
-Drift,AutoARIMA,0.2,0.13,0.28,-0.331,-0.479,-0.21
-Drift,AutoTheta,0.18,0.1,0.26,-0.327,-0.45,-0.233
-Drift,AutoETS,0.32,0.23,0.41,-0.209,-0.347,-0.109
-Drift,Seasonal Naive,0.3,0.21,0.4,-0.181,-0.312,-0.071
-Drift,Naive,0.19,0.11,0.27,-0.013,-0.036,0.012
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/full/pairwise_SQL.csv b/tables/full/pairwise_SQL.csv
deleted file mode 100644
index 6730d66be75dd568f6296bcbc07fc32aafe4add8..0000000000000000000000000000000000000000
--- a/tables/full/pairwise_SQL.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TiRex,0.72,0.63,0.81,0.082,0.056,0.111
-Chronos-2,TimesFM-2.5,0.76,0.67,0.84,0.088,0.059,0.115
-Chronos-2,Toto-1.0,0.78,0.69,0.86,0.11,0.081,0.141
-Chronos-2,Moirai-2.0,0.93,0.88,0.97,0.131,0.103,0.16
-Chronos-2,Chronos-Bolt,0.94,0.89,0.98,0.137,0.11,0.168
-Chronos-2,TabPFN-TS,0.88,0.81,0.94,0.127,0.097,0.159
-Chronos-2,Sundial-Base,0.96,0.92,0.99,0.208,0.18,0.236
-Chronos-2,Stat. Ensemble,0.95,0.9,0.99,0.34,0.288,0.386
-Chronos-2,AutoARIMA,0.96,0.92,0.99,0.336,0.29,0.38
-Chronos-2,AutoETS,0.94,0.89,0.98,0.562,0.466,0.655
-Chronos-2,AutoTheta,0.99,0.97,1.0,0.442,0.387,0.495
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.473,0.427,0.521
-Chronos-2,Naive,1.0,1.0,1.0,0.637,0.583,0.684
-Chronos-2,Drift,0.99,0.97,1.0,0.638,0.581,0.687
-TiRex,Chronos-2,0.28,0.19,0.37,-0.089,-0.125,-0.06
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,TimesFM-2.5,0.565,0.465,0.66,0.006,-0.01,0.022
-TiRex,Toto-1.0,0.685,0.595,0.775,0.031,0.009,0.052
-TiRex,Moirai-2.0,0.825,0.75,0.895,0.053,0.036,0.072
-TiRex,Chronos-Bolt,0.835,0.76,0.905,0.06,0.042,0.08
-TiRex,TabPFN-TS,0.72,0.63,0.81,0.049,0.005,0.092
-TiRex,Sundial-Base,0.905,0.85,0.96,0.137,0.107,0.169
-TiRex,Stat. Ensemble,0.92,0.86,0.97,0.281,0.232,0.328
-TiRex,AutoARIMA,0.95,0.9,0.99,0.277,0.237,0.32
-TiRex,AutoETS,0.92,0.86,0.97,0.524,0.417,0.626
-TiRex,AutoTheta,0.99,0.97,1.0,0.393,0.339,0.445
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.426,0.379,0.479
-TiRex,Naive,0.99,0.97,1.0,0.605,0.547,0.653
-TiRex,Drift,0.99,0.97,1.0,0.606,0.545,0.655
-TimesFM-2.5,Chronos-2,0.24,0.16,0.33,-0.096,-0.13,-0.062
-TimesFM-2.5,TiRex,0.435,0.34,0.535,-0.007,-0.023,0.01
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,Toto-1.0,0.56,0.47,0.66,0.025,0.001,0.048
-TimesFM-2.5,Moirai-2.0,0.74,0.66,0.82,0.047,0.026,0.069
-TimesFM-2.5,Chronos-Bolt,0.72,0.635,0.8,0.054,0.033,0.075
-TimesFM-2.5,TabPFN-TS,0.7,0.61,0.79,0.043,-0.005,0.087
-TimesFM-2.5,Sundial-Base,0.925,0.875,0.97,0.132,0.103,0.161
-TimesFM-2.5,Stat. Ensemble,0.84,0.77,0.91,0.276,0.222,0.327
-TimesFM-2.5,AutoARIMA,0.92,0.86,0.97,0.272,0.232,0.319
-TimesFM-2.5,AutoETS,0.87,0.8,0.93,0.521,0.413,0.624
-TimesFM-2.5,AutoTheta,0.96,0.91,0.99,0.389,0.331,0.446
-TimesFM-2.5,Seasonal Naive,0.99,0.97,1.0,0.422,0.375,0.474
-TimesFM-2.5,Naive,0.99,0.97,1.0,0.602,0.543,0.65
-TimesFM-2.5,Drift,0.97,0.93,1.0,0.604,0.542,0.653
-Toto-1.0,Chronos-2,0.22,0.14,0.31,-0.124,-0.164,-0.089
-Toto-1.0,TiRex,0.315,0.225,0.405,-0.032,-0.054,-0.01
-Toto-1.0,TimesFM-2.5,0.44,0.34,0.53,-0.025,-0.051,-0.001
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,Moirai-2.0,0.6,0.51,0.685,0.023,0.002,0.045
-Toto-1.0,Chronos-Bolt,0.57,0.475,0.655,0.03,0.001,0.055
-Toto-1.0,TabPFN-TS,0.57,0.48,0.66,0.019,-0.033,0.07
-Toto-1.0,Sundial-Base,0.825,0.745,0.895,0.11,0.074,0.147
-Toto-1.0,Stat. Ensemble,0.8,0.72,0.87,0.258,0.2,0.309
-Toto-1.0,AutoARIMA,0.86,0.79,0.92,0.254,0.207,0.305
-Toto-1.0,AutoETS,0.83,0.75,0.9,0.51,0.402,0.614
-Toto-1.0,AutoTheta,0.9,0.83,0.95,0.373,0.31,0.431
-Toto-1.0,Seasonal Naive,0.96,0.92,0.99,0.407,0.354,0.465
-Toto-1.0,Naive,0.98,0.95,1.0,0.592,0.532,0.642
-Toto-1.0,Drift,0.96,0.92,0.99,0.594,0.53,0.645
-Moirai-2.0,Chronos-2,0.07,0.03,0.12,-0.151,-0.19,-0.115
-Moirai-2.0,TiRex,0.175,0.105,0.25,-0.056,-0.077,-0.038
-Moirai-2.0,TimesFM-2.5,0.26,0.18,0.34,-0.05,-0.074,-0.027
-Moirai-2.0,Toto-1.0,0.4,0.315,0.49,-0.024,-0.047,-0.002
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Chronos-Bolt,0.54,0.455,0.625,0.007,-0.016,0.029
-Moirai-2.0,TabPFN-TS,0.53,0.44,0.63,-0.004,-0.055,0.042
-Moirai-2.0,Sundial-Base,0.855,0.78,0.92,0.089,0.054,0.123
-Moirai-2.0,Stat. Ensemble,0.79,0.71,0.86,0.24,0.187,0.292
-Moirai-2.0,AutoARIMA,0.87,0.8,0.93,0.236,0.189,0.286
-Moirai-2.0,AutoETS,0.82,0.74,0.89,0.5,0.382,0.609
-Moirai-2.0,AutoTheta,0.88,0.81,0.93,0.358,0.299,0.415
-Moirai-2.0,Seasonal Naive,0.94,0.89,0.98,0.393,0.343,0.448
-Moirai-2.0,Naive,0.95,0.9,0.99,0.583,0.523,0.634
-Moirai-2.0,Drift,0.94,0.88,0.98,0.584,0.519,0.636
-Chronos-Bolt,Chronos-2,0.06,0.02,0.11,-0.159,-0.201,-0.123
-Chronos-Bolt,TiRex,0.165,0.095,0.24,-0.064,-0.088,-0.044
-Chronos-Bolt,TimesFM-2.5,0.28,0.2,0.365,-0.057,-0.081,-0.034
-Chronos-Bolt,Toto-1.0,0.43,0.345,0.525,-0.031,-0.059,-0.001
-Chronos-Bolt,Moirai-2.0,0.46,0.375,0.545,-0.007,-0.03,0.016
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,TabPFN-TS,0.53,0.43,0.63,-0.011,-0.059,0.031
-Chronos-Bolt,Sundial-Base,0.815,0.74,0.89,0.082,0.045,0.116
-Chronos-Bolt,Stat. Ensemble,0.78,0.69,0.85,0.235,0.184,0.284
-Chronos-Bolt,AutoARIMA,0.87,0.8,0.92,0.231,0.188,0.277
-Chronos-Bolt,AutoETS,0.8,0.72,0.87,0.496,0.379,0.605
-Chronos-Bolt,AutoTheta,0.92,0.86,0.97,0.354,0.3,0.409
-Chronos-Bolt,Seasonal Naive,0.96,0.92,0.99,0.389,0.342,0.441
-Chronos-Bolt,Naive,0.98,0.95,1.0,0.58,0.524,0.628
-Chronos-Bolt,Drift,0.97,0.93,1.0,0.581,0.52,0.63
-TabPFN-TS,Chronos-2,0.12,0.06,0.19,-0.146,-0.189,-0.108
-TabPFN-TS,TiRex,0.28,0.19,0.37,-0.052,-0.101,-0.005
-TabPFN-TS,TimesFM-2.5,0.3,0.21,0.39,-0.045,-0.095,0.005
-TabPFN-TS,Toto-1.0,0.43,0.34,0.52,-0.02,-0.076,0.032
-TabPFN-TS,Moirai-2.0,0.47,0.37,0.56,0.004,-0.044,0.052
-TabPFN-TS,Chronos-Bolt,0.47,0.37,0.57,0.011,-0.032,0.055
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Sundial-Base,0.72,0.63,0.8,0.093,0.05,0.135
-TabPFN-TS,Stat. Ensemble,0.735,0.645,0.815,0.243,0.19,0.297
-TabPFN-TS,AutoARIMA,0.81,0.73,0.88,0.239,0.189,0.292
-TabPFN-TS,AutoETS,0.75,0.66,0.83,0.503,0.387,0.611
-TabPFN-TS,AutoTheta,0.89,0.82,0.95,0.361,0.302,0.422
-TabPFN-TS,Seasonal Naive,0.96,0.92,0.99,0.396,0.346,0.447
-TabPFN-TS,Naive,0.96,0.92,0.99,0.584,0.526,0.636
-TabPFN-TS,Drift,0.92,0.86,0.97,0.586,0.521,0.639
-Sundial-Base,Chronos-2,0.04,0.01,0.08,-0.263,-0.309,-0.219
-Sundial-Base,TiRex,0.095,0.04,0.15,-0.159,-0.203,-0.119
-Sundial-Base,TimesFM-2.5,0.075,0.03,0.125,-0.152,-0.191,-0.115
-Sundial-Base,Toto-1.0,0.175,0.105,0.255,-0.124,-0.172,-0.079
-Sundial-Base,Moirai-2.0,0.145,0.08,0.22,-0.097,-0.14,-0.057
-Sundial-Base,Chronos-Bolt,0.185,0.11,0.26,-0.09,-0.132,-0.047
-Sundial-Base,TabPFN-TS,0.28,0.2,0.37,-0.102,-0.155,-0.053
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Stat. Ensemble,0.64,0.55,0.73,0.166,0.096,0.23
-Sundial-Base,AutoARIMA,0.71,0.61,0.79,0.162,0.102,0.22
-Sundial-Base,AutoETS,0.7,0.61,0.78,0.453,0.323,0.576
-Sundial-Base,AutoTheta,0.74,0.65,0.82,0.296,0.226,0.364
-Sundial-Base,Seasonal Naive,0.91,0.85,0.96,0.334,0.281,0.392
-Sundial-Base,Naive,0.9,0.84,0.96,0.542,0.473,0.598
-Sundial-Base,Drift,0.84,0.76,0.91,0.543,0.47,0.602
-Stat. Ensemble,Chronos-2,0.05,0.01,0.1,-0.514,-0.63,-0.404
-Stat. Ensemble,TiRex,0.08,0.03,0.14,-0.39,-0.488,-0.302
-Stat. Ensemble,TimesFM-2.5,0.16,0.09,0.23,-0.381,-0.485,-0.285
-Stat. Ensemble,Toto-1.0,0.2,0.13,0.28,-0.347,-0.448,-0.25
-Stat. Ensemble,Moirai-2.0,0.21,0.14,0.29,-0.316,-0.412,-0.23
-Stat. Ensemble,Chronos-Bolt,0.22,0.15,0.31,-0.307,-0.396,-0.226
-Stat. Ensemble,TabPFN-TS,0.265,0.185,0.355,-0.322,-0.423,-0.234
-Stat. Ensemble,Sundial-Base,0.36,0.27,0.45,-0.199,-0.298,-0.107
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoARIMA,0.51,0.42,0.605,-0.005,-0.049,0.041
-Stat. Ensemble,AutoETS,0.765,0.68,0.845,0.365,0.22,0.501
-Stat. Ensemble,AutoTheta,0.88,0.82,0.94,0.156,0.108,0.208
-Stat. Ensemble,Seasonal Naive,0.795,0.725,0.87,0.202,0.148,0.257
-Stat. Ensemble,Naive,0.93,0.88,0.98,0.451,0.395,0.503
-Stat. Ensemble,Drift,0.95,0.9,0.99,0.452,0.394,0.506
-AutoARIMA,Chronos-2,0.04,0.01,0.08,-0.507,-0.612,-0.409
-AutoARIMA,TiRex,0.05,0.01,0.1,-0.383,-0.47,-0.311
-AutoARIMA,TimesFM-2.5,0.08,0.03,0.14,-0.374,-0.468,-0.301
-AutoARIMA,Toto-1.0,0.14,0.08,0.21,-0.341,-0.439,-0.261
-AutoARIMA,Moirai-2.0,0.13,0.07,0.2,-0.309,-0.401,-0.233
-AutoARIMA,Chronos-Bolt,0.13,0.08,0.2,-0.3,-0.383,-0.232
-AutoARIMA,TabPFN-TS,0.19,0.12,0.27,-0.315,-0.412,-0.233
-AutoARIMA,Sundial-Base,0.29,0.21,0.39,-0.193,-0.282,-0.114
-AutoARIMA,Stat. Ensemble,0.49,0.395,0.58,0.005,-0.043,0.047
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoETS,0.695,0.615,0.785,0.359,0.211,0.496
-AutoARIMA,AutoTheta,0.77,0.69,0.85,0.16,0.099,0.216
-AutoARIMA,Seasonal Naive,0.88,0.82,0.935,0.206,0.154,0.263
-AutoARIMA,Naive,0.92,0.86,0.97,0.454,0.388,0.512
-AutoARIMA,Drift,0.89,0.82,0.95,0.455,0.384,0.516
-AutoETS,Chronos-2,0.06,0.02,0.11,-1.285,-1.897,-0.873
-AutoETS,TiRex,0.08,0.03,0.14,-1.102,-1.673,-0.714
-AutoETS,TimesFM-2.5,0.13,0.07,0.2,-1.087,-1.662,-0.703
-AutoETS,Toto-1.0,0.17,0.1,0.25,-1.041,-1.59,-0.672
-AutoETS,Moirai-2.0,0.18,0.11,0.26,-0.999,-1.559,-0.619
-AutoETS,Chronos-Bolt,0.2,0.13,0.28,-0.983,-1.531,-0.609
-AutoETS,TabPFN-TS,0.25,0.17,0.34,-1.011,-1.572,-0.632
-AutoETS,Sundial-Base,0.3,0.22,0.39,-0.828,-1.359,-0.478
-AutoETS,Stat. Ensemble,0.235,0.155,0.32,-0.575,-1.003,-0.282
-AutoETS,AutoARIMA,0.305,0.215,0.385,-0.56,-0.983,-0.268
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,AutoTheta,0.59,0.49,0.69,-0.345,-0.709,-0.081
-AutoETS,Seasonal Naive,0.635,0.545,0.725,-0.268,-0.644,-0.013
-AutoETS,Naive,0.77,0.69,0.85,0.104,-0.173,0.297
-AutoETS,Drift,0.81,0.73,0.88,0.103,-0.161,0.297
-AutoTheta,Chronos-2,0.01,0.0,0.03,-0.793,-0.98,-0.63
-AutoTheta,TiRex,0.01,0.0,0.03,-0.646,-0.803,-0.513
-AutoTheta,TimesFM-2.5,0.04,0.01,0.09,-0.636,-0.805,-0.495
-AutoTheta,Toto-1.0,0.1,0.05,0.17,-0.596,-0.759,-0.449
-AutoTheta,Moirai-2.0,0.12,0.07,0.19,-0.558,-0.711,-0.427
-AutoTheta,Chronos-Bolt,0.08,0.03,0.14,-0.547,-0.691,-0.429
-AutoTheta,TabPFN-TS,0.11,0.05,0.18,-0.565,-0.731,-0.433
-AutoTheta,Sundial-Base,0.26,0.18,0.35,-0.42,-0.572,-0.292
-AutoTheta,Stat. Ensemble,0.12,0.06,0.18,-0.184,-0.263,-0.121
-AutoTheta,AutoARIMA,0.23,0.15,0.31,-0.19,-0.276,-0.11
-AutoTheta,AutoETS,0.41,0.31,0.51,0.257,0.075,0.415
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Seasonal Naive,0.68,0.58,0.77,0.055,-0.038,0.135
-AutoTheta,Naive,0.83,0.75,0.89,0.35,0.293,0.403
-AutoTheta,Drift,0.8,0.71,0.87,0.351,0.288,0.408
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-0.897,-1.087,-0.745
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.741,-0.919,-0.611
-Seasonal Naive,TimesFM-2.5,0.01,0.0,0.03,-0.73,-0.902,-0.6
-Seasonal Naive,Toto-1.0,0.04,0.01,0.08,-0.688,-0.867,-0.548
-Seasonal Naive,Moirai-2.0,0.06,0.02,0.11,-0.648,-0.813,-0.522
-Seasonal Naive,Chronos-Bolt,0.04,0.01,0.08,-0.636,-0.788,-0.52
-Seasonal Naive,TabPFN-TS,0.04,0.01,0.08,-0.655,-0.809,-0.529
-Seasonal Naive,Sundial-Base,0.09,0.04,0.15,-0.502,-0.645,-0.39
-Seasonal Naive,Stat. Ensemble,0.205,0.13,0.275,-0.253,-0.347,-0.174
-Seasonal Naive,AutoARIMA,0.12,0.065,0.18,-0.259,-0.356,-0.182
-Seasonal Naive,AutoETS,0.365,0.275,0.455,0.211,0.013,0.392
-Seasonal Naive,AutoTheta,0.32,0.23,0.42,-0.058,-0.156,0.037
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Naive,0.715,0.64,0.785,0.312,0.229,0.386
-Seasonal Naive,Drift,0.82,0.74,0.89,0.314,0.222,0.396
-Naive,Chronos-2,0.0,0.0,0.0,-1.758,-2.16,-1.399
-Naive,TiRex,0.01,0.0,0.03,-1.532,-1.88,-1.209
-Naive,TimesFM-2.5,0.01,0.0,0.03,-1.516,-1.859,-1.189
-Naive,Toto-1.0,0.02,0.0,0.05,-1.454,-1.793,-1.135
-Naive,Moirai-2.0,0.05,0.01,0.1,-1.397,-1.731,-1.095
-Naive,Chronos-Bolt,0.02,0.0,0.05,-1.379,-1.689,-1.099
-Naive,TabPFN-TS,0.04,0.01,0.08,-1.407,-1.747,-1.111
-Naive,Sundial-Base,0.1,0.04,0.16,-1.184,-1.49,-0.898
-Naive,Stat. Ensemble,0.07,0.02,0.12,-0.821,-1.014,-0.653
-Naive,AutoARIMA,0.08,0.03,0.14,-0.83,-1.05,-0.635
-Naive,AutoETS,0.23,0.15,0.31,-0.116,-0.422,0.148
-Naive,AutoTheta,0.17,0.11,0.25,-0.538,-0.676,-0.414
-Naive,Seasonal Naive,0.285,0.215,0.36,-0.454,-0.628,-0.298
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,0.85,0.78,0.92,0.003,-0.02,0.022
-Drift,Chronos-2,0.01,0.0,0.03,-1.765,-2.19,-1.384
-Drift,TiRex,0.01,0.0,0.03,-1.539,-1.898,-1.199
-Drift,TimesFM-2.5,0.03,0.0,0.07,-1.522,-1.883,-1.184
-Drift,Toto-1.0,0.04,0.01,0.08,-1.46,-1.816,-1.126
-Drift,Moirai-2.0,0.06,0.02,0.12,-1.403,-1.749,-1.079
-Drift,Chronos-Bolt,0.03,0.0,0.07,-1.386,-1.705,-1.084
-Drift,TabPFN-TS,0.08,0.03,0.14,-1.413,-1.773,-1.088
-Drift,Sundial-Base,0.16,0.09,0.24,-1.19,-1.513,-0.886
-Drift,Stat. Ensemble,0.05,0.01,0.1,-0.826,-1.023,-0.65
-Drift,AutoARIMA,0.11,0.05,0.18,-0.835,-1.064,-0.623
-Drift,AutoETS,0.19,0.12,0.27,-0.115,-0.423,0.139
-Drift,AutoTheta,0.2,0.13,0.29,-0.542,-0.69,-0.404
-Drift,Seasonal Naive,0.18,0.11,0.26,-0.458,-0.656,-0.285
-Drift,Naive,0.15,0.08,0.22,-0.003,-0.023,0.02
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/full/pairwise_WAPE.csv b/tables/full/pairwise_WAPE.csv
deleted file mode 100644
index 901599a21956d305748b11cf1474b027525e8e4c..0000000000000000000000000000000000000000
--- a/tables/full/pairwise_WAPE.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TimesFM-2.5,0.68,0.59,0.76,0.086,0.054,0.118
-Chronos-2,TiRex,0.73,0.64,0.81,0.088,0.057,0.12
-Chronos-2,Toto-1.0,0.68,0.58,0.76,0.116,0.082,0.153
-Chronos-2,TabPFN-TS,0.82,0.74,0.89,0.091,0.058,0.121
-Chronos-2,Moirai-2.0,0.84,0.76,0.91,0.126,0.096,0.159
-Chronos-2,Chronos-Bolt,0.89,0.82,0.95,0.137,0.105,0.171
-Chronos-2,Sundial-Base,0.93,0.88,0.98,0.167,0.134,0.2
-Chronos-2,Stat. Ensemble,0.91,0.85,0.96,0.264,0.21,0.312
-Chronos-2,AutoARIMA,0.92,0.86,0.97,0.301,0.251,0.35
-Chronos-2,AutoETS,0.88,0.81,0.94,0.367,0.293,0.433
-Chronos-2,AutoTheta,0.94,0.89,0.98,0.297,0.247,0.344
-Chronos-2,Naive,0.93,0.88,0.97,0.429,0.373,0.482
-Chronos-2,Seasonal Naive,0.95,0.9,0.99,0.394,0.349,0.44
-Chronos-2,Drift,0.93,0.88,0.97,0.442,0.383,0.498
-TimesFM-2.5,Chronos-2,0.32,0.24,0.41,-0.094,-0.133,-0.057
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TiRex,0.485,0.39,0.58,0.002,-0.014,0.02
-TimesFM-2.5,Toto-1.0,0.53,0.445,0.62,0.033,0.006,0.06
-TimesFM-2.5,TabPFN-TS,0.63,0.53,0.72,0.005,-0.04,0.051
-TimesFM-2.5,Moirai-2.0,0.7,0.615,0.78,0.044,0.019,0.069
-TimesFM-2.5,Chronos-Bolt,0.73,0.65,0.81,0.056,0.034,0.079
-TimesFM-2.5,Sundial-Base,0.825,0.75,0.9,0.089,0.052,0.125
-TimesFM-2.5,Stat. Ensemble,0.84,0.76,0.91,0.195,0.146,0.244
-TimesFM-2.5,AutoARIMA,0.91,0.85,0.97,0.236,0.189,0.285
-TimesFM-2.5,AutoETS,0.85,0.78,0.91,0.307,0.237,0.376
-TimesFM-2.5,AutoTheta,0.92,0.86,0.97,0.231,0.186,0.275
-TimesFM-2.5,Naive,0.93,0.87,0.98,0.375,0.321,0.43
-TimesFM-2.5,Seasonal Naive,0.95,0.9,0.99,0.337,0.293,0.386
-TimesFM-2.5,Drift,0.92,0.86,0.97,0.39,0.336,0.445
-TiRex,Chronos-2,0.27,0.19,0.36,-0.097,-0.137,-0.06
-TiRex,TimesFM-2.5,0.515,0.42,0.61,-0.002,-0.02,0.014
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,Toto-1.0,0.625,0.53,0.72,0.03,0.007,0.051
-TiRex,TabPFN-TS,0.65,0.56,0.74,0.003,-0.045,0.052
-TiRex,Moirai-2.0,0.695,0.615,0.79,0.042,0.023,0.065
-TiRex,Chronos-Bolt,0.745,0.66,0.83,0.054,0.032,0.077
-TiRex,Sundial-Base,0.775,0.695,0.85,0.087,0.048,0.126
-TiRex,Stat. Ensemble,0.82,0.73,0.89,0.193,0.146,0.242
-TiRex,AutoARIMA,0.88,0.81,0.94,0.234,0.189,0.282
-TiRex,AutoETS,0.84,0.76,0.91,0.306,0.233,0.374
-TiRex,AutoTheta,0.93,0.88,0.98,0.229,0.187,0.272
-TiRex,Naive,0.93,0.88,0.98,0.374,0.321,0.429
-TiRex,Seasonal Naive,0.95,0.9,0.99,0.336,0.29,0.384
-TiRex,Drift,0.91,0.85,0.96,0.388,0.335,0.443
-Toto-1.0,Chronos-2,0.32,0.24,0.42,-0.131,-0.18,-0.089
-Toto-1.0,TimesFM-2.5,0.47,0.38,0.555,-0.034,-0.064,-0.007
-Toto-1.0,TiRex,0.375,0.28,0.47,-0.031,-0.054,-0.007
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,TabPFN-TS,0.56,0.47,0.65,-0.028,-0.083,0.024
-Toto-1.0,Moirai-2.0,0.6,0.5,0.69,0.012,-0.012,0.036
-Toto-1.0,Chronos-Bolt,0.6,0.505,0.685,0.024,-0.004,0.052
-Toto-1.0,Sundial-Base,0.665,0.575,0.75,0.058,0.011,0.103
-Toto-1.0,Stat. Ensemble,0.69,0.59,0.78,0.168,0.115,0.219
-Toto-1.0,AutoARIMA,0.82,0.74,0.89,0.21,0.157,0.261
-Toto-1.0,AutoETS,0.77,0.68,0.84,0.284,0.208,0.353
-Toto-1.0,AutoTheta,0.87,0.8,0.93,0.205,0.158,0.252
-Toto-1.0,Naive,0.91,0.85,0.96,0.354,0.296,0.408
-Toto-1.0,Seasonal Naive,0.92,0.86,0.97,0.315,0.266,0.365
-Toto-1.0,Drift,0.9,0.83,0.96,0.369,0.315,0.424
-TabPFN-TS,Chronos-2,0.18,0.11,0.26,-0.1,-0.138,-0.061
-TabPFN-TS,TimesFM-2.5,0.37,0.28,0.47,-0.005,-0.054,0.039
-TabPFN-TS,TiRex,0.35,0.26,0.44,-0.003,-0.055,0.043
-TabPFN-TS,Toto-1.0,0.44,0.35,0.53,0.027,-0.024,0.076
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Moirai-2.0,0.52,0.42,0.62,0.039,-0.012,0.085
-TabPFN-TS,Chronos-Bolt,0.53,0.44,0.62,0.051,0.006,0.094
-TabPFN-TS,Sundial-Base,0.66,0.56,0.75,0.084,0.041,0.126
-TabPFN-TS,Stat. Ensemble,0.775,0.695,0.855,0.19,0.134,0.242
-TabPFN-TS,AutoARIMA,0.83,0.76,0.9,0.232,0.178,0.283
-TabPFN-TS,AutoETS,0.77,0.69,0.85,0.303,0.23,0.382
-TabPFN-TS,AutoTheta,0.84,0.76,0.9,0.227,0.18,0.277
-TabPFN-TS,Naive,0.91,0.85,0.96,0.372,0.316,0.432
-TabPFN-TS,Seasonal Naive,0.94,0.89,0.98,0.334,0.29,0.379
-TabPFN-TS,Drift,0.89,0.83,0.95,0.386,0.328,0.447
-Moirai-2.0,Chronos-2,0.16,0.09,0.24,-0.145,-0.189,-0.106
-Moirai-2.0,TimesFM-2.5,0.3,0.22,0.385,-0.046,-0.075,-0.02
-Moirai-2.0,TiRex,0.305,0.21,0.385,-0.044,-0.069,-0.023
-Moirai-2.0,Toto-1.0,0.4,0.31,0.5,-0.012,-0.038,0.012
-Moirai-2.0,TabPFN-TS,0.48,0.38,0.58,-0.041,-0.093,0.012
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Chronos-Bolt,0.56,0.48,0.645,0.013,-0.011,0.036
-Moirai-2.0,Sundial-Base,0.665,0.57,0.76,0.047,0.005,0.087
-Moirai-2.0,Stat. Ensemble,0.74,0.65,0.82,0.157,0.105,0.208
-Moirai-2.0,AutoARIMA,0.83,0.75,0.9,0.2,0.148,0.254
-Moirai-2.0,AutoETS,0.77,0.68,0.85,0.275,0.196,0.35
-Moirai-2.0,AutoTheta,0.88,0.81,0.94,0.196,0.147,0.243
-Moirai-2.0,Naive,0.87,0.8,0.93,0.346,0.29,0.403
-Moirai-2.0,Seasonal Naive,0.87,0.8,0.93,0.307,0.258,0.357
-Moirai-2.0,Drift,0.87,0.8,0.93,0.361,0.303,0.417
-Chronos-Bolt,Chronos-2,0.11,0.05,0.18,-0.159,-0.207,-0.117
-Chronos-Bolt,TimesFM-2.5,0.27,0.19,0.35,-0.06,-0.086,-0.035
-Chronos-Bolt,TiRex,0.255,0.17,0.34,-0.057,-0.083,-0.033
-Chronos-Bolt,Toto-1.0,0.4,0.315,0.495,-0.025,-0.055,0.004
-Chronos-Bolt,TabPFN-TS,0.47,0.38,0.56,-0.054,-0.104,-0.006
-Chronos-Bolt,Moirai-2.0,0.44,0.355,0.52,-0.013,-0.038,0.011
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Sundial-Base,0.635,0.54,0.73,0.034,-0.006,0.071
-Chronos-Bolt,Stat. Ensemble,0.74,0.64,0.82,0.147,0.096,0.198
-Chronos-Bolt,AutoARIMA,0.85,0.77,0.92,0.19,0.137,0.242
-Chronos-Bolt,AutoETS,0.77,0.68,0.85,0.266,0.19,0.341
-Chronos-Bolt,AutoTheta,0.92,0.87,0.97,0.185,0.139,0.232
-Chronos-Bolt,Naive,0.89,0.83,0.95,0.338,0.28,0.394
-Chronos-Bolt,Seasonal Naive,0.91,0.85,0.96,0.298,0.252,0.345
-Chronos-Bolt,Drift,0.9,0.84,0.95,0.353,0.296,0.41
-Sundial-Base,Chronos-2,0.07,0.02,0.12,-0.2,-0.25,-0.154
-Sundial-Base,TimesFM-2.5,0.175,0.1,0.25,-0.097,-0.143,-0.055
-Sundial-Base,TiRex,0.225,0.15,0.305,-0.095,-0.144,-0.05
-Sundial-Base,Toto-1.0,0.335,0.25,0.425,-0.062,-0.115,-0.012
-Sundial-Base,TabPFN-TS,0.34,0.25,0.44,-0.092,-0.144,-0.042
-Sundial-Base,Moirai-2.0,0.335,0.24,0.43,-0.049,-0.095,-0.005
-Sundial-Base,Chronos-Bolt,0.365,0.27,0.46,-0.036,-0.076,0.006
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Stat. Ensemble,0.64,0.54,0.73,0.116,0.05,0.174
-Sundial-Base,AutoARIMA,0.76,0.67,0.84,0.161,0.097,0.218
-Sundial-Base,AutoETS,0.68,0.58,0.77,0.24,0.149,0.317
-Sundial-Base,AutoTheta,0.74,0.64,0.82,0.156,0.099,0.206
-Sundial-Base,Naive,0.82,0.74,0.89,0.315,0.248,0.38
-Sundial-Base,Seasonal Naive,0.88,0.81,0.94,0.273,0.225,0.319
-Sundial-Base,Drift,0.81,0.73,0.88,0.33,0.261,0.398
-Stat. Ensemble,Chronos-2,0.09,0.04,0.15,-0.358,-0.454,-0.265
-Stat. Ensemble,TimesFM-2.5,0.16,0.09,0.24,-0.242,-0.322,-0.171
-Stat. Ensemble,TiRex,0.18,0.11,0.27,-0.239,-0.319,-0.171
-Stat. Ensemble,Toto-1.0,0.31,0.22,0.41,-0.201,-0.28,-0.13
-Stat. Ensemble,TabPFN-TS,0.225,0.145,0.305,-0.235,-0.32,-0.155
-Stat. Ensemble,Moirai-2.0,0.26,0.18,0.35,-0.187,-0.263,-0.117
-Stat. Ensemble,Chronos-Bolt,0.26,0.18,0.36,-0.172,-0.246,-0.107
-Stat. Ensemble,Sundial-Base,0.36,0.27,0.46,-0.132,-0.211,-0.052
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoARIMA,0.65,0.56,0.74,0.051,0.02,0.086
-Stat. Ensemble,AutoETS,0.785,0.7,0.86,0.14,0.071,0.209
-Stat. Ensemble,AutoTheta,0.81,0.73,0.88,0.045,0.009,0.078
-Stat. Ensemble,Naive,0.84,0.77,0.91,0.224,0.169,0.277
-Stat. Ensemble,Seasonal Naive,0.835,0.77,0.9,0.177,0.138,0.221
-Stat. Ensemble,Drift,0.86,0.79,0.92,0.242,0.192,0.293
-AutoARIMA,Chronos-2,0.08,0.03,0.14,-0.431,-0.538,-0.335
-AutoARIMA,TimesFM-2.5,0.09,0.03,0.15,-0.308,-0.399,-0.234
-AutoARIMA,TiRex,0.12,0.06,0.19,-0.305,-0.393,-0.233
-AutoARIMA,Toto-1.0,0.18,0.11,0.26,-0.266,-0.353,-0.187
-AutoARIMA,TabPFN-TS,0.17,0.1,0.24,-0.301,-0.395,-0.217
-AutoARIMA,Moirai-2.0,0.17,0.1,0.25,-0.251,-0.341,-0.173
-AutoARIMA,Chronos-Bolt,0.15,0.08,0.23,-0.235,-0.319,-0.159
-AutoARIMA,Sundial-Base,0.24,0.16,0.33,-0.192,-0.278,-0.107
-AutoARIMA,Stat. Ensemble,0.35,0.26,0.44,-0.054,-0.095,-0.02
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoETS,0.555,0.46,0.655,0.093,0.015,0.175
-AutoARIMA,AutoTheta,0.52,0.42,0.62,-0.006,-0.057,0.039
-AutoARIMA,Naive,0.72,0.63,0.8,0.183,0.118,0.242
-AutoARIMA,Seasonal Naive,0.8,0.735,0.875,0.133,0.09,0.178
-AutoARIMA,Drift,0.75,0.65,0.83,0.201,0.14,0.261
-AutoETS,Chronos-2,0.12,0.06,0.19,-0.579,-0.764,-0.414
-AutoETS,TimesFM-2.5,0.15,0.09,0.22,-0.443,-0.602,-0.31
-AutoETS,TiRex,0.16,0.09,0.24,-0.44,-0.598,-0.303
-AutoETS,Toto-1.0,0.23,0.16,0.32,-0.396,-0.547,-0.263
-AutoETS,TabPFN-TS,0.23,0.15,0.31,-0.436,-0.617,-0.299
-AutoETS,Moirai-2.0,0.23,0.15,0.32,-0.38,-0.538,-0.243
-AutoETS,Chronos-Bolt,0.23,0.15,0.32,-0.362,-0.518,-0.235
-AutoETS,Sundial-Base,0.32,0.23,0.42,-0.315,-0.464,-0.175
-AutoETS,Stat. Ensemble,0.215,0.14,0.3,-0.162,-0.264,-0.077
-AutoETS,AutoARIMA,0.445,0.345,0.54,-0.103,-0.212,-0.015
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,AutoTheta,0.47,0.37,0.56,-0.11,-0.214,-0.027
-AutoETS,Naive,0.62,0.53,0.72,0.098,0.018,0.177
-AutoETS,Seasonal Naive,0.685,0.585,0.775,0.043,-0.061,0.128
-AutoETS,Drift,0.74,0.66,0.82,0.119,0.042,0.194
-AutoTheta,Chronos-2,0.06,0.02,0.11,-0.423,-0.524,-0.328
-AutoTheta,TimesFM-2.5,0.08,0.03,0.14,-0.301,-0.38,-0.229
-AutoTheta,TiRex,0.07,0.02,0.12,-0.297,-0.374,-0.23
-AutoTheta,Toto-1.0,0.13,0.07,0.2,-0.258,-0.337,-0.188
-AutoTheta,TabPFN-TS,0.16,0.1,0.24,-0.294,-0.383,-0.22
-AutoTheta,Moirai-2.0,0.12,0.06,0.19,-0.243,-0.32,-0.172
-AutoTheta,Chronos-Bolt,0.08,0.03,0.13,-0.227,-0.302,-0.161
-AutoTheta,Sundial-Base,0.26,0.18,0.36,-0.185,-0.26,-0.11
-AutoTheta,Stat. Ensemble,0.19,0.12,0.27,-0.047,-0.085,-0.009
-AutoTheta,AutoARIMA,0.48,0.38,0.58,0.006,-0.041,0.054
-AutoTheta,AutoETS,0.53,0.44,0.63,0.099,0.026,0.177
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Naive,0.76,0.68,0.84,0.188,0.138,0.239
-AutoTheta,Seasonal Naive,0.78,0.69,0.86,0.138,0.099,0.18
-AutoTheta,Drift,0.78,0.7,0.86,0.206,0.158,0.26
-Naive,Chronos-2,0.07,0.03,0.12,-0.751,-0.93,-0.594
-Naive,TimesFM-2.5,0.07,0.02,0.13,-0.601,-0.753,-0.473
-Naive,TiRex,0.07,0.02,0.12,-0.597,-0.75,-0.473
-Naive,Toto-1.0,0.09,0.04,0.15,-0.549,-0.689,-0.421
-Naive,TabPFN-TS,0.09,0.04,0.15,-0.592,-0.761,-0.461
-Naive,Moirai-2.0,0.13,0.07,0.2,-0.53,-0.674,-0.408
-Naive,Chronos-Bolt,0.11,0.05,0.17,-0.511,-0.649,-0.39
-Naive,Sundial-Base,0.18,0.11,0.26,-0.459,-0.613,-0.331
-Naive,Stat. Ensemble,0.16,0.09,0.23,-0.289,-0.383,-0.203
-Naive,AutoARIMA,0.28,0.2,0.37,-0.223,-0.319,-0.134
-Naive,AutoETS,0.38,0.28,0.47,-0.109,-0.215,-0.018
-Naive,AutoTheta,0.24,0.16,0.32,-0.231,-0.314,-0.161
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Seasonal Naive,0.475,0.39,0.565,-0.061,-0.146,0.017
-Naive,Drift,0.84,0.77,0.91,0.023,-0.005,0.048
-Seasonal Naive,Chronos-2,0.05,0.01,0.1,-0.65,-0.787,-0.537
-Seasonal Naive,TimesFM-2.5,0.05,0.01,0.1,-0.509,-0.63,-0.414
-Seasonal Naive,TiRex,0.05,0.01,0.1,-0.505,-0.623,-0.408
-Seasonal Naive,Toto-1.0,0.08,0.03,0.14,-0.46,-0.575,-0.362
-Seasonal Naive,TabPFN-TS,0.06,0.02,0.11,-0.501,-0.61,-0.409
-Seasonal Naive,Moirai-2.0,0.13,0.07,0.2,-0.442,-0.555,-0.347
-Seasonal Naive,Chronos-Bolt,0.09,0.04,0.15,-0.424,-0.527,-0.336
-Seasonal Naive,Sundial-Base,0.12,0.06,0.19,-0.375,-0.469,-0.29
-Seasonal Naive,Stat. Ensemble,0.165,0.1,0.23,-0.215,-0.283,-0.161
-Seasonal Naive,AutoARIMA,0.2,0.125,0.265,-0.153,-0.217,-0.099
-Seasonal Naive,AutoETS,0.315,0.225,0.415,-0.045,-0.147,0.057
-Seasonal Naive,AutoTheta,0.22,0.14,0.31,-0.16,-0.219,-0.11
-Seasonal Naive,Naive,0.525,0.435,0.61,0.058,-0.017,0.127
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Drift,0.64,0.53,0.73,0.079,-0.001,0.153
-Drift,Chronos-2,0.07,0.03,0.12,-0.792,-0.994,-0.621
-Drift,TimesFM-2.5,0.08,0.03,0.14,-0.639,-0.801,-0.507
-Drift,TiRex,0.09,0.04,0.15,-0.635,-0.796,-0.504
-Drift,Toto-1.0,0.1,0.04,0.17,-0.585,-0.735,-0.459
-Drift,TabPFN-TS,0.11,0.05,0.17,-0.63,-0.807,-0.488
-Drift,Moirai-2.0,0.13,0.07,0.2,-0.566,-0.715,-0.435
-Drift,Chronos-Bolt,0.1,0.05,0.16,-0.546,-0.695,-0.42
-Drift,Sundial-Base,0.19,0.12,0.27,-0.493,-0.66,-0.354
-Drift,Stat. Ensemble,0.14,0.08,0.21,-0.32,-0.415,-0.238
-Drift,AutoARIMA,0.25,0.17,0.35,-0.252,-0.353,-0.163
-Drift,AutoETS,0.26,0.18,0.34,-0.135,-0.24,-0.044
-Drift,AutoTheta,0.22,0.14,0.3,-0.26,-0.351,-0.188
-Drift,Naive,0.16,0.09,0.23,-0.023,-0.051,0.005
-Drift,Seasonal Naive,0.36,0.27,0.47,-0.086,-0.181,0.001
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/full/pairwise_WQL.csv b/tables/full/pairwise_WQL.csv
deleted file mode 100644
index c8b896eb4ab031e575e110c916ecd7ae5c8aee12..0000000000000000000000000000000000000000
--- a/tables/full/pairwise_WQL.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TiRex,0.74,0.65,0.82,0.091,0.058,0.126
-Chronos-2,TimesFM-2.5,0.72,0.63,0.8,0.09,0.059,0.122
-Chronos-2,Toto-1.0,0.7,0.6,0.79,0.119,0.084,0.156
-Chronos-2,TabPFN-TS,0.81,0.73,0.89,0.105,0.073,0.134
-Chronos-2,Moirai-2.0,0.86,0.79,0.92,0.136,0.105,0.17
-Chronos-2,Chronos-Bolt,0.9,0.84,0.95,0.147,0.114,0.18
-Chronos-2,Sundial-Base,0.97,0.93,1.0,0.225,0.194,0.255
-Chronos-2,Stat. Ensemble,0.95,0.9,0.99,0.38,0.324,0.431
-Chronos-2,AutoARIMA,0.96,0.92,0.99,0.367,0.316,0.416
-Chronos-2,AutoETS,0.95,0.9,0.99,0.597,0.5,0.684
-Chronos-2,AutoTheta,0.98,0.95,1.0,0.474,0.418,0.529
-Chronos-2,Seasonal Naive,0.98,0.95,1.0,0.515,0.469,0.559
-Chronos-2,Naive,0.98,0.95,1.0,0.652,0.603,0.693
-Chronos-2,Drift,0.98,0.95,1.0,0.654,0.603,0.697
-TiRex,Chronos-2,0.26,0.18,0.35,-0.1,-0.144,-0.062
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,TimesFM-2.5,0.555,0.455,0.65,-0.001,-0.02,0.017
-TiRex,Toto-1.0,0.685,0.6,0.77,0.03,0.009,0.05
-TiRex,TabPFN-TS,0.64,0.54,0.74,0.016,-0.033,0.063
-TiRex,Moirai-2.0,0.795,0.715,0.87,0.05,0.03,0.073
-TiRex,Chronos-Bolt,0.815,0.735,0.885,0.061,0.039,0.083
-TiRex,Sundial-Base,0.895,0.835,0.95,0.148,0.11,0.185
-TiRex,Stat. Ensemble,0.89,0.83,0.95,0.318,0.262,0.374
-TiRex,AutoARIMA,0.93,0.87,0.98,0.304,0.256,0.352
-TiRex,AutoETS,0.92,0.86,0.97,0.558,0.449,0.655
-TiRex,AutoTheta,0.95,0.9,0.99,0.421,0.365,0.479
-TiRex,Seasonal Naive,0.99,0.96,1.0,0.467,0.42,0.515
-TiRex,Naive,0.99,0.96,1.0,0.617,0.565,0.663
-TiRex,Drift,0.97,0.93,1.0,0.619,0.567,0.666
-TimesFM-2.5,Chronos-2,0.28,0.2,0.37,-0.099,-0.139,-0.063
-TimesFM-2.5,TiRex,0.445,0.35,0.545,0.001,-0.017,0.019
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,Toto-1.0,0.56,0.475,0.655,0.031,0.006,0.057
-TimesFM-2.5,TabPFN-TS,0.64,0.54,0.74,0.017,-0.031,0.062
-TimesFM-2.5,Moirai-2.0,0.73,0.645,0.81,0.051,0.028,0.076
-TimesFM-2.5,Chronos-Bolt,0.76,0.685,0.835,0.062,0.04,0.085
-TimesFM-2.5,Sundial-Base,0.905,0.845,0.96,0.148,0.114,0.183
-TimesFM-2.5,Stat. Ensemble,0.9,0.84,0.95,0.319,0.262,0.376
-TimesFM-2.5,AutoARIMA,0.93,0.88,0.98,0.304,0.255,0.357
-TimesFM-2.5,AutoETS,0.9,0.84,0.95,0.558,0.449,0.655
-TimesFM-2.5,AutoTheta,0.96,0.91,0.99,0.422,0.362,0.483
-TimesFM-2.5,Seasonal Naive,0.99,0.97,1.0,0.467,0.422,0.518
-TimesFM-2.5,Naive,0.99,0.97,1.0,0.617,0.564,0.664
-TimesFM-2.5,Drift,0.97,0.93,1.0,0.62,0.565,0.667
-Toto-1.0,Chronos-2,0.3,0.21,0.4,-0.134,-0.185,-0.092
-Toto-1.0,TiRex,0.315,0.23,0.4,-0.031,-0.053,-0.009
-Toto-1.0,TimesFM-2.5,0.44,0.345,0.525,-0.032,-0.061,-0.006
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,TabPFN-TS,0.54,0.45,0.63,-0.015,-0.073,0.036
-Toto-1.0,Moirai-2.0,0.59,0.49,0.68,0.02,-0.003,0.044
-Toto-1.0,Chronos-Bolt,0.61,0.52,0.695,0.032,0.003,0.061
-Toto-1.0,Sundial-Base,0.795,0.715,0.87,0.121,0.079,0.163
-Toto-1.0,Stat. Ensemble,0.81,0.73,0.88,0.297,0.235,0.356
-Toto-1.0,AutoARIMA,0.85,0.78,0.92,0.282,0.23,0.336
-Toto-1.0,AutoETS,0.84,0.76,0.91,0.545,0.433,0.645
-Toto-1.0,AutoTheta,0.93,0.87,0.97,0.403,0.341,0.465
-Toto-1.0,Seasonal Naive,0.96,0.92,0.99,0.45,0.397,0.501
-Toto-1.0,Naive,0.97,0.93,1.0,0.605,0.55,0.652
-Toto-1.0,Drift,0.97,0.93,1.0,0.607,0.551,0.656
-TabPFN-TS,Chronos-2,0.19,0.11,0.27,-0.118,-0.155,-0.078
-TabPFN-TS,TiRex,0.36,0.26,0.46,-0.016,-0.067,0.032
-TabPFN-TS,TimesFM-2.5,0.36,0.26,0.46,-0.017,-0.066,0.03
-TabPFN-TS,Toto-1.0,0.46,0.37,0.55,0.015,-0.037,0.068
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Moirai-2.0,0.55,0.46,0.65,0.035,-0.017,0.084
-TabPFN-TS,Chronos-Bolt,0.52,0.43,0.61,0.046,0.0,0.092
-TabPFN-TS,Sundial-Base,0.79,0.71,0.87,0.134,0.09,0.175
-TabPFN-TS,Stat. Ensemble,0.795,0.715,0.875,0.307,0.247,0.365
-TabPFN-TS,AutoARIMA,0.83,0.75,0.9,0.293,0.239,0.348
-TabPFN-TS,AutoETS,0.85,0.78,0.92,0.554,0.442,0.654
-TabPFN-TS,AutoTheta,0.94,0.89,0.98,0.412,0.352,0.471
-TabPFN-TS,Seasonal Naive,0.97,0.935,0.995,0.458,0.412,0.506
-TabPFN-TS,Naive,0.97,0.93,1.0,0.611,0.556,0.657
-TabPFN-TS,Drift,0.95,0.9,0.98,0.613,0.557,0.661
-Moirai-2.0,Chronos-2,0.14,0.08,0.21,-0.158,-0.205,-0.118
-Moirai-2.0,TiRex,0.205,0.13,0.285,-0.053,-0.078,-0.031
-Moirai-2.0,TimesFM-2.5,0.27,0.19,0.355,-0.054,-0.082,-0.029
-Moirai-2.0,Toto-1.0,0.41,0.32,0.51,-0.021,-0.046,0.003
-Moirai-2.0,TabPFN-TS,0.45,0.35,0.54,-0.036,-0.091,0.017
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Chronos-Bolt,0.59,0.505,0.67,0.012,-0.013,0.037
-Moirai-2.0,Sundial-Base,0.865,0.79,0.93,0.103,0.062,0.14
-Moirai-2.0,Stat. Ensemble,0.84,0.76,0.91,0.282,0.222,0.343
-Moirai-2.0,AutoARIMA,0.89,0.82,0.95,0.267,0.214,0.322
-Moirai-2.0,AutoETS,0.87,0.8,0.93,0.537,0.421,0.639
-Moirai-2.0,AutoTheta,0.91,0.85,0.96,0.391,0.33,0.454
-Moirai-2.0,Seasonal Naive,0.93,0.87,0.97,0.439,0.387,0.49
-Moirai-2.0,Naive,0.95,0.9,0.99,0.597,0.541,0.645
-Moirai-2.0,Drift,0.95,0.9,0.99,0.599,0.542,0.649
-Chronos-Bolt,Chronos-2,0.1,0.05,0.16,-0.172,-0.22,-0.129
-Chronos-Bolt,TiRex,0.185,0.115,0.265,-0.065,-0.091,-0.041
-Chronos-Bolt,TimesFM-2.5,0.24,0.165,0.315,-0.066,-0.092,-0.042
-Chronos-Bolt,Toto-1.0,0.39,0.305,0.48,-0.033,-0.065,-0.003
-Chronos-Bolt,TabPFN-TS,0.48,0.39,0.57,-0.049,-0.101,-0.0
-Chronos-Bolt,Moirai-2.0,0.41,0.33,0.495,-0.012,-0.038,0.013
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Sundial-Base,0.785,0.705,0.865,0.092,0.051,0.128
-Chronos-Bolt,Stat. Ensemble,0.85,0.78,0.92,0.274,0.215,0.332
-Chronos-Bolt,AutoARIMA,0.88,0.81,0.94,0.258,0.207,0.31
-Chronos-Bolt,AutoETS,0.87,0.8,0.93,0.531,0.418,0.635
-Chronos-Bolt,AutoTheta,0.96,0.92,0.99,0.384,0.323,0.446
-Chronos-Bolt,Seasonal Naive,0.97,0.94,1.0,0.432,0.384,0.482
-Chronos-Bolt,Naive,0.98,0.95,1.0,0.592,0.537,0.639
-Chronos-Bolt,Drift,0.98,0.95,1.0,0.594,0.539,0.643
-Sundial-Base,Chronos-2,0.03,0.0,0.07,-0.29,-0.343,-0.241
-Sundial-Base,TiRex,0.105,0.05,0.165,-0.173,-0.226,-0.124
-Sundial-Base,TimesFM-2.5,0.095,0.04,0.155,-0.174,-0.223,-0.129
-Sundial-Base,Toto-1.0,0.205,0.13,0.285,-0.138,-0.195,-0.085
-Sundial-Base,TabPFN-TS,0.21,0.13,0.29,-0.155,-0.212,-0.099
-Sundial-Base,Moirai-2.0,0.135,0.07,0.21,-0.114,-0.163,-0.066
-Sundial-Base,Chronos-Bolt,0.215,0.135,0.295,-0.101,-0.147,-0.053
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Stat. Ensemble,0.68,0.58,0.76,0.2,0.124,0.268
-Sundial-Base,AutoARIMA,0.73,0.63,0.81,0.183,0.114,0.245
-Sundial-Base,AutoETS,0.71,0.61,0.79,0.486,0.353,0.603
-Sundial-Base,AutoTheta,0.77,0.68,0.85,0.321,0.25,0.391
-Sundial-Base,Seasonal Naive,0.91,0.85,0.96,0.374,0.322,0.43
-Sundial-Base,Naive,0.91,0.85,0.96,0.55,0.489,0.605
-Sundial-Base,Drift,0.88,0.81,0.94,0.553,0.487,0.611
-Stat. Ensemble,Chronos-2,0.05,0.01,0.1,-0.613,-0.757,-0.479
-Stat. Ensemble,TiRex,0.11,0.05,0.17,-0.466,-0.598,-0.355
-Stat. Ensemble,TimesFM-2.5,0.1,0.05,0.16,-0.468,-0.603,-0.355
-Stat. Ensemble,Toto-1.0,0.19,0.12,0.27,-0.422,-0.552,-0.307
-Stat. Ensemble,TabPFN-TS,0.205,0.125,0.285,-0.443,-0.575,-0.329
-Stat. Ensemble,Moirai-2.0,0.16,0.09,0.24,-0.393,-0.521,-0.285
-Stat. Ensemble,Chronos-Bolt,0.15,0.08,0.22,-0.377,-0.496,-0.274
-Stat. Ensemble,Sundial-Base,0.32,0.24,0.42,-0.25,-0.366,-0.142
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoARIMA,0.5,0.41,0.6,-0.021,-0.061,0.02
-Stat. Ensemble,AutoETS,0.755,0.67,0.835,0.38,0.234,0.517
-Stat. Ensemble,AutoTheta,0.87,0.81,0.93,0.151,0.111,0.194
-Stat. Ensemble,Seasonal Naive,0.835,0.77,0.895,0.218,0.166,0.273
-Stat. Ensemble,Naive,0.97,0.93,1.0,0.438,0.386,0.484
-Stat. Ensemble,Drift,0.97,0.93,1.0,0.442,0.387,0.49
-AutoARIMA,Chronos-2,0.04,0.01,0.08,-0.58,-0.711,-0.461
-AutoARIMA,TiRex,0.07,0.02,0.13,-0.436,-0.543,-0.345
-AutoARIMA,TimesFM-2.5,0.07,0.02,0.12,-0.438,-0.556,-0.342
-AutoARIMA,Toto-1.0,0.15,0.08,0.22,-0.393,-0.505,-0.299
-AutoARIMA,TabPFN-TS,0.17,0.1,0.25,-0.414,-0.533,-0.315
-AutoARIMA,Moirai-2.0,0.11,0.05,0.18,-0.365,-0.476,-0.272
-AutoARIMA,Chronos-Bolt,0.12,0.06,0.19,-0.348,-0.449,-0.261
-AutoARIMA,Sundial-Base,0.27,0.19,0.37,-0.224,-0.324,-0.129
-AutoARIMA,Stat. Ensemble,0.5,0.4,0.59,0.021,-0.021,0.058
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoETS,0.685,0.59,0.775,0.381,0.235,0.518
-AutoARIMA,AutoTheta,0.75,0.67,0.83,0.169,0.119,0.218
-AutoARIMA,Seasonal Naive,0.88,0.825,0.93,0.234,0.184,0.287
-AutoARIMA,Naive,0.91,0.85,0.96,0.449,0.389,0.499
-AutoARIMA,Drift,0.89,0.82,0.95,0.453,0.393,0.505
-AutoETS,Chronos-2,0.05,0.01,0.1,-1.48,-2.169,-0.999
-AutoETS,TiRex,0.08,0.03,0.14,-1.261,-1.901,-0.816
-AutoETS,TimesFM-2.5,0.1,0.05,0.16,-1.261,-1.898,-0.814
-AutoETS,Toto-1.0,0.16,0.09,0.24,-1.198,-1.815,-0.764
-AutoETS,TabPFN-TS,0.15,0.08,0.22,-1.242,-1.889,-0.793
-AutoETS,Moirai-2.0,0.13,0.07,0.2,-1.158,-1.773,-0.727
-AutoETS,Chronos-Bolt,0.13,0.07,0.2,-1.133,-1.742,-0.717
-AutoETS,Sundial-Base,0.29,0.21,0.39,-0.945,-1.517,-0.545
-AutoETS,Stat. Ensemble,0.245,0.165,0.33,-0.612,-1.072,-0.305
-AutoETS,AutoARIMA,0.315,0.225,0.41,-0.616,-1.074,-0.308
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,AutoTheta,0.57,0.47,0.67,-0.384,-0.762,-0.111
-AutoETS,Seasonal Naive,0.625,0.535,0.715,-0.27,-0.651,-0.012
-AutoETS,Naive,0.76,0.68,0.84,0.059,-0.228,0.255
-AutoETS,Drift,0.79,0.71,0.87,0.062,-0.223,0.256
-AutoTheta,Chronos-2,0.02,0.0,0.05,-0.901,-1.124,-0.718
-AutoTheta,TiRex,0.05,0.01,0.1,-0.728,-0.919,-0.575
-AutoTheta,TimesFM-2.5,0.04,0.01,0.09,-0.73,-0.934,-0.567
-AutoTheta,Toto-1.0,0.07,0.03,0.13,-0.676,-0.87,-0.517
-AutoTheta,TabPFN-TS,0.06,0.02,0.11,-0.701,-0.889,-0.542
-AutoTheta,Moirai-2.0,0.09,0.04,0.15,-0.642,-0.83,-0.491
-AutoTheta,Chronos-Bolt,0.04,0.01,0.08,-0.622,-0.804,-0.477
-AutoTheta,Sundial-Base,0.23,0.15,0.32,-0.473,-0.641,-0.333
-AutoTheta,Stat. Ensemble,0.13,0.07,0.19,-0.178,-0.24,-0.124
-AutoTheta,AutoARIMA,0.25,0.17,0.33,-0.203,-0.279,-0.135
-AutoTheta,AutoETS,0.43,0.33,0.53,0.278,0.1,0.433
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Seasonal Naive,0.69,0.6,0.78,0.078,0.007,0.148
-AutoTheta,Naive,0.85,0.78,0.92,0.338,0.277,0.392
-AutoTheta,Drift,0.79,0.71,0.87,0.342,0.277,0.399
-Seasonal Naive,Chronos-2,0.02,0.0,0.05,-1.063,-1.27,-0.883
-Seasonal Naive,TiRex,0.01,0.0,0.04,-0.875,-1.061,-0.724
-Seasonal Naive,TimesFM-2.5,0.01,0.0,0.03,-0.877,-1.074,-0.729
-Seasonal Naive,Toto-1.0,0.04,0.01,0.08,-0.818,-1.003,-0.658
-Seasonal Naive,TabPFN-TS,0.03,0.005,0.065,-0.846,-1.025,-0.7
-Seasonal Naive,Moirai-2.0,0.07,0.03,0.13,-0.781,-0.961,-0.632
-Seasonal Naive,Chronos-Bolt,0.03,0.0,0.06,-0.76,-0.929,-0.623
-Seasonal Naive,Sundial-Base,0.09,0.04,0.15,-0.598,-0.753,-0.474
-Seasonal Naive,Stat. Ensemble,0.165,0.105,0.23,-0.279,-0.376,-0.198
-Seasonal Naive,AutoARIMA,0.12,0.07,0.175,-0.306,-0.403,-0.225
-Seasonal Naive,AutoETS,0.375,0.285,0.465,0.213,0.012,0.394
-Seasonal Naive,AutoTheta,0.31,0.22,0.4,-0.085,-0.174,-0.008
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Naive,0.685,0.61,0.755,0.281,0.208,0.351
-Seasonal Naive,Drift,0.77,0.69,0.86,0.286,0.205,0.362
-Naive,Chronos-2,0.02,0.0,0.05,-1.87,-2.256,-1.52
-Naive,TiRex,0.01,0.0,0.04,-1.608,-1.963,-1.301
-Naive,TimesFM-2.5,0.01,0.0,0.03,-1.611,-1.972,-1.293
-Naive,Toto-1.0,0.03,0.0,0.07,-1.53,-1.877,-1.224
-Naive,TabPFN-TS,0.03,0.0,0.07,-1.568,-1.912,-1.254
-Naive,Moirai-2.0,0.05,0.01,0.1,-1.478,-1.816,-1.178
-Naive,Chronos-Bolt,0.02,0.0,0.05,-1.449,-1.767,-1.16
-Naive,Sundial-Base,0.09,0.04,0.15,-1.224,-1.535,-0.956
-Naive,Stat. Ensemble,0.03,0.0,0.07,-0.779,-0.938,-0.629
-Naive,AutoARIMA,0.09,0.04,0.15,-0.816,-0.997,-0.636
-Naive,AutoETS,0.24,0.16,0.32,-0.063,-0.343,0.186
-Naive,AutoTheta,0.15,0.08,0.22,-0.51,-0.644,-0.383
-Naive,Seasonal Naive,0.315,0.245,0.39,-0.391,-0.54,-0.263
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,0.84,0.77,0.91,0.007,-0.018,0.028
-Drift,Chronos-2,0.02,0.0,0.05,-1.889,-2.297,-1.517
-Drift,TiRex,0.03,0.0,0.07,-1.626,-1.992,-1.31
-Drift,TimesFM-2.5,0.03,0.0,0.07,-1.629,-2.005,-1.301
-Drift,Toto-1.0,0.03,0.0,0.07,-1.547,-1.905,-1.228
-Drift,TabPFN-TS,0.05,0.02,0.1,-1.585,-1.953,-1.257
-Drift,Moirai-2.0,0.05,0.01,0.1,-1.495,-1.849,-1.182
-Drift,Chronos-Bolt,0.02,0.0,0.05,-1.465,-1.797,-1.171
-Drift,Sundial-Base,0.12,0.06,0.19,-1.239,-1.572,-0.95
-Drift,Stat. Ensemble,0.03,0.0,0.07,-0.791,-0.961,-0.632
-Drift,AutoARIMA,0.11,0.05,0.18,-0.828,-1.021,-0.649
-Drift,AutoETS,0.21,0.13,0.29,-0.066,-0.344,0.183
-Drift,AutoTheta,0.21,0.13,0.29,-0.52,-0.664,-0.384
-Drift,Seasonal Naive,0.23,0.14,0.31,-0.401,-0.567,-0.258
-Drift,Naive,0.16,0.09,0.23,-0.007,-0.029,0.018
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/leaderboard_MASE.csv b/tables/leaderboard_MASE.csv
deleted file mode 100644
index 82759f1cb22bcfc699dd12a73e712d2fbc0bbf5c..0000000000000000000000000000000000000000
--- a/tables/leaderboard_MASE.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s,median_inference_time_s,training_corpus_overlap,num_failures
-Chronos-2,88.07142857142857,35.49604819631662,0.0,2.694849328,0.0,0.0
-TiRex,76.89285714285712,30.012261671412087,0.0,1.4030189444999999,0.01,0.0
-TimesFM-2.5,75.07142857142857,30.197590695974842,0.0,16.9308283315,0.1,0.0
-Toto-1.0,66.85714285714285,28.213885409107164,0.0,90.676829282,0.08,0.0
-Moirai-2.0,61.21428571428572,27.25905867510979,0.0,2.5351729785000003,0.28,0.0
-Chronos-Bolt,60.785714285714285,26.51514785224567,0.0,0.9960156920000001,0.0,0.0
-TabPFN-TS,58.67857142857142,27.649834806479856,0.0,305.466367349,0.0,2.0
-Sundial-Base,53.39285714285714,24.746214191232585,0.0,35.620029862500004,0.01,0.0
-Stat. Ensemble,48.535714285714285,15.654207763455553,0.0,690.615290623,0.0,11.0
-AutoARIMA,36.67857142857143,11.239602667684679,0.0,186.7699845295,0.0,10.0
-AutoTheta,34.92857142857142,10.9884701559679,0.0,9.267665384499999,0.0,0.0
-AutoETS,33.25,2.258981670108584,0.0,17.004582018,0.0,3.0
-Seasonal Naive,20.96428571428571,0.0,0.0,2.3247850175,0.0,0.0
-Naive,19.321428571428573,-16.673948793089565,0.0,2.2371214229999996,0.0,0.0
-Drift,15.357142857142856,-18.13920384837251,0.0,2.1929671395000003,0.0,0.0
diff --git a/tables/leaderboard_SQL.csv b/tables/leaderboard_SQL.csv
deleted file mode 100644
index 9bb016ea8213844b4acbd4657ef204940b151880..0000000000000000000000000000000000000000
--- a/tables/leaderboard_SQL.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s,median_inference_time_s,training_corpus_overlap,num_failures
-Chronos-2,91.42857142857143,47.28056105322771,0.0,2.694849328,0.0,0.0
-TiRex,82.67857142857142,42.57610775202675,0.0,1.4030189444999999,0.01,0.0
-TimesFM-2.5,77.57142857142858,42.20062128325953,0.0,16.9308283315,0.1,0.0
-Toto-1.0,70.21428571428571,40.7460359139889,0.0,90.676829282,0.08,0.0
-Chronos-Bolt,64.42857142857143,38.892961600022936,0.0,0.9960156920000001,0.0,0.0
-Moirai-2.0,64.42857142857143,39.332013785815214,0.0,2.5351729785000003,0.28,0.0
-TabPFN-TS,62.96428571428573,39.58671179038912,0.0,305.466367349,0.0,2.0
-Sundial-Base,45.964285714285715,33.42287717226134,0.0,35.620029862500004,0.01,0.0
-Stat. Ensemble,45.53571428571429,20.161731427800046,0.0,690.615290623,0.0,11.0
-AutoARIMA,40.67857142857143,20.561948549632326,0.0,186.7699845295,0.0,10.0
-AutoETS,33.67857142857143,-26.818526760288375,0.0,17.004582018,0.0,3.0
-AutoTheta,27.142857142857142,5.457380397818312,0.0,9.267665384499999,0.0,0.0
-Seasonal Naive,20.178571428571423,0.0,0.0,2.3247850175,0.0,0.0
-Naive,13.821428571428573,-45.398988807164976,0.0,2.2371214229999996,0.0,0.0
-Drift,9.285714285714286,-45.77585379444895,0.0,2.1929671395000003,0.0,0.0
diff --git a/tables/leaderboard_WAPE.csv b/tables/leaderboard_WAPE.csv
deleted file mode 100644
index 2069e9cfb4facd540b3b3e13e850b7873fe03f7e..0000000000000000000000000000000000000000
--- a/tables/leaderboard_WAPE.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s,median_inference_time_s,training_corpus_overlap,num_failures
-Chronos-2,85.92857142857142,39.40980595628945,0.0,2.694849328,0.0,0.0
-TimesFM-2.5,75.28571428571428,33.719263075740194,0.0,16.9308283315,0.1,0.0
-TiRex,75.25000000000001,33.56017122067458,0.0,1.4030189444999999,0.01,0.0
-Toto-1.0,67.64285714285717,31.488756179777678,0.0,90.676829282,0.08,0.0
-TabPFN-TS,64.32142857142857,33.36123166513091,0.0,305.466367349,0.0,2.0
-Moirai-2.0,62.14285714285715,30.651048841637785,0.0,2.5351729785000003,0.28,0.0
-Chronos-Bolt,61.142857142857146,29.770064235526473,0.0,0.9960156920000001,0.0,0.0
-Sundial-Base,51.24999999999999,27.263435775595426,0.0,35.620029862500004,0.01,0.0
-Stat. Ensemble,47.32142857142856,17.693885547849597,0.0,690.615290623,0.0,11.0
-AutoARIMA,34.96428571428571,13.271687847205381,0.0,186.7699845295,0.0,10.0
-AutoETS,34.60714285714286,4.328689341465408,0.0,17.004582018,0.0,3.0
-AutoTheta,32.0,13.794755020224814,0.0,9.267665384499999,0.0,0.0
-Naive,22.749999999999996,-6.11148881462471,0.0,2.2371214229999996,0.0,0.0
-Seasonal Naive,19.249999999999996,0.0,0.0,2.3247850175,0.0,0.0
-Drift,16.142857142857146,-8.604851625817744,0.0,2.1929671395000003,0.0,0.0
diff --git a/tables/leaderboard_WQL.csv b/tables/leaderboard_WQL.csv
deleted file mode 100644
index 07ce2305410c3877eea706cb9e1daa86a192536b..0000000000000000000000000000000000000000
--- a/tables/leaderboard_WQL.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s,median_inference_time_s,training_corpus_overlap,num_failures
-Chronos-2,89.14285714285714,51.51952213752647,0.0,2.694849328,0.0,0.0
-TiRex,80.60714285714286,46.6655039781259,0.0,1.4030189444999999,0.01,0.0
-TimesFM-2.5,78.28571428571429,46.72558173490076,0.0,16.9308283315,0.1,0.0
-Toto-1.0,70.85714285714285,45.00088243993733,0.0,90.676829282,0.08,0.0
-TabPFN-TS,68.10714285714286,45.822378843833036,0.0,305.466367349,0.0,2.0
-Moirai-2.0,66.21428571428571,43.864523387242194,0.0,2.5351729785000003,0.28,0.0
-Chronos-Bolt,64.85714285714286,43.187343947848866,0.0,0.9960156920000001,0.0,0.0
-Sundial-Base,47.035714285714285,37.43731640370259,0.0,35.620029862500004,0.01,0.0
-Stat. Ensemble,44.17857142857143,21.795752415252334,0.0,690.615290623,0.0,11.0
-AutoARIMA,40.10714285714287,23.401617100945593,0.0,186.7699845295,0.0,10.0
-AutoETS,31.392857142857146,-27.026777935471568,0.0,17.004582018,0.0,3.0
-AutoTheta,26.714285714285708,7.846425960422055,0.0,9.267665384499999,0.0,0.0
-Seasonal Naive,19.464285714285708,0.0,0.0,2.3247850175,0.0,0.0
-Naive,13.750000000000002,-39.121433468308894,0.0,2.2371214229999996,0.0,0.0
-Drift,9.285714285714288,-40.05851008470427,0.0,2.1929671395000003,0.0,0.0
diff --git a/tables/mini/leaderboard_MASE.csv b/tables/mini/leaderboard_MASE.csv
deleted file mode 100644
index d68782060dafacb45b6f583bc7c8e847d084dbb9..0000000000000000000000000000000000000000
--- a/tables/mini/leaderboard_MASE.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,88.92857142857142,40.35527520955049,0.0,1.1884657561826923,0.0,0.0
-TiRex,75.0,31.3787871700961,0.0,0.39943635916666664,0.0,0.0
-TimesFM-2.5,73.74999999999999,32.34128407289347,0.0,5.231317789855769,0.05,0.0
-Toto-1.0,72.32142857142857,30.925782737555462,0.0,44.314211595100275,0.05,0.0
-TabPFN-TS,63.57142857142859,35.10126239252123,0.0,176.29508545862691,0.0,0.0
-Moirai-2.0,62.142857142857125,30.06698753539797,0.0,0.4247097227343751,0.3,0.0
-Chronos-Bolt,59.64285714285714,28.430405155187888,0.0,0.4779255196130952,0.0,0.0
-Sundial-Base,58.57142857142858,29.84835021519502,0.0,8.290017479345238,0.0,0.0
-Stat. Ensemble,48.21428571428572,21.102265046417777,0.0,261.7837352532143,0.0,10.0
-AutoARIMA,41.428571428571445,20.38664272330395,0.0,79.5753111749051,0.0,10.0
-AutoTheta,33.214285714285715,14.792523576771243,0.0,5.05998791875,0.0,0.0
-AutoETS,31.785714285714278,2.3088190733359215,0.0,6.365997598583334,0.0,0.0
-Seasonal Naive,14.999999999999996,0.0,0.0,0.7680427387619048,0.0,0.0
-Naive,13.928571428571432,-17.371605733693517,0.0,0.8385289361666667,0.0,0.0
-Drift,12.500000000000004,-17.19495252915997,0.0,0.8343652471666667,0.0,0.0
diff --git a/tables/mini/leaderboard_SQL.csv b/tables/mini/leaderboard_SQL.csv
deleted file mode 100644
index d762ad67358f49a0c2cc5e3d7d2fadf390d33f88..0000000000000000000000000000000000000000
--- a/tables/mini/leaderboard_SQL.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,91.78571428571428,51.11726197861597,0.0,1.1884657561826923,0.0,0.0
-TiRex,80.35714285714286,43.412654839288344,0.0,0.39943635916666664,0.0,0.0
-TimesFM-2.5,74.82142857142857,43.97585098003665,0.0,5.231317789855769,0.05,0.0
-Toto-1.0,74.10714285714286,42.97306853626257,0.0,44.314211595100275,0.05,0.0
-TabPFN-TS,67.14285714285715,46.24923686371321,0.0,176.29508545862691,0.0,0.0
-Moirai-2.0,65.0,41.66951873570546,0.0,0.4247097227343751,0.3,0.0
-Chronos-Bolt,61.42857142857142,40.39825912219498,0.0,0.4779255196130952,0.0,0.0
-Sundial-Base,50.000000000000014,37.623889675747435,0.0,8.290017479345238,0.0,0.0
-Stat. Ensemble,45.714285714285715,27.34922619892346,0.0,261.7837352532143,0.0,10.0
-AutoARIMA,44.28571428571429,30.565231601448495,0.0,79.5753111749051,0.0,10.0
-AutoETS,32.85714285714285,-9.388090977202147,0.0,6.365997598583334,0.0,0.0
-AutoTheta,25.71428571428572,8.46720438230043,0.0,5.05998791875,0.0,0.0
-Seasonal Naive,16.42857142857143,0.0,0.0,0.7680427387619048,0.0,0.0
-Naive,12.85714285714286,-36.92812113307396,0.0,0.8385289361666667,0.0,0.0
-Drift,7.5,-36.00664551250195,0.0,0.8343652471666667,0.0,0.0
diff --git a/tables/mini/leaderboard_WAPE.csv b/tables/mini/leaderboard_WAPE.csv
deleted file mode 100644
index 4b145df858cc3690229cfdddd1a2f88313a865d9..0000000000000000000000000000000000000000
--- a/tables/mini/leaderboard_WAPE.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,84.28571428571428,46.429455786437416,0.0,1.1884657561826923,0.0,0.0
-TimesFM-2.5,73.75,37.92043808590599,0.0,5.231317789855769,0.05,0.0
-Toto-1.0,71.96428571428574,35.778831965851445,0.0,44.314211595100275,0.05,0.0
-TabPFN-TS,71.07142857142856,41.95874727359017,0.0,176.29508545862691,0.0,0.0
-TiRex,68.92857142857143,36.44667253780616,0.0,0.39943635916666664,0.0,0.0
-Moirai-2.0,62.85714285714285,34.00276486111785,0.0,0.4247097227343751,0.3,0.0
-Chronos-Bolt,59.64285714285714,32.04345477073951,0.0,0.4779255196130952,0.0,0.0
-Sundial-Base,52.5,32.56219074595378,0.0,8.290017479345238,0.0,0.0
-Stat. Ensemble,47.142857142857146,25.87488858437059,0.0,261.7837352532143,0.0,10.0
-AutoARIMA,42.5,22.038096719942146,0.0,79.5753111749051,0.0,10.0
-AutoETS,35.71428571428572,11.232208535480337,0.0,6.365997598583334,0.0,0.0
-AutoTheta,30.35714285714285,18.487358814453003,0.0,5.05998791875,0.0,0.0
-Naive,18.928571428571427,-7.338384818262655,0.0,0.8385289361666667,0.0,0.0
-Drift,15.357142857142861,-6.9443177598616845,0.0,0.8343652471666667,0.0,0.0
-Seasonal Naive,14.999999999999996,0.0,0.0,0.7680427387619048,0.0,0.0
diff --git a/tables/mini/leaderboard_WQL.csv b/tables/mini/leaderboard_WQL.csv
deleted file mode 100644
index 93aadcede063b3ed81d35eb51bea2e72318a3086..0000000000000000000000000000000000000000
--- a/tables/mini/leaderboard_WQL.csv
+++ /dev/null
@@ -1,16 +0,0 @@
-model_name,win_rate,skill_score,median_training_time_s_per100,median_inference_time_s_per100,training_corpus_overlap,num_failures
-Chronos-2,88.92857142857142,57.23698538544018,0.0,1.1884657561826923,0.0,0.0
-TiRex,78.21428571428574,49.10426514594376,0.0,0.39943635916666664,0.0,0.0
-TimesFM-2.5,76.60714285714285,50.016127718460055,0.0,5.231317789855769,0.05,0.0
-Toto-1.0,74.10714285714288,48.55676262651899,0.0,44.314211595100275,0.05,0.0
-TabPFN-TS,71.07142857142857,53.494037454973565,0.0,176.29508545862691,0.0,0.0
-Moirai-2.0,66.42857142857143,46.50676316081979,0.0,0.4247097227343751,0.3,0.0
-Chronos-Bolt,61.7857142857143,45.16312334798593,0.0,0.4779255196130952,0.0,0.0
-Sundial-Base,47.85714285714286,41.57117440400828,0.0,8.290017479345238,0.0,0.0
-Stat. Ensemble,47.14285714285714,29.950996586481104,0.0,261.7837352532143,0.0,10.0
-AutoARIMA,47.14285714285714,33.733406325438665,0.0,79.5753111749051,0.0,10.0
-AutoETS,30.35714285714285,-0.6607123551083394,0.0,6.365997598583334,0.0,0.0
-AutoTheta,23.928571428571427,9.363488981349711,0.0,5.05998791875,0.0,0.0
-Seasonal Naive,18.21428571428571,0.0,0.0,0.7680427387619048,0.0,0.0
-Naive,11.428571428571429,-33.75682103916535,0.0,0.8385289361666667,0.0,0.0
-Drift,6.7857142857142865,-32.08602588008633,0.0,0.8343652471666667,0.0,0.0
diff --git a/tables/mini/pairwise_MASE.csv b/tables/mini/pairwise_MASE.csv
deleted file mode 100644
index 0259ee05dcb1b1ada773f2b92f2e49aca76fd387..0000000000000000000000000000000000000000
--- a/tables/mini/pairwise_MASE.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TiRex,0.75,0.55,0.95,0.131,0.053,0.212
-Chronos-2,TimesFM-2.5,0.8,0.6,0.95,0.118,0.039,0.207
-Chronos-2,Toto-1.0,0.7,0.5,0.9,0.137,0.052,0.225
-Chronos-2,TabPFN-TS,0.8,0.649,0.95,0.081,0.012,0.148
-Chronos-2,Moirai-2.0,0.9,0.75,1.0,0.147,0.07,0.228
-Chronos-2,Chronos-Bolt,1.0,1.0,1.0,0.167,0.095,0.241
-Chronos-2,Sundial-Base,0.85,0.7,1.0,0.15,0.066,0.228
-Chronos-2,Stat. Ensemble,0.85,0.7,1.0,0.244,0.156,0.333
-Chronos-2,AutoARIMA,0.95,0.85,1.0,0.251,0.169,0.33
-Chronos-2,AutoTheta,0.95,0.85,1.0,0.3,0.213,0.381
-Chronos-2,AutoETS,0.95,0.85,1.0,0.389,0.257,0.524
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.404,0.32,0.476
-Chronos-2,Naive,1.0,1.0,1.0,0.492,0.389,0.595
-Chronos-2,Drift,0.95,0.85,1.0,0.491,0.387,0.599
-TiRex,Chronos-2,0.25,0.05,0.45,-0.15,-0.269,-0.056
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,TimesFM-2.5,0.55,0.35,0.75,-0.014,-0.062,0.022
-TiRex,Toto-1.0,0.65,0.45,0.85,0.007,-0.025,0.037
-TiRex,TabPFN-TS,0.6,0.4,0.8,-0.057,-0.225,0.074
-TiRex,Moirai-2.0,0.65,0.45,0.85,0.019,-0.006,0.046
-TiRex,Chronos-Bolt,0.85,0.7,1.0,0.041,0.01,0.074
-TiRex,Sundial-Base,0.6,0.4,0.8,0.022,-0.117,0.12
-TiRex,Stat. Ensemble,0.8,0.65,0.95,0.13,0.072,0.208
-TiRex,AutoARIMA,0.8,0.6,0.95,0.138,0.09,0.191
-TiRex,AutoTheta,1.0,1.0,1.0,0.195,0.12,0.277
-TiRex,AutoETS,0.9,0.75,1.0,0.298,0.156,0.442
-TiRex,Seasonal Naive,0.95,0.85,1.0,0.314,0.237,0.395
-TiRex,Naive,0.95,0.85,1.0,0.415,0.317,0.505
-TiRex,Drift,0.95,0.85,1.0,0.414,0.326,0.502
-TimesFM-2.5,Chronos-2,0.2,0.05,0.4,-0.134,-0.261,-0.041
-TimesFM-2.5,TiRex,0.45,0.25,0.65,0.014,-0.022,0.058
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,Toto-1.0,0.475,0.275,0.7,0.02,-0.008,0.053
-TimesFM-2.5,TabPFN-TS,0.6,0.35,0.8,-0.043,-0.219,0.093
-TimesFM-2.5,Moirai-2.0,0.675,0.475,0.85,0.033,-0.006,0.073
-TimesFM-2.5,Chronos-Bolt,0.725,0.525,0.9,0.055,0.011,0.104
-TimesFM-2.5,Sundial-Base,0.75,0.55,0.9,0.036,-0.106,0.138
-TimesFM-2.5,Stat. Ensemble,0.85,0.7,1.0,0.142,0.08,0.218
-TimesFM-2.5,AutoARIMA,0.85,0.7,1.0,0.15,0.096,0.208
-TimesFM-2.5,AutoTheta,0.95,0.85,1.0,0.206,0.122,0.3
-TimesFM-2.5,AutoETS,0.85,0.7,1.0,0.307,0.168,0.445
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.323,0.242,0.409
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.424,0.335,0.513
-TimesFM-2.5,Drift,0.95,0.85,1.0,0.423,0.334,0.508
-Toto-1.0,Chronos-2,0.3,0.1,0.5,-0.158,-0.29,-0.054
-Toto-1.0,TiRex,0.35,0.15,0.55,-0.007,-0.039,0.024
-Toto-1.0,TimesFM-2.5,0.525,0.3,0.725,-0.021,-0.056,0.008
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,TabPFN-TS,0.6,0.4,0.8,-0.064,-0.239,0.077
-Toto-1.0,Moirai-2.0,0.675,0.475,0.85,0.012,-0.023,0.044
-Toto-1.0,Chronos-Bolt,0.675,0.475,0.85,0.035,-0.01,0.085
-Toto-1.0,Sundial-Base,0.6,0.4,0.8,0.015,-0.124,0.125
-Toto-1.0,Stat. Ensemble,0.8,0.6,0.95,0.125,0.057,0.207
-Toto-1.0,AutoARIMA,0.85,0.7,1.0,0.132,0.079,0.187
-Toto-1.0,AutoTheta,0.9,0.75,1.0,0.189,0.104,0.29
-Toto-1.0,AutoETS,0.9,0.75,1.0,0.293,0.148,0.438
-Toto-1.0,Seasonal Naive,1.0,1.0,1.0,0.309,0.226,0.399
-Toto-1.0,Naive,1.0,1.0,1.0,0.411,0.314,0.507
-Toto-1.0,Drift,0.95,0.85,1.0,0.411,0.321,0.501
-TabPFN-TS,Chronos-2,0.2,0.05,0.351,-0.088,-0.174,-0.012
-TabPFN-TS,TiRex,0.4,0.2,0.6,0.054,-0.08,0.184
-TabPFN-TS,TimesFM-2.5,0.4,0.2,0.65,0.041,-0.103,0.179
-TabPFN-TS,Toto-1.0,0.4,0.2,0.6,0.06,-0.083,0.193
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Moirai-2.0,0.65,0.45,0.85,0.072,-0.064,0.201
-TabPFN-TS,Chronos-Bolt,0.55,0.349,0.8,0.093,-0.027,0.214
-TabPFN-TS,Sundial-Base,0.55,0.3,0.75,0.075,-0.054,0.19
-TabPFN-TS,Stat. Ensemble,0.65,0.45,0.85,0.177,0.049,0.304
-TabPFN-TS,AutoARIMA,0.75,0.55,0.9,0.185,0.068,0.296
-TabPFN-TS,AutoTheta,0.8,0.6,0.95,0.238,0.125,0.347
-TabPFN-TS,AutoETS,0.75,0.55,0.95,0.336,0.149,0.489
-TabPFN-TS,Seasonal Naive,0.95,0.85,1.0,0.351,0.263,0.435
-TabPFN-TS,Naive,0.95,0.85,1.0,0.447,0.327,0.56
-TabPFN-TS,Drift,0.9,0.75,1.0,0.446,0.321,0.564
-Moirai-2.0,Chronos-2,0.1,0.0,0.25,-0.172,-0.296,-0.075
-Moirai-2.0,TiRex,0.35,0.15,0.55,-0.019,-0.049,0.006
-Moirai-2.0,TimesFM-2.5,0.325,0.15,0.525,-0.034,-0.078,0.006
-Moirai-2.0,Toto-1.0,0.325,0.15,0.525,-0.012,-0.046,0.023
-Moirai-2.0,TabPFN-TS,0.35,0.15,0.55,-0.078,-0.252,0.06
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Chronos-Bolt,0.55,0.375,0.725,0.023,-0.016,0.067
-Moirai-2.0,Sundial-Base,0.55,0.35,0.75,0.003,-0.129,0.111
-Moirai-2.0,Stat. Ensemble,0.85,0.7,1.0,0.114,0.044,0.201
-Moirai-2.0,AutoARIMA,0.8,0.6,0.95,0.122,0.058,0.186
-Moirai-2.0,AutoTheta,0.9,0.75,1.0,0.179,0.096,0.273
-Moirai-2.0,AutoETS,0.8,0.65,0.95,0.284,0.138,0.433
-Moirai-2.0,Seasonal Naive,0.95,0.85,1.0,0.301,0.218,0.39
-Moirai-2.0,Naive,0.95,0.85,1.0,0.404,0.3,0.498
-Moirai-2.0,Drift,0.9,0.75,1.0,0.403,0.302,0.499
-Chronos-Bolt,Chronos-2,0.0,0.0,0.0,-0.2,-0.317,-0.105
-Chronos-Bolt,TiRex,0.15,0.0,0.3,-0.043,-0.08,-0.01
-Chronos-Bolt,TimesFM-2.5,0.275,0.1,0.475,-0.058,-0.116,-0.011
-Chronos-Bolt,Toto-1.0,0.325,0.15,0.525,-0.036,-0.093,0.01
-Chronos-Bolt,TabPFN-TS,0.45,0.2,0.651,-0.103,-0.273,0.026
-Chronos-Bolt,Moirai-2.0,0.45,0.275,0.625,-0.023,-0.072,0.015
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Sundial-Base,0.5,0.3,0.7,-0.02,-0.16,0.079
-Chronos-Bolt,Stat. Ensemble,0.8,0.65,0.95,0.093,0.041,0.153
-Chronos-Bolt,AutoARIMA,0.8,0.65,0.95,0.101,0.053,0.152
-Chronos-Bolt,AutoTheta,0.95,0.85,1.0,0.16,0.103,0.229
-Chronos-Bolt,AutoETS,0.8,0.65,0.95,0.267,0.12,0.42
-Chronos-Bolt,Seasonal Naive,0.95,0.85,1.0,0.284,0.225,0.352
-Chronos-Bolt,Naive,0.95,0.85,1.0,0.39,0.293,0.482
-Chronos-Bolt,Drift,0.95,0.85,1.0,0.389,0.3,0.484
-Sundial-Base,Chronos-2,0.15,0.0,0.3,-0.176,-0.296,-0.07
-Sundial-Base,TiRex,0.4,0.2,0.6,-0.022,-0.136,0.105
-Sundial-Base,TimesFM-2.5,0.25,0.1,0.45,-0.037,-0.16,0.096
-Sundial-Base,Toto-1.0,0.4,0.2,0.6,-0.016,-0.142,0.11
-Sundial-Base,TabPFN-TS,0.45,0.25,0.7,-0.081,-0.235,0.051
-Sundial-Base,Moirai-2.0,0.45,0.25,0.65,-0.003,-0.125,0.114
-Sundial-Base,Chronos-Bolt,0.5,0.3,0.7,0.02,-0.085,0.138
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Stat. Ensemble,0.65,0.45,0.85,0.111,-0.023,0.246
-Sundial-Base,AutoARIMA,0.65,0.45,0.85,0.119,-0.012,0.256
-Sundial-Base,AutoTheta,0.85,0.7,1.0,0.177,0.08,0.288
-Sundial-Base,AutoETS,0.7,0.5,0.9,0.282,0.087,0.452
-Sundial-Base,Seasonal Naive,0.9,0.75,1.0,0.298,0.209,0.391
-Sundial-Base,Naive,0.95,0.85,1.0,0.402,0.297,0.533
-Sundial-Base,Drift,0.9,0.75,1.0,0.401,0.276,0.545
-Stat. Ensemble,Chronos-2,0.15,0.0,0.3,-0.323,-0.499,-0.185
-Stat. Ensemble,TiRex,0.2,0.05,0.35,-0.15,-0.262,-0.077
-Stat. Ensemble,TimesFM-2.5,0.15,0.0,0.3,-0.166,-0.28,-0.087
-Stat. Ensemble,Toto-1.0,0.2,0.05,0.4,-0.142,-0.261,-0.061
-Stat. Ensemble,TabPFN-TS,0.35,0.15,0.55,-0.216,-0.437,-0.051
-Stat. Ensemble,Moirai-2.0,0.15,0.0,0.3,-0.128,-0.251,-0.046
-Stat. Ensemble,Chronos-Bolt,0.2,0.05,0.35,-0.102,-0.18,-0.043
-Stat. Ensemble,Sundial-Base,0.35,0.15,0.55,-0.125,-0.327,0.022
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoARIMA,0.6,0.4,0.776,0.009,-0.04,0.05
-Stat. Ensemble,AutoTheta,0.85,0.7,1.0,0.074,-0.0,0.155
-Stat. Ensemble,AutoETS,0.8,0.65,0.95,0.192,0.055,0.351
-Stat. Ensemble,Seasonal Naive,0.9,0.775,1.0,0.211,0.122,0.301
-Stat. Ensemble,Naive,0.9,0.75,1.0,0.328,0.221,0.426
-Stat. Ensemble,Drift,0.95,0.85,1.0,0.327,0.232,0.422
-AutoARIMA,Chronos-2,0.05,0.0,0.15,-0.335,-0.493,-0.204
-AutoARIMA,TiRex,0.2,0.05,0.4,-0.16,-0.237,-0.099
-AutoARIMA,TimesFM-2.5,0.15,0.0,0.3,-0.177,-0.263,-0.106
-AutoARIMA,Toto-1.0,0.15,0.0,0.3,-0.153,-0.23,-0.086
-AutoARIMA,TabPFN-TS,0.25,0.1,0.45,-0.227,-0.42,-0.072
-AutoARIMA,Moirai-2.0,0.2,0.05,0.4,-0.138,-0.228,-0.061
-AutoARIMA,Chronos-Bolt,0.2,0.05,0.35,-0.112,-0.179,-0.056
-AutoARIMA,Sundial-Base,0.35,0.15,0.55,-0.135,-0.345,0.012
-AutoARIMA,Stat. Ensemble,0.4,0.224,0.6,-0.009,-0.053,0.039
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoTheta,0.5,0.3,0.7,0.066,-0.014,0.158
-AutoARIMA,AutoETS,0.65,0.45,0.85,0.185,0.034,0.342
-AutoARIMA,Seasonal Naive,0.9,0.775,1.0,0.204,0.115,0.294
-AutoARIMA,Naive,0.9,0.75,1.0,0.322,0.212,0.425
-AutoARIMA,Drift,0.9,0.75,1.0,0.321,0.227,0.417
-AutoTheta,Chronos-2,0.05,0.0,0.15,-0.429,-0.615,-0.27
-AutoTheta,TiRex,0.0,0.0,0.0,-0.242,-0.384,-0.137
-AutoTheta,TimesFM-2.5,0.05,0.0,0.15,-0.259,-0.429,-0.138
-AutoTheta,Toto-1.0,0.1,0.0,0.25,-0.234,-0.409,-0.117
-AutoTheta,TabPFN-TS,0.2,0.05,0.4,-0.313,-0.532,-0.143
-AutoTheta,Moirai-2.0,0.1,0.0,0.25,-0.218,-0.376,-0.106
-AutoTheta,Chronos-Bolt,0.05,0.0,0.15,-0.191,-0.297,-0.115
-AutoTheta,Sundial-Base,0.15,0.0,0.3,-0.215,-0.405,-0.086
-AutoTheta,Stat. Ensemble,0.15,0.0,0.3,-0.08,-0.183,0.0
-AutoTheta,AutoARIMA,0.5,0.3,0.7,-0.07,-0.188,0.013
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,AutoETS,0.55,0.35,0.75,0.128,-0.064,0.315
-AutoTheta,Seasonal Naive,0.95,0.85,1.0,0.148,0.088,0.2
-AutoTheta,Naive,0.95,0.85,1.0,0.274,0.184,0.368
-AutoTheta,Drift,0.85,0.7,1.0,0.273,0.182,0.37
-AutoETS,Chronos-2,0.05,0.0,0.15,-0.638,-1.102,-0.346
-AutoETS,TiRex,0.1,0.0,0.25,-0.424,-0.791,-0.184
-AutoETS,TimesFM-2.5,0.15,0.0,0.3,-0.444,-0.803,-0.203
-AutoETS,Toto-1.0,0.1,0.0,0.25,-0.414,-0.78,-0.173
-AutoETS,TabPFN-TS,0.25,0.05,0.45,-0.505,-0.957,-0.175
-AutoETS,Moirai-2.0,0.2,0.05,0.35,-0.397,-0.764,-0.16
-AutoETS,Chronos-Bolt,0.2,0.05,0.35,-0.365,-0.725,-0.136
-AutoETS,Sundial-Base,0.3,0.1,0.5,-0.393,-0.824,-0.095
-AutoETS,Stat. Ensemble,0.2,0.05,0.35,-0.238,-0.54,-0.059
-AutoETS,AutoARIMA,0.35,0.15,0.55,-0.227,-0.519,-0.035
-AutoETS,AutoTheta,0.45,0.25,0.65,-0.147,-0.46,0.06
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Seasonal Naive,0.7,0.5,0.9,0.023,-0.279,0.233
-AutoETS,Naive,0.7,0.5,0.9,0.168,-0.073,0.351
-AutoETS,Drift,0.7,0.5,0.9,0.166,-0.056,0.342
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-0.677,-0.909,-0.471
-Seasonal Naive,TiRex,0.05,0.0,0.15,-0.457,-0.653,-0.311
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-0.478,-0.692,-0.32
-Seasonal Naive,Toto-1.0,0.0,0.0,0.0,-0.448,-0.665,-0.292
-Seasonal Naive,TabPFN-TS,0.05,0.0,0.15,-0.541,-0.77,-0.357
-Seasonal Naive,Moirai-2.0,0.05,0.0,0.15,-0.43,-0.64,-0.278
-Seasonal Naive,Chronos-Bolt,0.05,0.0,0.15,-0.397,-0.544,-0.29
-Seasonal Naive,Sundial-Base,0.1,0.0,0.25,-0.425,-0.642,-0.265
-Seasonal Naive,Stat. Ensemble,0.1,0.0,0.225,-0.267,-0.431,-0.139
-Seasonal Naive,AutoARIMA,0.1,0.0,0.225,-0.256,-0.417,-0.13
-Seasonal Naive,AutoTheta,0.05,0.0,0.15,-0.174,-0.25,-0.096
-Seasonal Naive,AutoETS,0.3,0.1,0.5,-0.024,-0.304,0.218
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Naive,0.6,0.4,0.775,0.148,0.005,0.284
-Seasonal Naive,Drift,0.65,0.45,0.85,0.147,0.006,0.293
-Naive,Chronos-2,0.0,0.0,0.0,-0.968,-1.469,-0.636
-Naive,TiRex,0.05,0.0,0.15,-0.71,-1.022,-0.464
-Naive,TimesFM-2.5,0.0,0.0,0.0,-0.735,-1.055,-0.504
-Naive,Toto-1.0,0.0,0.0,0.0,-0.699,-1.028,-0.458
-Naive,TabPFN-TS,0.05,0.0,0.15,-0.809,-1.274,-0.485
-Naive,Moirai-2.0,0.05,0.0,0.15,-0.678,-0.994,-0.428
-Naive,Chronos-Bolt,0.05,0.0,0.15,-0.64,-0.931,-0.415
-Naive,Sundial-Base,0.05,0.0,0.15,-0.673,-1.142,-0.422
-Naive,Stat. Ensemble,0.1,0.0,0.25,-0.488,-0.741,-0.284
-Naive,AutoARIMA,0.1,0.0,0.25,-0.474,-0.74,-0.269
-Naive,AutoTheta,0.05,0.0,0.15,-0.377,-0.582,-0.225
-Naive,AutoETS,0.3,0.1,0.5,-0.201,-0.54,0.068
-Naive,Seasonal Naive,0.4,0.225,0.6,-0.174,-0.396,-0.005
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,0.75,0.55,0.9,-0.002,-0.052,0.045
-Drift,Chronos-2,0.05,0.0,0.15,-0.965,-1.493,-0.631
-Drift,TiRex,0.05,0.0,0.15,-0.708,-1.01,-0.484
-Drift,TimesFM-2.5,0.05,0.0,0.15,-0.732,-1.033,-0.5
-Drift,Toto-1.0,0.05,0.0,0.15,-0.697,-1.005,-0.474
-Drift,TabPFN-TS,0.1,0.0,0.25,-0.806,-1.295,-0.473
-Drift,Moirai-2.0,0.1,0.0,0.25,-0.676,-0.994,-0.432
-Drift,Chronos-Bolt,0.05,0.0,0.15,-0.637,-0.937,-0.428
-Drift,Sundial-Base,0.1,0.0,0.25,-0.671,-1.196,-0.381
-Drift,Stat. Ensemble,0.05,0.0,0.15,-0.485,-0.731,-0.303
-Drift,AutoARIMA,0.1,0.0,0.25,-0.472,-0.715,-0.294
-Drift,AutoTheta,0.15,0.0,0.3,-0.375,-0.588,-0.223
-Drift,AutoETS,0.3,0.1,0.5,-0.2,-0.519,0.053
-Drift,Seasonal Naive,0.35,0.15,0.55,-0.172,-0.415,-0.006
-Drift,Naive,0.25,0.1,0.45,0.002,-0.047,0.05
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/mini/pairwise_SQL.csv b/tables/mini/pairwise_SQL.csv
deleted file mode 100644
index f99b84187fdb19a71b16e89ca10e7dfb129610e3..0000000000000000000000000000000000000000
--- a/tables/mini/pairwise_SQL.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TiRex,0.75,0.55,0.95,0.136,0.06,0.217
-Chronos-2,TimesFM-2.5,0.8,0.6,0.95,0.127,0.049,0.215
-Chronos-2,Toto-1.0,0.75,0.55,0.9,0.143,0.056,0.234
-Chronos-2,TabPFN-TS,0.85,0.7,1.0,0.091,0.024,0.158
-Chronos-2,Moirai-2.0,0.95,0.85,1.0,0.162,0.082,0.243
-Chronos-2,Chronos-Bolt,1.0,1.0,1.0,0.18,0.104,0.255
-Chronos-2,Sundial-Base,0.9,0.75,1.0,0.216,0.139,0.287
-Chronos-2,Stat. Ensemble,0.95,0.85,1.0,0.327,0.248,0.403
-Chronos-2,AutoARIMA,0.95,0.85,1.0,0.296,0.22,0.371
-Chronos-2,AutoETS,0.95,0.85,1.0,0.541,0.378,0.703
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.466,0.381,0.543
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.511,0.425,0.58
-Chronos-2,Naive,1.0,1.0,1.0,0.643,0.567,0.719
-Chronos-2,Drift,1.0,1.0,1.0,0.641,0.56,0.72
-TiRex,Chronos-2,0.25,0.05,0.45,-0.158,-0.277,-0.063
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,TimesFM-2.5,0.55,0.35,0.75,-0.01,-0.066,0.03
-TiRex,Toto-1.0,0.65,0.4,0.85,0.008,-0.031,0.042
-TiRex,TabPFN-TS,0.6,0.4,0.8,-0.053,-0.216,0.076
-TiRex,Moirai-2.0,0.75,0.55,0.95,0.03,-0.001,0.062
-TiRex,Chronos-Bolt,0.9,0.75,1.0,0.051,0.02,0.085
-TiRex,Sundial-Base,0.8,0.6,0.95,0.093,-0.028,0.186
-TiRex,Stat. Ensemble,0.95,0.85,1.0,0.221,0.148,0.295
-TiRex,AutoARIMA,0.95,0.85,1.0,0.185,0.141,0.234
-TiRex,AutoETS,0.9,0.75,1.0,0.47,0.277,0.659
-TiRex,AutoTheta,1.0,1.0,1.0,0.382,0.282,0.465
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.434,0.349,0.509
-TiRex,Naive,0.95,0.85,1.0,0.587,0.503,0.656
-TiRex,Drift,1.0,1.0,1.0,0.584,0.501,0.656
-TimesFM-2.5,Chronos-2,0.2,0.05,0.4,-0.146,-0.274,-0.051
-TimesFM-2.5,TiRex,0.45,0.25,0.65,0.01,-0.031,0.062
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,Toto-1.0,0.475,0.275,0.7,0.018,-0.018,0.058
-TimesFM-2.5,TabPFN-TS,0.65,0.4,0.85,-0.042,-0.218,0.092
-TimesFM-2.5,Moirai-2.0,0.625,0.425,0.825,0.04,-0.01,0.096
-TimesFM-2.5,Chronos-Bolt,0.775,0.575,0.95,0.06,0.009,0.121
-TimesFM-2.5,Sundial-Base,0.85,0.7,1.0,0.102,-0.022,0.189
-TimesFM-2.5,Stat. Ensemble,0.85,0.7,1.0,0.229,0.15,0.307
-TimesFM-2.5,AutoARIMA,0.8,0.649,0.95,0.193,0.134,0.252
-TimesFM-2.5,AutoETS,0.9,0.75,1.0,0.476,0.285,0.662
-TimesFM-2.5,AutoTheta,0.95,0.85,1.0,0.388,0.288,0.479
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.44,0.354,0.52
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.591,0.512,0.66
-TimesFM-2.5,Drift,0.95,0.85,1.0,0.588,0.509,0.663
-Toto-1.0,Chronos-2,0.25,0.1,0.45,-0.167,-0.305,-0.06
-Toto-1.0,TiRex,0.35,0.15,0.6,-0.008,-0.044,0.03
-Toto-1.0,TimesFM-2.5,0.525,0.3,0.725,-0.018,-0.061,0.018
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,TabPFN-TS,0.6,0.4,0.8,-0.061,-0.244,0.087
-Toto-1.0,Moirai-2.0,0.675,0.475,0.85,0.022,-0.016,0.061
-Toto-1.0,Chronos-Bolt,0.575,0.35,0.775,0.043,-0.009,0.098
-Toto-1.0,Sundial-Base,0.75,0.55,0.9,0.086,-0.048,0.191
-Toto-1.0,Stat. Ensemble,0.85,0.7,1.0,0.215,0.135,0.297
-Toto-1.0,AutoARIMA,0.85,0.7,1.0,0.179,0.122,0.233
-Toto-1.0,AutoETS,0.95,0.85,1.0,0.466,0.267,0.659
-Toto-1.0,AutoTheta,1.0,1.0,1.0,0.377,0.27,0.474
-Toto-1.0,Seasonal Naive,1.0,1.0,1.0,0.43,0.339,0.517
-Toto-1.0,Naive,1.0,1.0,1.0,0.584,0.501,0.655
-Toto-1.0,Drift,1.0,1.0,1.0,0.581,0.501,0.653
-TabPFN-TS,Chronos-2,0.15,0.0,0.3,-0.1,-0.188,-0.024
-TabPFN-TS,TiRex,0.4,0.2,0.6,0.05,-0.083,0.178
-TabPFN-TS,TimesFM-2.5,0.35,0.15,0.6,0.041,-0.101,0.179
-TabPFN-TS,Toto-1.0,0.4,0.2,0.6,0.057,-0.096,0.196
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Moirai-2.0,0.65,0.45,0.85,0.079,-0.064,0.204
-TabPFN-TS,Chronos-Bolt,0.6,0.4,0.8,0.098,-0.026,0.214
-TabPFN-TS,Sundial-Base,0.7,0.45,0.9,0.138,0.011,0.249
-TabPFN-TS,Stat. Ensemble,0.7,0.5,0.9,0.26,0.135,0.372
-TabPFN-TS,AutoARIMA,0.75,0.55,0.95,0.226,0.114,0.333
-TabPFN-TS,AutoETS,0.75,0.55,0.901,0.499,0.281,0.68
-TabPFN-TS,AutoTheta,0.95,0.85,1.0,0.413,0.306,0.507
-TabPFN-TS,Seasonal Naive,1.0,1.0,1.0,0.462,0.355,0.55
-TabPFN-TS,Naive,1.0,1.0,1.0,0.607,0.512,0.693
-TabPFN-TS,Drift,1.0,1.0,1.0,0.605,0.501,0.696
-Moirai-2.0,Chronos-2,0.05,0.0,0.15,-0.193,-0.321,-0.09
-Moirai-2.0,TiRex,0.25,0.05,0.45,-0.031,-0.066,0.001
-Moirai-2.0,TimesFM-2.5,0.375,0.175,0.575,-0.041,-0.106,0.009
-Moirai-2.0,Toto-1.0,0.325,0.15,0.525,-0.023,-0.065,0.016
-Moirai-2.0,TabPFN-TS,0.35,0.15,0.55,-0.085,-0.256,0.061
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Chronos-Bolt,0.55,0.375,0.725,0.021,-0.019,0.068
-Moirai-2.0,Sundial-Base,0.9,0.75,1.0,0.065,-0.067,0.167
-Moirai-2.0,Stat. Ensemble,0.8,0.6,0.95,0.197,0.115,0.28
-Moirai-2.0,AutoARIMA,0.85,0.7,1.0,0.16,0.099,0.221
-Moirai-2.0,AutoETS,0.85,0.7,1.0,0.456,0.251,0.651
-Moirai-2.0,AutoTheta,0.9,0.75,1.0,0.363,0.256,0.456
-Moirai-2.0,Seasonal Naive,1.0,1.0,1.0,0.417,0.325,0.5
-Moirai-2.0,Naive,0.95,0.85,1.0,0.574,0.481,0.65
-Moirai-2.0,Drift,0.95,0.85,1.0,0.571,0.477,0.649
-Chronos-Bolt,Chronos-2,0.0,0.0,0.0,-0.219,-0.342,-0.117
-Chronos-Bolt,TiRex,0.1,0.0,0.25,-0.053,-0.093,-0.021
-Chronos-Bolt,TimesFM-2.5,0.225,0.05,0.425,-0.064,-0.137,-0.009
-Chronos-Bolt,Toto-1.0,0.425,0.225,0.65,-0.045,-0.108,0.009
-Chronos-Bolt,TabPFN-TS,0.4,0.2,0.6,-0.109,-0.272,0.025
-Chronos-Bolt,Moirai-2.0,0.45,0.275,0.625,-0.022,-0.073,0.019
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Sundial-Base,0.75,0.55,0.95,0.044,-0.092,0.148
-Chronos-Bolt,Stat. Ensemble,0.75,0.55,0.95,0.18,0.111,0.25
-Chronos-Bolt,AutoARIMA,0.85,0.7,1.0,0.142,0.097,0.188
-Chronos-Bolt,AutoETS,0.75,0.55,0.9,0.443,0.237,0.648
-Chronos-Bolt,AutoTheta,0.95,0.85,1.0,0.349,0.248,0.437
-Chronos-Bolt,Seasonal Naive,1.0,1.0,1.0,0.404,0.324,0.474
-Chronos-Bolt,Naive,0.95,0.85,1.0,0.565,0.479,0.636
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.562,0.476,0.639
-Sundial-Base,Chronos-2,0.1,0.0,0.25,-0.276,-0.403,-0.161
-Sundial-Base,TiRex,0.2,0.05,0.4,-0.102,-0.229,0.027
-Sundial-Base,TimesFM-2.5,0.15,0.0,0.3,-0.113,-0.233,0.022
-Sundial-Base,Toto-1.0,0.25,0.1,0.45,-0.094,-0.237,0.046
-Sundial-Base,TabPFN-TS,0.3,0.1,0.55,-0.16,-0.331,-0.011
-Sundial-Base,Moirai-2.0,0.1,0.0,0.25,-0.069,-0.2,0.063
-Sundial-Base,Chronos-Bolt,0.25,0.05,0.45,-0.047,-0.174,0.085
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Stat. Ensemble,0.7,0.5,0.9,0.141,-0.003,0.27
-Sundial-Base,AutoARIMA,0.65,0.45,0.85,0.102,-0.03,0.236
-Sundial-Base,AutoETS,0.75,0.55,0.9,0.42,0.173,0.64
-Sundial-Base,AutoTheta,0.75,0.55,0.9,0.319,0.205,0.422
-Sundial-Base,Seasonal Naive,0.95,0.85,1.0,0.376,0.278,0.468
-Sundial-Base,Naive,0.95,0.85,1.0,0.544,0.446,0.644
-Sundial-Base,Drift,0.9,0.75,1.0,0.541,0.431,0.645
-Stat. Ensemble,Chronos-2,0.05,0.0,0.15,-0.486,-0.675,-0.329
-Stat. Ensemble,TiRex,0.05,0.0,0.15,-0.284,-0.419,-0.174
-Stat. Ensemble,TimesFM-2.5,0.15,0.0,0.3,-0.297,-0.444,-0.177
-Stat. Ensemble,Toto-1.0,0.15,0.0,0.3,-0.274,-0.422,-0.157
-Stat. Ensemble,TabPFN-TS,0.3,0.1,0.5,-0.352,-0.592,-0.156
-Stat. Ensemble,Moirai-2.0,0.2,0.05,0.4,-0.246,-0.388,-0.13
-Stat. Ensemble,Chronos-Bolt,0.25,0.05,0.45,-0.219,-0.333,-0.124
-Stat. Ensemble,Sundial-Base,0.3,0.1,0.5,-0.165,-0.369,0.003
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoARIMA,0.5,0.3,0.7,-0.046,-0.11,0.011
-Stat. Ensemble,AutoETS,0.8,0.65,0.95,0.34,0.109,0.584
-Stat. Ensemble,AutoTheta,0.9,0.75,1.0,0.206,0.119,0.291
-Stat. Ensemble,Seasonal Naive,0.8,0.625,0.95,0.273,0.165,0.37
-Stat. Ensemble,Naive,0.95,0.85,1.0,0.469,0.372,0.556
-Stat. Ensemble,Drift,1.0,1.0,1.0,0.466,0.371,0.555
-AutoARIMA,Chronos-2,0.05,0.0,0.15,-0.42,-0.589,-0.283
-AutoARIMA,TiRex,0.05,0.0,0.15,-0.227,-0.306,-0.164
-AutoARIMA,TimesFM-2.5,0.2,0.05,0.351,-0.239,-0.336,-0.155
-AutoARIMA,Toto-1.0,0.15,0.0,0.3,-0.218,-0.304,-0.139
-AutoARIMA,TabPFN-TS,0.25,0.05,0.45,-0.292,-0.499,-0.129
-AutoARIMA,Moirai-2.0,0.15,0.0,0.3,-0.19,-0.283,-0.109
-AutoARIMA,Chronos-Bolt,0.15,0.0,0.3,-0.165,-0.231,-0.108
-AutoARIMA,Sundial-Base,0.35,0.15,0.55,-0.113,-0.308,0.029
-AutoARIMA,Stat. Ensemble,0.5,0.3,0.7,0.044,-0.011,0.099
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoETS,0.75,0.55,0.95,0.36,0.124,0.595
-AutoARIMA,AutoTheta,0.8,0.6,0.95,0.241,0.139,0.334
-AutoARIMA,Seasonal Naive,0.95,0.875,1.0,0.306,0.199,0.4
-AutoARIMA,Naive,0.95,0.85,1.0,0.493,0.39,0.578
-AutoARIMA,Drift,0.9,0.75,1.0,0.489,0.393,0.574
-AutoETS,Chronos-2,0.05,0.0,0.15,-1.177,-2.364,-0.607
-AutoETS,TiRex,0.1,0.0,0.25,-0.888,-1.935,-0.384
-AutoETS,TimesFM-2.5,0.1,0.0,0.25,-0.908,-1.961,-0.399
-AutoETS,Toto-1.0,0.05,0.0,0.15,-0.874,-1.929,-0.365
-AutoETS,TabPFN-TS,0.25,0.099,0.45,-0.995,-2.122,-0.391
-AutoETS,Moirai-2.0,0.15,0.0,0.3,-0.84,-1.865,-0.335
-AutoETS,Chronos-Bolt,0.25,0.1,0.45,-0.796,-1.839,-0.31
-AutoETS,Sundial-Base,0.25,0.1,0.45,-0.725,-1.781,-0.209
-AutoETS,Stat. Ensemble,0.2,0.05,0.35,-0.515,-1.402,-0.122
-AutoETS,AutoARIMA,0.25,0.05,0.45,-0.564,-1.47,-0.141
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,AutoTheta,0.6,0.4,0.8,-0.216,-0.997,0.152
-AutoETS,Seasonal Naive,0.65,0.45,0.85,-0.094,-0.891,0.27
-AutoETS,Naive,0.8,0.6,0.95,0.178,-0.412,0.473
-AutoETS,Drift,0.9,0.75,1.0,0.171,-0.441,0.461
-AutoTheta,Chronos-2,0.0,0.0,0.0,-0.872,-1.19,-0.615
-AutoTheta,TiRex,0.0,0.0,0.0,-0.618,-0.87,-0.393
-AutoTheta,TimesFM-2.5,0.05,0.0,0.15,-0.634,-0.92,-0.405
-AutoTheta,Toto-1.0,0.0,0.0,0.0,-0.605,-0.903,-0.37
-AutoTheta,TabPFN-TS,0.05,0.0,0.15,-0.703,-1.03,-0.441
-AutoTheta,Moirai-2.0,0.1,0.0,0.25,-0.569,-0.838,-0.344
-AutoTheta,Chronos-Bolt,0.05,0.0,0.15,-0.536,-0.778,-0.33
-AutoTheta,Sundial-Base,0.25,0.1,0.45,-0.467,-0.731,-0.257
-AutoTheta,Stat. Ensemble,0.1,0.0,0.25,-0.26,-0.411,-0.135
-AutoTheta,AutoARIMA,0.2,0.05,0.4,-0.318,-0.501,-0.161
-AutoTheta,AutoETS,0.4,0.2,0.6,0.178,-0.18,0.499
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Seasonal Naive,0.8,0.6,0.95,0.085,-0.091,0.214
-AutoTheta,Naive,0.85,0.7,1.0,0.332,0.212,0.436
-AutoTheta,Drift,0.75,0.55,0.9,0.327,0.202,0.436
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-1.046,-1.382,-0.739
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.767,-1.038,-0.536
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-0.785,-1.083,-0.548
-Seasonal Naive,Toto-1.0,0.0,0.0,0.0,-0.754,-1.07,-0.513
-Seasonal Naive,TabPFN-TS,0.0,0.0,0.0,-0.86,-1.222,-0.549
-Seasonal Naive,Moirai-2.0,0.0,0.0,0.0,-0.714,-1.001,-0.481
-Seasonal Naive,Chronos-Bolt,0.0,0.0,0.0,-0.678,-0.902,-0.479
-Seasonal Naive,Sundial-Base,0.05,0.0,0.15,-0.603,-0.879,-0.386
-Seasonal Naive,Stat. Ensemble,0.2,0.05,0.375,-0.376,-0.587,-0.198
-Seasonal Naive,AutoARIMA,0.05,0.0,0.125,-0.44,-0.667,-0.248
-Seasonal Naive,AutoETS,0.35,0.15,0.55,0.086,-0.371,0.471
-Seasonal Naive,AutoTheta,0.2,0.05,0.4,-0.093,-0.272,0.084
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Naive,0.7,0.525,0.85,0.27,0.133,0.386
-Seasonal Naive,Drift,0.75,0.55,0.9,0.265,0.114,0.397
-Naive,Chronos-2,0.0,0.0,0.0,-1.801,-2.561,-1.309
-Naive,TiRex,0.05,0.0,0.15,-1.42,-1.907,-1.013
-Naive,TimesFM-2.5,0.0,0.0,0.0,-1.444,-1.943,-1.05
-Naive,Toto-1.0,0.0,0.0,0.0,-1.401,-1.895,-1.005
-Naive,TabPFN-TS,0.0,0.0,0.0,-1.547,-2.26,-1.05
-Naive,Moirai-2.0,0.05,0.0,0.15,-1.347,-1.858,-0.926
-Naive,Chronos-Bolt,0.05,0.0,0.15,-1.297,-1.75,-0.918
-Naive,Sundial-Base,0.05,0.0,0.15,-1.195,-1.805,-0.806
-Naive,Stat. Ensemble,0.05,0.0,0.15,-0.885,-1.253,-0.593
-Naive,AutoARIMA,0.05,0.0,0.15,-0.972,-1.372,-0.64
-Naive,AutoETS,0.2,0.05,0.4,-0.217,-0.898,0.292
-Naive,AutoTheta,0.15,0.0,0.3,-0.496,-0.774,-0.269
-Naive,Seasonal Naive,0.3,0.15,0.475,-0.369,-0.629,-0.153
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,0.85,0.7,1.0,-0.007,-0.056,0.035
-Drift,Chronos-2,0.0,0.0,0.0,-1.782,-2.572,-1.273
-Drift,TiRex,0.0,0.0,0.0,-1.403,-1.908,-1.003
-Drift,TimesFM-2.5,0.05,0.0,0.15,-1.428,-1.966,-1.036
-Drift,Toto-1.0,0.0,0.0,0.0,-1.385,-1.884,-1.004
-Drift,TabPFN-TS,0.0,0.0,0.0,-1.53,-2.286,-1.004
-Drift,Moirai-2.0,0.05,0.0,0.15,-1.332,-1.849,-0.913
-Drift,Chronos-Bolt,0.0,0.0,0.0,-1.282,-1.772,-0.909
-Drift,Sundial-Base,0.1,0.0,0.25,-1.18,-1.816,-0.759
-Drift,Stat. Ensemble,0.0,0.0,0.0,-0.872,-1.247,-0.591
-Drift,AutoARIMA,0.1,0.0,0.25,-0.959,-1.348,-0.648
-Drift,AutoETS,0.1,0.0,0.25,-0.206,-0.854,0.306
-Drift,AutoTheta,0.25,0.1,0.45,-0.486,-0.774,-0.253
-Drift,Seasonal Naive,0.25,0.1,0.45,-0.36,-0.657,-0.129
-Drift,Naive,0.15,0.0,0.3,0.007,-0.037,0.053
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/mini/pairwise_WAPE.csv b/tables/mini/pairwise_WAPE.csv
deleted file mode 100644
index 458b5b50b74ae5db9a8772e5e4c1c4a79789b405..0000000000000000000000000000000000000000
--- a/tables/mini/pairwise_WAPE.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TimesFM-2.5,0.65,0.45,0.85,0.137,0.05,0.233
-Chronos-2,Toto-1.0,0.65,0.45,0.85,0.166,0.066,0.268
-Chronos-2,TabPFN-TS,0.75,0.55,0.901,0.077,-0.013,0.171
-Chronos-2,TiRex,0.7,0.5,0.9,0.157,0.058,0.271
-Chronos-2,Moirai-2.0,0.8,0.6,0.95,0.188,0.089,0.289
-Chronos-2,Chronos-Bolt,0.9,0.75,1.0,0.212,0.118,0.303
-Chronos-2,Sundial-Base,0.95,0.8,1.0,0.206,0.107,0.294
-Chronos-2,Stat. Ensemble,0.95,0.85,1.0,0.277,0.174,0.377
-Chronos-2,AutoARIMA,0.85,0.7,1.0,0.313,0.193,0.434
-Chronos-2,AutoETS,0.85,0.7,1.0,0.397,0.241,0.536
-Chronos-2,AutoTheta,0.95,0.85,1.0,0.343,0.226,0.444
-Chronos-2,Naive,0.95,0.85,1.0,0.501,0.379,0.603
-Chronos-2,Drift,0.9,0.75,1.0,0.499,0.377,0.608
-Chronos-2,Seasonal Naive,0.95,0.85,1.0,0.464,0.359,0.555
-TimesFM-2.5,Chronos-2,0.35,0.15,0.55,-0.159,-0.304,-0.053
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,Toto-1.0,0.475,0.275,0.7,0.033,-0.008,0.08
-TimesFM-2.5,TabPFN-TS,0.5,0.25,0.7,-0.07,-0.251,0.076
-TimesFM-2.5,TiRex,0.45,0.25,0.65,0.023,-0.02,0.079
-TimesFM-2.5,Moirai-2.0,0.625,0.4,0.825,0.059,-0.004,0.127
-TimesFM-2.5,Chronos-Bolt,0.775,0.575,0.95,0.086,0.029,0.152
-TimesFM-2.5,Sundial-Base,0.75,0.55,0.9,0.079,-0.074,0.199
-TimesFM-2.5,Stat. Ensemble,0.9,0.75,1.0,0.163,0.091,0.253
-TimesFM-2.5,AutoARIMA,0.85,0.7,1.0,0.204,0.108,0.318
-TimesFM-2.5,AutoETS,0.85,0.7,1.0,0.301,0.158,0.452
-TimesFM-2.5,AutoTheta,0.95,0.85,1.0,0.238,0.142,0.342
-TimesFM-2.5,Naive,0.95,0.85,1.0,0.422,0.313,0.52
-TimesFM-2.5,Drift,0.9,0.75,1.0,0.42,0.319,0.513
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.379,0.274,0.476
-Toto-1.0,Chronos-2,0.35,0.15,0.55,-0.199,-0.366,-0.071
-Toto-1.0,TimesFM-2.5,0.525,0.3,0.725,-0.034,-0.087,0.008
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,TabPFN-TS,0.55,0.35,0.75,-0.106,-0.297,0.055
-Toto-1.0,TiRex,0.55,0.35,0.75,-0.011,-0.046,0.024
-Toto-1.0,Moirai-2.0,0.675,0.475,0.85,0.027,-0.016,0.074
-Toto-1.0,Chronos-Bolt,0.625,0.425,0.825,0.055,-0.005,0.12
-Toto-1.0,Sundial-Base,0.65,0.45,0.85,0.048,-0.117,0.184
-Toto-1.0,Stat. Ensemble,0.7,0.5,0.9,0.134,0.048,0.24
-Toto-1.0,AutoARIMA,0.75,0.55,0.95,0.176,0.075,0.298
-Toto-1.0,AutoETS,0.9,0.75,1.0,0.277,0.122,0.444
-Toto-1.0,AutoTheta,1.0,1.0,1.0,0.212,0.109,0.322
-Toto-1.0,Naive,0.95,0.85,1.0,0.402,0.285,0.506
-Toto-1.0,Drift,0.9,0.75,1.0,0.399,0.295,0.5
-Toto-1.0,Seasonal Naive,0.95,0.85,1.0,0.358,0.245,0.461
-TabPFN-TS,Chronos-2,0.25,0.099,0.45,-0.083,-0.206,0.013
-TabPFN-TS,TimesFM-2.5,0.5,0.3,0.75,0.065,-0.082,0.201
-TabPFN-TS,Toto-1.0,0.45,0.25,0.65,0.096,-0.058,0.229
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,TiRex,0.5,0.3,0.75,0.087,-0.07,0.221
-TabPFN-TS,Moirai-2.0,0.65,0.45,0.85,0.121,-0.022,0.246
-TabPFN-TS,Chronos-Bolt,0.6,0.4,0.801,0.146,0.026,0.259
-TabPFN-TS,Sundial-Base,0.7,0.5,0.9,0.139,0.017,0.248
-TabPFN-TS,Stat. Ensemble,0.75,0.6,0.9,0.217,0.089,0.337
-TabPFN-TS,AutoARIMA,0.8,0.65,0.95,0.256,0.114,0.395
-TabPFN-TS,AutoETS,0.85,0.7,1.0,0.346,0.157,0.502
-TabPFN-TS,AutoTheta,0.95,0.85,1.0,0.288,0.166,0.392
-TabPFN-TS,Naive,1.0,1.0,1.0,0.459,0.336,0.581
-TabPFN-TS,Drift,0.95,0.85,1.0,0.457,0.334,0.579
-TabPFN-TS,Seasonal Naive,1.0,1.0,1.0,0.42,0.325,0.506
-TiRex,Chronos-2,0.3,0.1,0.5,-0.186,-0.372,-0.061
-TiRex,TimesFM-2.5,0.55,0.35,0.75,-0.024,-0.085,0.019
-TiRex,Toto-1.0,0.45,0.25,0.65,0.01,-0.025,0.044
-TiRex,TabPFN-TS,0.5,0.25,0.7,-0.095,-0.283,0.065
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,Moirai-2.0,0.55,0.35,0.75,0.037,-0.006,0.1
-TiRex,Chronos-Bolt,0.7,0.5,0.9,0.065,0.005,0.127
-TiRex,Sundial-Base,0.55,0.35,0.75,0.058,-0.113,0.2
-TiRex,Stat. Ensemble,0.8,0.6,0.95,0.143,0.068,0.24
-TiRex,AutoARIMA,0.75,0.55,0.95,0.185,0.09,0.304
-TiRex,AutoETS,0.8,0.6,0.95,0.284,0.128,0.449
-TiRex,AutoTheta,0.95,0.85,1.0,0.22,0.123,0.325
-TiRex,Naive,0.9,0.75,1.0,0.408,0.283,0.514
-TiRex,Drift,0.9,0.75,1.0,0.406,0.297,0.506
-TiRex,Seasonal Naive,0.95,0.85,1.0,0.364,0.252,0.462
-Moirai-2.0,Chronos-2,0.2,0.05,0.4,-0.232,-0.406,-0.098
-Moirai-2.0,TimesFM-2.5,0.375,0.175,0.6,-0.063,-0.146,0.004
-Moirai-2.0,Toto-1.0,0.325,0.15,0.525,-0.028,-0.079,0.016
-Moirai-2.0,TabPFN-TS,0.35,0.15,0.55,-0.137,-0.325,0.021
-Moirai-2.0,TiRex,0.45,0.25,0.65,-0.038,-0.111,0.006
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Chronos-Bolt,0.55,0.375,0.725,0.029,-0.025,0.087
-Moirai-2.0,Sundial-Base,0.55,0.35,0.75,0.021,-0.14,0.15
-Moirai-2.0,Stat. Ensemble,0.8,0.6,0.95,0.11,0.007,0.226
-Moirai-2.0,AutoARIMA,0.8,0.6,0.95,0.153,0.023,0.293
-Moirai-2.0,AutoETS,0.8,0.6,0.95,0.257,0.088,0.427
-Moirai-2.0,AutoTheta,0.9,0.75,1.0,0.19,0.096,0.301
-Moirai-2.0,Naive,0.9,0.75,1.0,0.385,0.269,0.494
-Moirai-2.0,Drift,0.85,0.65,1.0,0.383,0.267,0.491
-Moirai-2.0,Seasonal Naive,0.95,0.85,1.0,0.34,0.237,0.445
-Chronos-Bolt,Chronos-2,0.1,0.0,0.25,-0.269,-0.434,-0.134
-Chronos-Bolt,TimesFM-2.5,0.225,0.05,0.425,-0.095,-0.179,-0.03
-Chronos-Bolt,Toto-1.0,0.375,0.175,0.575,-0.058,-0.136,0.005
-Chronos-Bolt,TabPFN-TS,0.4,0.199,0.6,-0.171,-0.349,-0.026
-Chronos-Bolt,TiRex,0.3,0.1,0.5,-0.069,-0.145,-0.005
-Chronos-Bolt,Moirai-2.0,0.45,0.275,0.625,-0.03,-0.095,0.024
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Sundial-Base,0.55,0.35,0.75,-0.008,-0.161,0.112
-Chronos-Bolt,Stat. Ensemble,0.75,0.55,0.95,0.083,0.015,0.164
-Chronos-Bolt,AutoARIMA,0.75,0.55,0.95,0.128,0.006,0.261
-Chronos-Bolt,AutoETS,0.75,0.55,0.95,0.234,0.075,0.406
-Chronos-Bolt,AutoTheta,0.95,0.85,1.0,0.166,0.105,0.235
-Chronos-Bolt,Naive,0.9,0.75,1.0,0.367,0.27,0.462
-Chronos-Bolt,Drift,0.9,0.75,1.0,0.365,0.272,0.465
-Chronos-Bolt,Seasonal Naive,0.95,0.85,1.0,0.32,0.239,0.401
-Sundial-Base,Chronos-2,0.05,0.0,0.2,-0.259,-0.417,-0.119
-Sundial-Base,TimesFM-2.5,0.25,0.1,0.45,-0.086,-0.248,0.069
-Sundial-Base,Toto-1.0,0.35,0.15,0.55,-0.05,-0.225,0.105
-Sundial-Base,TabPFN-TS,0.3,0.1,0.5,-0.162,-0.33,-0.017
-Sundial-Base,TiRex,0.45,0.25,0.65,-0.061,-0.249,0.101
-Sundial-Base,Moirai-2.0,0.45,0.25,0.65,-0.022,-0.177,0.122
-Sundial-Base,Chronos-Bolt,0.45,0.25,0.65,0.008,-0.126,0.139
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Stat. Ensemble,0.55,0.35,0.75,0.09,-0.072,0.252
-Sundial-Base,AutoARIMA,0.65,0.45,0.85,0.135,-0.037,0.297
-Sundial-Base,AutoETS,0.55,0.35,0.75,0.24,0.014,0.431
-Sundial-Base,AutoTheta,0.75,0.55,0.95,0.173,0.043,0.303
-Sundial-Base,Naive,0.85,0.7,1.0,0.372,0.23,0.522
-Sundial-Base,Drift,0.8,0.6,0.95,0.369,0.212,0.532
-Sundial-Base,Seasonal Naive,0.9,0.75,1.0,0.326,0.226,0.43
-Stat. Ensemble,Chronos-2,0.05,0.0,0.15,-0.384,-0.606,-0.211
-Stat. Ensemble,TimesFM-2.5,0.1,0.0,0.25,-0.194,-0.339,-0.1
-Stat. Ensemble,Toto-1.0,0.3,0.1,0.5,-0.154,-0.316,-0.05
-Stat. Ensemble,TabPFN-TS,0.25,0.1,0.4,-0.277,-0.508,-0.097
-Stat. Ensemble,TiRex,0.2,0.05,0.4,-0.166,-0.316,-0.073
-Stat. Ensemble,Moirai-2.0,0.2,0.05,0.4,-0.123,-0.292,-0.007
-Stat. Ensemble,Chronos-Bolt,0.25,0.05,0.45,-0.091,-0.196,-0.015
-Stat. Ensemble,Sundial-Base,0.45,0.25,0.65,-0.099,-0.336,0.067
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoARIMA,0.6,0.4,0.8,0.049,-0.048,0.165
-Stat. Ensemble,AutoETS,0.7,0.5,0.9,0.165,0.022,0.341
-Stat. Ensemble,AutoTheta,0.85,0.65,1.0,0.091,0.006,0.177
-Stat. Ensemble,Naive,0.85,0.7,1.0,0.309,0.183,0.42
-Stat. Ensemble,Drift,0.9,0.75,1.0,0.307,0.199,0.408
-Stat. Ensemble,Seasonal Naive,0.9,0.775,1.0,0.259,0.152,0.355
-AutoARIMA,Chronos-2,0.15,0.0,0.3,-0.455,-0.767,-0.239
-AutoARIMA,TimesFM-2.5,0.15,0.0,0.3,-0.256,-0.466,-0.121
-AutoARIMA,Toto-1.0,0.25,0.05,0.45,-0.214,-0.425,-0.081
-AutoARIMA,TabPFN-TS,0.2,0.05,0.35,-0.343,-0.653,-0.129
-AutoARIMA,TiRex,0.25,0.05,0.45,-0.227,-0.436,-0.099
-AutoARIMA,Moirai-2.0,0.2,0.05,0.4,-0.181,-0.414,-0.024
-AutoARIMA,Chronos-Bolt,0.25,0.05,0.45,-0.147,-0.354,-0.006
-AutoARIMA,Sundial-Base,0.35,0.15,0.55,-0.156,-0.422,0.035
-AutoARIMA,Stat. Ensemble,0.4,0.2,0.6,-0.052,-0.198,0.045
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoETS,0.65,0.45,0.85,0.122,-0.095,0.307
-AutoARIMA,AutoTheta,0.6,0.4,0.8,0.044,-0.151,0.191
-AutoARIMA,Naive,0.8,0.6,0.95,0.274,0.07,0.418
-AutoARIMA,Drift,0.85,0.65,1.0,0.271,0.094,0.405
-AutoARIMA,Seasonal Naive,0.85,0.7,0.975,0.22,0.099,0.335
-AutoETS,Chronos-2,0.15,0.0,0.3,-0.657,-1.155,-0.318
-AutoETS,TimesFM-2.5,0.15,0.0,0.3,-0.43,-0.826,-0.188
-AutoETS,Toto-1.0,0.1,0.0,0.25,-0.382,-0.8,-0.138
-AutoETS,TabPFN-TS,0.15,0.0,0.3,-0.529,-1.008,-0.186
-AutoETS,TiRex,0.2,0.05,0.4,-0.397,-0.815,-0.147
-AutoETS,Moirai-2.0,0.2,0.05,0.4,-0.345,-0.746,-0.096
-AutoETS,Chronos-Bolt,0.25,0.05,0.45,-0.306,-0.685,-0.082
-AutoETS,Sundial-Base,0.45,0.25,0.65,-0.316,-0.757,-0.014
-AutoETS,Stat. Ensemble,0.3,0.1,0.5,-0.198,-0.518,-0.022
-AutoETS,AutoARIMA,0.35,0.15,0.55,-0.139,-0.443,0.087
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,AutoTheta,0.55,0.3,0.75,-0.089,-0.429,0.126
-AutoETS,Naive,0.65,0.45,0.85,0.173,-0.101,0.36
-AutoETS,Drift,0.8,0.6,0.95,0.17,-0.077,0.35
-AutoETS,Seasonal Naive,0.7,0.5,0.85,0.112,-0.185,0.312
-AutoTheta,Chronos-2,0.05,0.0,0.15,-0.522,-0.799,-0.292
-AutoTheta,TimesFM-2.5,0.05,0.0,0.15,-0.313,-0.52,-0.165
-AutoTheta,Toto-1.0,0.0,0.0,0.0,-0.269,-0.476,-0.123
-AutoTheta,TabPFN-TS,0.05,0.0,0.15,-0.404,-0.646,-0.199
-AutoTheta,TiRex,0.05,0.0,0.15,-0.283,-0.482,-0.14
-AutoTheta,Moirai-2.0,0.1,0.0,0.25,-0.235,-0.432,-0.106
-AutoTheta,Chronos-Bolt,0.05,0.0,0.15,-0.199,-0.307,-0.117
-AutoTheta,Sundial-Base,0.25,0.05,0.45,-0.209,-0.434,-0.045
-AutoTheta,Stat. Ensemble,0.15,0.0,0.35,-0.1,-0.215,-0.006
-AutoTheta,AutoARIMA,0.4,0.2,0.6,-0.046,-0.236,0.131
-AutoTheta,AutoETS,0.45,0.25,0.7,0.082,-0.144,0.3
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Naive,0.9,0.75,1.0,0.241,0.134,0.346
-AutoTheta,Drift,0.8,0.6,0.95,0.238,0.135,0.347
-AutoTheta,Seasonal Naive,0.95,0.85,1.0,0.185,0.112,0.262
-Naive,Chronos-2,0.05,0.0,0.15,-1.004,-1.516,-0.611
-Naive,TimesFM-2.5,0.05,0.0,0.15,-0.729,-1.085,-0.455
-Naive,Toto-1.0,0.05,0.0,0.15,-0.671,-1.026,-0.398
-Naive,TabPFN-TS,0.0,0.0,0.0,-0.849,-1.389,-0.506
-Naive,TiRex,0.1,0.0,0.25,-0.689,-1.057,-0.394
-Naive,Moirai-2.0,0.1,0.0,0.25,-0.626,-0.975,-0.368
-Naive,Chronos-Bolt,0.1,0.0,0.25,-0.58,-0.86,-0.37
-Naive,Sundial-Base,0.15,0.0,0.3,-0.592,-1.092,-0.299
-Naive,Stat. Ensemble,0.15,0.0,0.3,-0.448,-0.725,-0.225
-Naive,AutoARIMA,0.2,0.05,0.4,-0.377,-0.719,-0.076
-Naive,AutoETS,0.35,0.15,0.55,-0.209,-0.562,0.092
-Naive,AutoTheta,0.1,0.0,0.25,-0.317,-0.528,-0.155
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,0.8,0.65,0.95,-0.004,-0.072,0.057
-Naive,Seasonal Naive,0.45,0.275,0.625,-0.073,-0.301,0.102
-Drift,Chronos-2,0.1,0.0,0.25,-0.996,-1.554,-0.606
-Drift,TimesFM-2.5,0.1,0.0,0.25,-0.723,-1.054,-0.468
-Drift,Toto-1.0,0.1,0.0,0.25,-0.665,-1.002,-0.419
-Drift,TabPFN-TS,0.05,0.0,0.15,-0.843,-1.376,-0.501
-Drift,TiRex,0.1,0.0,0.25,-0.683,-1.026,-0.423
-Drift,Moirai-2.0,0.15,0.0,0.35,-0.62,-0.963,-0.364
-Drift,Chronos-Bolt,0.1,0.0,0.25,-0.574,-0.869,-0.374
-Drift,Sundial-Base,0.2,0.05,0.4,-0.586,-1.136,-0.27
-Drift,Stat. Ensemble,0.1,0.0,0.25,-0.443,-0.69,-0.249
-Drift,AutoARIMA,0.15,0.0,0.35,-0.372,-0.681,-0.104
-Drift,AutoETS,0.2,0.05,0.4,-0.205,-0.539,0.071
-Drift,AutoTheta,0.2,0.05,0.4,-0.312,-0.532,-0.156
-Drift,Naive,0.2,0.05,0.35,0.004,-0.06,0.067
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
-Drift,Seasonal Naive,0.4,0.2,0.6,-0.069,-0.295,0.105
-Seasonal Naive,Chronos-2,0.05,0.0,0.15,-0.867,-1.248,-0.559
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-0.611,-0.907,-0.377
-Seasonal Naive,Toto-1.0,0.05,0.0,0.15,-0.557,-0.855,-0.325
-Seasonal Naive,TabPFN-TS,0.0,0.0,0.0,-0.723,-1.025,-0.481
-Seasonal Naive,TiRex,0.05,0.0,0.15,-0.573,-0.859,-0.336
-Seasonal Naive,Moirai-2.0,0.05,0.0,0.15,-0.515,-0.802,-0.311
-Seasonal Naive,Chronos-Bolt,0.05,0.0,0.15,-0.472,-0.669,-0.315
-Seasonal Naive,Sundial-Base,0.1,0.0,0.25,-0.483,-0.755,-0.292
-Seasonal Naive,Stat. Ensemble,0.1,0.0,0.225,-0.349,-0.551,-0.18
-Seasonal Naive,AutoARIMA,0.15,0.025,0.3,-0.283,-0.504,-0.11
-Seasonal Naive,AutoETS,0.3,0.15,0.5,-0.127,-0.454,0.156
-Seasonal Naive,AutoTheta,0.05,0.0,0.15,-0.227,-0.354,-0.126
-Seasonal Naive,Naive,0.55,0.375,0.725,0.068,-0.113,0.231
-Seasonal Naive,Drift,0.6,0.4,0.8,0.065,-0.118,0.228
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/mini/pairwise_WQL.csv b/tables/mini/pairwise_WQL.csv
deleted file mode 100644
index e50dfe3244abbee87a6b7d6f4cc8cf5036bde361..0000000000000000000000000000000000000000
--- a/tables/mini/pairwise_WQL.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TiRex,0.7,0.5,0.9,0.16,0.056,0.281
-Chronos-2,TimesFM-2.5,0.65,0.45,0.85,0.144,0.056,0.239
-Chronos-2,Toto-1.0,0.65,0.45,0.85,0.169,0.068,0.279
-Chronos-2,TabPFN-TS,0.75,0.55,0.9,0.08,-0.003,0.162
-Chronos-2,Moirai-2.0,0.95,0.85,1.0,0.201,0.1,0.304
-Chronos-2,Chronos-Bolt,0.95,0.85,1.0,0.22,0.125,0.322
-Chronos-2,Sundial-Base,0.95,0.8,1.0,0.268,0.181,0.348
-Chronos-2,AutoARIMA,0.9,0.75,1.0,0.355,0.239,0.479
-Chronos-2,Stat. Ensemble,0.95,0.85,1.0,0.39,0.277,0.503
-Chronos-2,AutoETS,1.0,1.0,1.0,0.563,0.384,0.732
-Chronos-2,AutoTheta,1.0,1.0,1.0,0.528,0.423,0.621
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.572,0.466,0.653
-Chronos-2,Naive,1.0,1.0,1.0,0.68,0.599,0.752
-Chronos-2,Drift,1.0,1.0,1.0,0.676,0.591,0.751
-TiRex,Chronos-2,0.3,0.1,0.5,-0.19,-0.391,-0.06
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,TimesFM-2.5,0.55,0.35,0.75,-0.018,-0.087,0.027
-TiRex,Toto-1.0,0.55,0.349,0.75,0.011,-0.027,0.047
-TiRex,TabPFN-TS,0.55,0.35,0.75,-0.094,-0.278,0.056
-TiRex,Moirai-2.0,0.7,0.5,0.9,0.049,0.006,0.11
-TiRex,Chronos-Bolt,0.85,0.7,1.0,0.072,0.015,0.129
-TiRex,Sundial-Base,0.8,0.6,0.95,0.129,-0.034,0.265
-TiRex,AutoARIMA,0.85,0.7,1.0,0.232,0.148,0.339
-TiRex,Stat. Ensemble,0.85,0.7,1.0,0.273,0.162,0.4
-TiRex,AutoETS,0.95,0.85,1.0,0.482,0.276,0.68
-TiRex,AutoTheta,1.0,1.0,1.0,0.438,0.319,0.55
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.491,0.374,0.588
-TiRex,Naive,1.0,1.0,1.0,0.619,0.524,0.699
-TiRex,Drift,1.0,1.0,1.0,0.615,0.521,0.691
-TimesFM-2.5,Chronos-2,0.35,0.15,0.55,-0.169,-0.315,-0.06
-TimesFM-2.5,TiRex,0.45,0.25,0.65,0.018,-0.028,0.08
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,Toto-1.0,0.475,0.275,0.7,0.028,-0.02,0.08
-TimesFM-2.5,TabPFN-TS,0.6,0.399,0.8,-0.075,-0.25,0.059
-TimesFM-2.5,Moirai-2.0,0.675,0.475,0.85,0.066,-0.001,0.134
-TimesFM-2.5,Chronos-Bolt,0.825,0.65,0.975,0.088,0.032,0.151
-TimesFM-2.5,Sundial-Base,0.85,0.7,1.0,0.145,0.003,0.26
-TimesFM-2.5,AutoARIMA,0.8,0.649,0.95,0.246,0.148,0.36
-TimesFM-2.5,Stat. Ensemble,0.9,0.75,1.0,0.286,0.17,0.408
-TimesFM-2.5,AutoETS,0.9,0.75,1.0,0.492,0.284,0.687
-TimesFM-2.5,AutoTheta,0.95,0.85,1.0,0.449,0.323,0.554
-TimesFM-2.5,Seasonal Naive,1.0,1.0,1.0,0.5,0.386,0.596
-TimesFM-2.5,Naive,1.0,1.0,1.0,0.626,0.541,0.697
-TimesFM-2.5,Drift,0.95,0.85,1.0,0.622,0.534,0.693
-Toto-1.0,Chronos-2,0.35,0.15,0.55,-0.203,-0.388,-0.073
-Toto-1.0,TiRex,0.45,0.25,0.651,-0.011,-0.049,0.026
-Toto-1.0,TimesFM-2.5,0.525,0.3,0.725,-0.029,-0.087,0.02
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,TabPFN-TS,0.55,0.35,0.75,-0.106,-0.302,0.056
-Toto-1.0,Moirai-2.0,0.625,0.4,0.801,0.038,-0.011,0.085
-Toto-1.0,Chronos-Bolt,0.575,0.35,0.775,0.062,-0.004,0.131
-Toto-1.0,Sundial-Base,0.75,0.55,0.9,0.12,-0.043,0.257
-Toto-1.0,AutoARIMA,0.8,0.6,0.95,0.224,0.121,0.342
-Toto-1.0,Stat. Ensemble,0.8,0.6,0.95,0.266,0.138,0.404
-Toto-1.0,AutoETS,0.95,0.85,1.0,0.477,0.258,0.683
-Toto-1.0,AutoTheta,1.0,1.0,1.0,0.432,0.308,0.552
-Toto-1.0,Seasonal Naive,1.0,1.0,1.0,0.486,0.363,0.591
-Toto-1.0,Naive,1.0,1.0,1.0,0.615,0.52,0.694
-Toto-1.0,Drift,1.0,1.0,1.0,0.611,0.516,0.689
-TabPFN-TS,Chronos-2,0.25,0.1,0.45,-0.088,-0.193,0.003
-TabPFN-TS,TiRex,0.45,0.25,0.65,0.086,-0.059,0.218
-TabPFN-TS,TimesFM-2.5,0.4,0.2,0.601,0.07,-0.063,0.2
-TabPFN-TS,Toto-1.0,0.45,0.25,0.65,0.096,-0.059,0.232
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Moirai-2.0,0.65,0.45,0.85,0.131,-0.008,0.256
-TabPFN-TS,Chronos-Bolt,0.65,0.45,0.85,0.152,0.033,0.266
-TabPFN-TS,Sundial-Base,0.8,0.6,0.95,0.204,0.086,0.312
-TabPFN-TS,AutoARIMA,0.75,0.55,0.901,0.298,0.163,0.427
-TabPFN-TS,Stat. Ensemble,0.7,0.5,0.9,0.336,0.202,0.467
-TabPFN-TS,AutoETS,0.85,0.7,1.0,0.528,0.318,0.71
-TabPFN-TS,AutoTheta,1.0,1.0,1.0,0.487,0.381,0.591
-TabPFN-TS,Seasonal Naive,1.0,1.0,1.0,0.535,0.427,0.629
-TabPFN-TS,Naive,1.0,1.0,1.0,0.652,0.568,0.736
-TabPFN-TS,Drift,1.0,1.0,1.0,0.648,0.554,0.736
-Moirai-2.0,Chronos-2,0.05,0.0,0.15,-0.251,-0.437,-0.111
-Moirai-2.0,TiRex,0.3,0.1,0.5,-0.051,-0.124,-0.006
-Moirai-2.0,TimesFM-2.5,0.325,0.15,0.525,-0.07,-0.155,0.001
-Moirai-2.0,Toto-1.0,0.375,0.199,0.6,-0.04,-0.093,0.011
-Moirai-2.0,TabPFN-TS,0.35,0.15,0.55,-0.15,-0.343,0.008
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Chronos-Bolt,0.55,0.375,0.725,0.025,-0.037,0.088
-Moirai-2.0,Sundial-Base,0.9,0.75,1.0,0.084,-0.068,0.209
-Moirai-2.0,AutoARIMA,0.85,0.7,1.0,0.193,0.069,0.319
-Moirai-2.0,Stat. Ensemble,0.8,0.6,0.95,0.236,0.104,0.374
-Moirai-2.0,AutoETS,0.9,0.75,1.0,0.458,0.223,0.665
-Moirai-2.0,AutoTheta,0.95,0.85,1.0,0.41,0.288,0.527
-Moirai-2.0,Seasonal Naive,1.0,1.0,1.0,0.465,0.355,0.565
-Moirai-2.0,Naive,1.0,1.0,1.0,0.6,0.501,0.677
-Moirai-2.0,Drift,0.95,0.85,1.0,0.595,0.489,0.678
-Chronos-Bolt,Chronos-2,0.05,0.0,0.15,-0.282,-0.474,-0.143
-Chronos-Bolt,TiRex,0.15,0.0,0.3,-0.077,-0.148,-0.016
-Chronos-Bolt,TimesFM-2.5,0.175,0.025,0.35,-0.097,-0.178,-0.033
-Chronos-Bolt,Toto-1.0,0.425,0.225,0.65,-0.066,-0.151,0.004
-Chronos-Bolt,TabPFN-TS,0.35,0.15,0.55,-0.179,-0.362,-0.034
-Chronos-Bolt,Moirai-2.0,0.45,0.275,0.625,-0.025,-0.096,0.036
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Sundial-Base,0.7,0.5,0.9,0.061,-0.094,0.187
-Chronos-Bolt,AutoARIMA,0.75,0.55,0.901,0.172,0.067,0.289
-Chronos-Bolt,Stat. Ensemble,0.8,0.65,0.95,0.217,0.103,0.342
-Chronos-Bolt,AutoETS,0.8,0.649,0.95,0.444,0.218,0.665
-Chronos-Bolt,AutoTheta,1.0,1.0,1.0,0.395,0.28,0.512
-Chronos-Bolt,Seasonal Naive,1.0,1.0,1.0,0.452,0.356,0.542
-Chronos-Bolt,Naive,1.0,1.0,1.0,0.59,0.501,0.668
-Chronos-Bolt,Drift,1.0,1.0,1.0,0.585,0.495,0.666
-Sundial-Base,Chronos-2,0.05,0.0,0.2,-0.366,-0.534,-0.221
-Sundial-Base,TiRex,0.2,0.05,0.4,-0.148,-0.361,0.033
-Sundial-Base,TimesFM-2.5,0.15,0.0,0.3,-0.169,-0.351,-0.003
-Sundial-Base,Toto-1.0,0.25,0.1,0.45,-0.136,-0.346,0.041
-Sundial-Base,TabPFN-TS,0.2,0.05,0.4,-0.256,-0.453,-0.094
-Sundial-Base,Moirai-2.0,0.1,0.0,0.25,-0.092,-0.264,0.064
-Sundial-Base,Chronos-Bolt,0.3,0.1,0.5,-0.066,-0.229,0.086
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,AutoARIMA,0.65,0.45,0.85,0.118,-0.062,0.29
-Sundial-Base,Stat. Ensemble,0.6,0.4,0.8,0.166,-0.005,0.329
-Sundial-Base,AutoETS,0.7,0.5,0.9,0.41,0.131,0.645
-Sundial-Base,AutoTheta,0.75,0.55,0.9,0.355,0.224,0.471
-Sundial-Base,Seasonal Naive,0.9,0.75,1.0,0.416,0.303,0.513
-Sundial-Base,Naive,0.95,0.85,1.0,0.563,0.462,0.66
-Sundial-Base,Drift,0.9,0.75,1.0,0.558,0.442,0.666
-AutoARIMA,Chronos-2,0.1,0.0,0.25,-0.55,-0.918,-0.314
-AutoARIMA,TiRex,0.15,0.0,0.3,-0.302,-0.512,-0.173
-AutoARIMA,TimesFM-2.5,0.2,0.05,0.351,-0.326,-0.562,-0.174
-AutoARIMA,Toto-1.0,0.2,0.05,0.4,-0.288,-0.52,-0.138
-AutoARIMA,TabPFN-TS,0.25,0.099,0.45,-0.425,-0.746,-0.194
-AutoARIMA,Moirai-2.0,0.15,0.0,0.3,-0.239,-0.468,-0.075
-AutoARIMA,Chronos-Bolt,0.25,0.099,0.45,-0.208,-0.407,-0.071
-AutoARIMA,Sundial-Base,0.35,0.15,0.55,-0.134,-0.409,0.058
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,Stat. Ensemble,0.55,0.325,0.775,0.054,-0.008,0.118
-AutoARIMA,AutoETS,0.75,0.55,0.95,0.336,0.112,0.584
-AutoARIMA,AutoTheta,0.8,0.6,0.95,0.269,0.156,0.362
-AutoARIMA,Seasonal Naive,0.95,0.875,1.0,0.337,0.206,0.439
-AutoARIMA,Naive,0.95,0.85,1.0,0.505,0.387,0.593
-AutoARIMA,Drift,0.95,0.85,1.0,0.498,0.394,0.581
-Stat. Ensemble,Chronos-2,0.05,0.0,0.15,-0.638,-1.011,-0.383
-Stat. Ensemble,TiRex,0.15,0.0,0.3,-0.376,-0.668,-0.194
-Stat. Ensemble,TimesFM-2.5,0.1,0.0,0.25,-0.401,-0.688,-0.205
-Stat. Ensemble,Toto-1.0,0.2,0.05,0.4,-0.362,-0.677,-0.159
-Stat. Ensemble,TabPFN-TS,0.3,0.1,0.5,-0.506,-0.876,-0.254
-Stat. Ensemble,Moirai-2.0,0.2,0.05,0.4,-0.309,-0.598,-0.115
-Stat. Ensemble,Chronos-Bolt,0.2,0.05,0.35,-0.277,-0.519,-0.115
-Stat. Ensemble,Sundial-Base,0.4,0.2,0.6,-0.199,-0.491,0.005
-Stat. Ensemble,AutoARIMA,0.45,0.225,0.675,-0.057,-0.133,0.008
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoETS,0.8,0.65,0.95,0.309,0.093,0.565
-Stat. Ensemble,AutoTheta,0.95,0.85,1.0,0.227,0.137,0.316
-Stat. Ensemble,Seasonal Naive,0.85,0.7,0.975,0.3,0.19,0.395
-Stat. Ensemble,Naive,0.95,0.85,1.0,0.476,0.373,0.567
-Stat. Ensemble,Drift,1.0,1.0,1.0,0.47,0.374,0.556
-AutoETS,Chronos-2,0.0,0.0,0.0,-1.289,-2.732,-0.624
-AutoETS,TiRex,0.05,0.0,0.15,-0.932,-2.129,-0.381
-AutoETS,TimesFM-2.5,0.1,0.0,0.25,-0.968,-2.195,-0.396
-AutoETS,Toto-1.0,0.05,0.0,0.15,-0.911,-2.157,-0.347
-AutoETS,TabPFN-TS,0.15,0.0,0.3,-1.121,-2.449,-0.466
-AutoETS,Moirai-2.0,0.1,0.0,0.25,-0.844,-1.986,-0.288
-AutoETS,Chronos-Bolt,0.2,0.05,0.351,-0.797,-1.983,-0.279
-AutoETS,Sundial-Base,0.3,0.1,0.5,-0.696,-1.814,-0.151
-AutoETS,AutoARIMA,0.25,0.05,0.45,-0.507,-1.405,-0.126
-AutoETS,Stat. Ensemble,0.2,0.05,0.35,-0.447,-1.3,-0.103
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,AutoTheta,0.55,0.35,0.75,-0.132,-0.873,0.197
-AutoETS,Seasonal Naive,0.6,0.399,0.8,-0.007,-0.774,0.314
-AutoETS,Naive,0.8,0.6,0.95,0.225,-0.349,0.489
-AutoETS,Drift,0.9,0.75,1.0,0.213,-0.358,0.477
-AutoTheta,Chronos-2,0.0,0.0,0.0,-1.12,-1.64,-0.733
-AutoTheta,TiRex,0.0,0.0,0.0,-0.781,-1.224,-0.469
-AutoTheta,TimesFM-2.5,0.05,0.0,0.15,-0.813,-1.244,-0.477
-AutoTheta,Toto-1.0,0.0,0.0,0.0,-0.762,-1.232,-0.445
-AutoTheta,TabPFN-TS,0.0,0.0,0.0,-0.949,-1.445,-0.615
-AutoTheta,Moirai-2.0,0.05,0.0,0.15,-0.694,-1.113,-0.405
-AutoTheta,Chronos-Bolt,0.0,0.0,0.0,-0.653,-1.05,-0.388
-AutoTheta,Sundial-Base,0.25,0.1,0.45,-0.551,-0.891,-0.288
-AutoTheta,AutoARIMA,0.2,0.05,0.4,-0.368,-0.568,-0.185
-AutoTheta,Stat. Ensemble,0.05,0.0,0.15,-0.294,-0.462,-0.159
-AutoTheta,AutoETS,0.45,0.25,0.65,0.116,-0.246,0.466
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Seasonal Naive,0.7,0.5,0.9,0.094,-0.072,0.217
-AutoTheta,Naive,0.85,0.7,1.0,0.322,0.188,0.435
-AutoTheta,Drift,0.75,0.55,0.9,0.314,0.173,0.433
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-1.338,-1.884,-0.874
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.965,-1.426,-0.596
-Seasonal Naive,TimesFM-2.5,0.0,0.0,0.0,-1.001,-1.473,-0.629
-Seasonal Naive,Toto-1.0,0.0,0.0,0.0,-0.944,-1.447,-0.57
-Seasonal Naive,TabPFN-TS,0.0,0.0,0.0,-1.15,-1.695,-0.745
-Seasonal Naive,Moirai-2.0,0.0,0.0,0.0,-0.869,-1.298,-0.551
-Seasonal Naive,Chronos-Bolt,0.0,0.0,0.0,-0.824,-1.184,-0.553
-Seasonal Naive,Sundial-Base,0.1,0.0,0.25,-0.711,-1.051,-0.434
-Seasonal Naive,AutoARIMA,0.05,0.0,0.125,-0.509,-0.784,-0.26
-Seasonal Naive,Stat. Ensemble,0.15,0.025,0.3,-0.428,-0.653,-0.235
-Seasonal Naive,AutoETS,0.4,0.2,0.601,0.007,-0.459,0.436
-Seasonal Naive,AutoTheta,0.3,0.1,0.5,-0.103,-0.277,0.067
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Naive,0.75,0.6,0.9,0.252,0.104,0.375
-Seasonal Naive,Drift,0.8,0.6,0.95,0.243,0.079,0.379
-Naive,Chronos-2,0.0,0.0,0.0,-2.128,-3.026,-1.495
-Naive,TiRex,0.0,0.0,0.0,-1.628,-2.324,-1.101
-Naive,TimesFM-2.5,0.0,0.0,0.0,-1.676,-2.301,-1.181
-Naive,Toto-1.0,0.0,0.0,0.0,-1.6,-2.263,-1.082
-Naive,TabPFN-TS,0.0,0.0,0.0,-1.876,-2.787,-1.317
-Naive,Moirai-2.0,0.0,0.0,0.0,-1.5,-2.099,-1.004
-Naive,Chronos-Bolt,0.0,0.0,0.0,-1.439,-2.013,-1.005
-Naive,Sundial-Base,0.05,0.0,0.15,-1.289,-1.944,-0.858
-Naive,AutoARIMA,0.05,0.0,0.15,-1.018,-1.454,-0.631
-Naive,Stat. Ensemble,0.05,0.0,0.15,-0.909,-1.312,-0.594
-Naive,AutoETS,0.2,0.05,0.4,-0.29,-0.958,0.259
-Naive,AutoTheta,0.15,0.0,0.3,-0.476,-0.769,-0.232
-Naive,Seasonal Naive,0.25,0.1,0.4,-0.338,-0.599,-0.116
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,0.85,0.7,1.0,-0.013,-0.074,0.037
-Drift,Chronos-2,0.0,0.0,0.0,-2.089,-3.018,-1.445
-Drift,TiRex,0.0,0.0,0.0,-1.595,-2.236,-1.088
-Drift,TimesFM-2.5,0.05,0.0,0.15,-1.643,-2.256,-1.147
-Drift,Toto-1.0,0.0,0.0,0.0,-1.568,-2.216,-1.066
-Drift,TabPFN-TS,0.0,0.0,0.0,-1.84,-2.79,-1.244
-Drift,Moirai-2.0,0.05,0.0,0.15,-1.469,-2.108,-0.956
-Drift,Chronos-Bolt,0.0,0.0,0.0,-1.409,-1.99,-0.979
-Drift,Sundial-Base,0.1,0.0,0.25,-1.261,-1.99,-0.791
-Drift,AutoARIMA,0.05,0.0,0.15,-0.993,-1.387,-0.651
-Drift,Stat. Ensemble,0.0,0.0,0.0,-0.886,-1.253,-0.598
-Drift,AutoETS,0.1,0.0,0.25,-0.271,-0.912,0.264
-Drift,AutoTheta,0.25,0.1,0.45,-0.457,-0.763,-0.209
-Drift,Seasonal Naive,0.2,0.05,0.4,-0.321,-0.61,-0.086
-Drift,Naive,0.15,0.0,0.3,0.012,-0.039,0.069
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/pairwise_MASE.csv b/tables/pairwise_MASE.csv
deleted file mode 100644
index 70886f6ef01b27f227b1e22898d2d1917aa13f84..0000000000000000000000000000000000000000
--- a/tables/pairwise_MASE.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TiRex,0.72,0.63,0.81,0.078,0.052,0.108
-Chronos-2,TimesFM-2.5,0.71,0.62,0.79,0.076,0.048,0.103
-Chronos-2,Toto-1.0,0.74,0.65,0.83,0.101,0.073,0.133
-Chronos-2,Moirai-2.0,0.92,0.86,0.97,0.113,0.086,0.141
-Chronos-2,Chronos-Bolt,0.94,0.89,0.98,0.122,0.096,0.15
-Chronos-2,TabPFN-TS,0.85,0.77,0.92,0.108,0.08,0.14
-Chronos-2,Sundial-Base,0.91,0.85,0.96,0.143,0.113,0.172
-Chronos-2,Stat. Ensemble,0.86,0.79,0.93,0.235,0.19,0.277
-Chronos-2,AutoARIMA,0.95,0.9,0.99,0.273,0.23,0.315
-Chronos-2,AutoTheta,0.94,0.89,0.98,0.275,0.236,0.316
-Chronos-2,AutoETS,0.89,0.83,0.95,0.34,0.28,0.401
-Chronos-2,Seasonal Naive,0.98,0.95,1.0,0.355,0.318,0.393
-Chronos-2,Naive,0.98,0.95,1.0,0.447,0.388,0.505
-Chronos-2,Drift,0.94,0.89,0.98,0.454,0.392,0.513
-TiRex,Chronos-2,0.28,0.19,0.37,-0.085,-0.121,-0.055
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,TimesFM-2.5,0.485,0.385,0.585,-0.003,-0.019,0.014
-TiRex,Toto-1.0,0.615,0.52,0.71,0.025,0.003,0.046
-TiRex,Moirai-2.0,0.765,0.685,0.845,0.038,0.021,0.055
-TiRex,Chronos-Bolt,0.765,0.68,0.845,0.048,0.029,0.067
-TiRex,TabPFN-TS,0.69,0.6,0.78,0.033,-0.01,0.074
-TiRex,Sundial-Base,0.805,0.72,0.88,0.07,0.036,0.104
-TiRex,Stat. Ensemble,0.81,0.73,0.89,0.17,0.132,0.21
-TiRex,AutoARIMA,0.9,0.84,0.95,0.211,0.175,0.253
-TiRex,AutoTheta,0.94,0.89,0.98,0.214,0.18,0.249
-TiRex,AutoETS,0.84,0.77,0.91,0.284,0.225,0.345
-TiRex,Seasonal Naive,0.97,0.94,1.0,0.3,0.264,0.339
-TiRex,Naive,0.96,0.92,0.99,0.4,0.344,0.457
-TiRex,Drift,0.94,0.89,0.98,0.408,0.347,0.462
-TimesFM-2.5,Chronos-2,0.29,0.21,0.38,-0.082,-0.115,-0.05
-TimesFM-2.5,TiRex,0.515,0.415,0.615,0.003,-0.014,0.019
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,Toto-1.0,0.57,0.485,0.66,0.028,0.005,0.051
-TimesFM-2.5,Moirai-2.0,0.71,0.625,0.795,0.04,0.021,0.06
-TimesFM-2.5,Chronos-Bolt,0.71,0.625,0.79,0.05,0.029,0.071
-TimesFM-2.5,TabPFN-TS,0.67,0.58,0.77,0.035,-0.011,0.081
-TimesFM-2.5,Sundial-Base,0.805,0.73,0.88,0.072,0.04,0.105
-TimesFM-2.5,Stat. Ensemble,0.79,0.71,0.87,0.172,0.126,0.217
-TimesFM-2.5,AutoARIMA,0.87,0.8,0.93,0.214,0.175,0.257
-TimesFM-2.5,AutoTheta,0.9,0.83,0.95,0.216,0.177,0.255
-TimesFM-2.5,AutoETS,0.84,0.76,0.91,0.286,0.228,0.347
-TimesFM-2.5,Seasonal Naive,0.96,0.92,0.99,0.302,0.267,0.342
-TimesFM-2.5,Naive,0.96,0.92,0.99,0.402,0.341,0.458
-TimesFM-2.5,Drift,0.92,0.86,0.97,0.409,0.345,0.469
-Toto-1.0,Chronos-2,0.26,0.17,0.35,-0.113,-0.154,-0.079
-Toto-1.0,TiRex,0.385,0.29,0.48,-0.026,-0.048,-0.003
-Toto-1.0,TimesFM-2.5,0.43,0.34,0.515,-0.028,-0.054,-0.005
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,Moirai-2.0,0.58,0.49,0.67,0.013,-0.008,0.034
-Toto-1.0,Chronos-Bolt,0.56,0.46,0.645,0.023,-0.005,0.048
-Toto-1.0,TabPFN-TS,0.58,0.49,0.67,0.008,-0.043,0.055
-Toto-1.0,Sundial-Base,0.675,0.585,0.765,0.046,0.007,0.088
-Toto-1.0,Stat. Ensemble,0.73,0.64,0.81,0.149,0.102,0.193
-Toto-1.0,AutoARIMA,0.81,0.73,0.88,0.191,0.149,0.237
-Toto-1.0,AutoTheta,0.82,0.74,0.89,0.194,0.151,0.235
-Toto-1.0,AutoETS,0.79,0.71,0.86,0.266,0.203,0.326
-Toto-1.0,Seasonal Naive,0.91,0.85,0.96,0.282,0.241,0.327
-Toto-1.0,Naive,0.94,0.88,0.98,0.385,0.32,0.442
-Toto-1.0,Drift,0.89,0.82,0.94,0.392,0.328,0.451
-Moirai-2.0,Chronos-2,0.08,0.03,0.14,-0.128,-0.165,-0.094
-Moirai-2.0,TiRex,0.235,0.155,0.315,-0.039,-0.059,-0.021
-Moirai-2.0,TimesFM-2.5,0.29,0.205,0.375,-0.042,-0.064,-0.022
-Moirai-2.0,Toto-1.0,0.42,0.33,0.51,-0.013,-0.036,0.008
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Chronos-Bolt,0.55,0.465,0.64,0.01,-0.012,0.032
-Moirai-2.0,TabPFN-TS,0.52,0.43,0.62,-0.005,-0.054,0.038
-Moirai-2.0,Sundial-Base,0.685,0.595,0.775,0.033,-0.004,0.067
-Moirai-2.0,Stat. Ensemble,0.73,0.64,0.82,0.138,0.09,0.18
-Moirai-2.0,AutoARIMA,0.81,0.73,0.88,0.18,0.138,0.228
-Moirai-2.0,AutoTheta,0.85,0.77,0.91,0.183,0.144,0.223
-Moirai-2.0,AutoETS,0.76,0.67,0.83,0.256,0.192,0.32
-Moirai-2.0,Seasonal Naive,0.87,0.8,0.93,0.273,0.236,0.314
-Moirai-2.0,Naive,0.91,0.85,0.96,0.377,0.316,0.433
-Moirai-2.0,Drift,0.86,0.79,0.92,0.384,0.32,0.441
-Chronos-Bolt,Chronos-2,0.06,0.02,0.11,-0.139,-0.177,-0.106
-Chronos-Bolt,TiRex,0.235,0.155,0.32,-0.05,-0.072,-0.03
-Chronos-Bolt,TimesFM-2.5,0.29,0.21,0.375,-0.053,-0.077,-0.03
-Chronos-Bolt,Toto-1.0,0.44,0.355,0.54,-0.024,-0.051,0.005
-Chronos-Bolt,Moirai-2.0,0.45,0.36,0.535,-0.01,-0.033,0.012
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,TabPFN-TS,0.52,0.42,0.61,-0.016,-0.062,0.025
-Chronos-Bolt,Sundial-Base,0.605,0.51,0.695,0.024,-0.014,0.057
-Chronos-Bolt,Stat. Ensemble,0.7,0.61,0.79,0.129,0.084,0.174
-Chronos-Bolt,AutoARIMA,0.84,0.76,0.9,0.172,0.132,0.215
-Chronos-Bolt,AutoTheta,0.86,0.79,0.92,0.174,0.137,0.212
-Chronos-Bolt,AutoETS,0.77,0.68,0.85,0.248,0.184,0.315
-Chronos-Bolt,Seasonal Naive,0.9,0.84,0.95,0.265,0.226,0.304
-Chronos-Bolt,Naive,0.94,0.89,0.98,0.37,0.315,0.423
-Chronos-Bolt,Drift,0.9,0.83,0.95,0.378,0.319,0.435
-TabPFN-TS,Chronos-2,0.15,0.08,0.23,-0.122,-0.163,-0.087
-TabPFN-TS,TiRex,0.31,0.22,0.4,-0.034,-0.08,0.01
-TabPFN-TS,TimesFM-2.5,0.33,0.23,0.42,-0.036,-0.088,0.011
-TabPFN-TS,Toto-1.0,0.42,0.33,0.51,-0.008,-0.058,0.041
-TabPFN-TS,Moirai-2.0,0.48,0.38,0.57,0.005,-0.039,0.051
-TabPFN-TS,Chronos-Bolt,0.48,0.39,0.58,0.015,-0.026,0.058
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Sundial-Base,0.53,0.43,0.63,0.039,-0.001,0.078
-TabPFN-TS,Stat. Ensemble,0.645,0.545,0.735,0.142,0.089,0.19
-TabPFN-TS,AutoARIMA,0.75,0.67,0.83,0.185,0.133,0.241
-TabPFN-TS,AutoTheta,0.75,0.66,0.83,0.187,0.14,0.235
-TabPFN-TS,AutoETS,0.72,0.63,0.81,0.26,0.183,0.332
-TabPFN-TS,Seasonal Naive,0.91,0.855,0.96,0.276,0.231,0.321
-TabPFN-TS,Naive,0.87,0.8,0.93,0.38,0.318,0.442
-TabPFN-TS,Drift,0.87,0.8,0.94,0.388,0.321,0.45
-Sundial-Base,Chronos-2,0.09,0.04,0.15,-0.167,-0.207,-0.128
-Sundial-Base,TiRex,0.195,0.12,0.28,-0.075,-0.115,-0.037
-Sundial-Base,TimesFM-2.5,0.195,0.12,0.27,-0.078,-0.117,-0.042
-Sundial-Base,Toto-1.0,0.325,0.235,0.415,-0.048,-0.097,-0.007
-Sundial-Base,Moirai-2.0,0.315,0.225,0.405,-0.035,-0.072,0.004
-Sundial-Base,Chronos-Bolt,0.395,0.305,0.49,-0.024,-0.061,0.014
-Sundial-Base,TabPFN-TS,0.47,0.37,0.57,-0.04,-0.085,0.001
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Stat. Ensemble,0.66,0.56,0.76,0.108,0.051,0.16
-Sundial-Base,AutoARIMA,0.76,0.67,0.84,0.152,0.098,0.203
-Sundial-Base,AutoTheta,0.77,0.68,0.85,0.155,0.109,0.199
-Sundial-Base,AutoETS,0.71,0.61,0.8,0.23,0.152,0.3
-Sundial-Base,Seasonal Naive,0.88,0.81,0.94,0.247,0.206,0.288
-Sundial-Base,Naive,0.88,0.8,0.94,0.355,0.289,0.417
-Sundial-Base,Drift,0.83,0.75,0.9,0.363,0.291,0.428
-Stat. Ensemble,Chronos-2,0.14,0.07,0.21,-0.308,-0.383,-0.234
-Stat. Ensemble,TiRex,0.19,0.11,0.27,-0.205,-0.265,-0.152
-Stat. Ensemble,TimesFM-2.5,0.21,0.13,0.29,-0.208,-0.277,-0.144
-Stat. Ensemble,Toto-1.0,0.27,0.19,0.36,-0.175,-0.239,-0.113
-Stat. Ensemble,Moirai-2.0,0.27,0.18,0.36,-0.16,-0.219,-0.099
-Stat. Ensemble,Chronos-Bolt,0.3,0.21,0.39,-0.148,-0.211,-0.091
-Stat. Ensemble,TabPFN-TS,0.355,0.265,0.455,-0.166,-0.235,-0.097
-Stat. Ensemble,Sundial-Base,0.34,0.24,0.44,-0.121,-0.19,-0.054
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoARIMA,0.64,0.545,0.73,0.05,0.02,0.09
-Stat. Ensemble,AutoTheta,0.75,0.67,0.83,0.052,0.025,0.082
-Stat. Ensemble,AutoETS,0.795,0.72,0.87,0.137,0.081,0.194
-Stat. Ensemble,Seasonal Naive,0.795,0.725,0.865,0.157,0.116,0.203
-Stat. Ensemble,Naive,0.85,0.78,0.92,0.277,0.218,0.346
-Stat. Ensemble,Drift,0.89,0.82,0.95,0.286,0.225,0.35
-AutoARIMA,Chronos-2,0.05,0.01,0.1,-0.376,-0.459,-0.298
-AutoARIMA,TiRex,0.1,0.05,0.16,-0.268,-0.339,-0.212
-AutoARIMA,TimesFM-2.5,0.13,0.07,0.2,-0.272,-0.346,-0.212
-AutoARIMA,Toto-1.0,0.19,0.12,0.27,-0.236,-0.311,-0.175
-AutoARIMA,Moirai-2.0,0.19,0.12,0.27,-0.22,-0.295,-0.16
-AutoARIMA,Chronos-Bolt,0.16,0.1,0.24,-0.208,-0.274,-0.152
-AutoARIMA,TabPFN-TS,0.25,0.17,0.33,-0.227,-0.317,-0.153
-AutoARIMA,Sundial-Base,0.24,0.16,0.33,-0.179,-0.254,-0.108
-AutoARIMA,Stat. Ensemble,0.36,0.27,0.455,-0.052,-0.099,-0.02
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoTheta,0.55,0.45,0.64,0.003,-0.039,0.039
-AutoARIMA,AutoETS,0.595,0.5,0.69,0.092,0.024,0.162
-AutoARIMA,Seasonal Naive,0.75,0.665,0.83,0.112,0.068,0.161
-AutoARIMA,Naive,0.77,0.69,0.85,0.239,0.169,0.312
-AutoARIMA,Drift,0.8,0.72,0.87,0.249,0.174,0.324
-AutoTheta,Chronos-2,0.06,0.02,0.11,-0.38,-0.462,-0.308
-AutoTheta,TiRex,0.06,0.02,0.11,-0.272,-0.332,-0.22
-AutoTheta,TimesFM-2.5,0.1,0.05,0.17,-0.275,-0.343,-0.215
-AutoTheta,Toto-1.0,0.18,0.11,0.26,-0.24,-0.307,-0.178
-AutoTheta,Moirai-2.0,0.15,0.09,0.23,-0.224,-0.287,-0.168
-AutoTheta,Chronos-Bolt,0.14,0.08,0.21,-0.211,-0.269,-0.159
-AutoTheta,TabPFN-TS,0.25,0.17,0.34,-0.23,-0.307,-0.163
-AutoTheta,Sundial-Base,0.23,0.15,0.32,-0.183,-0.249,-0.122
-AutoTheta,Stat. Ensemble,0.25,0.17,0.33,-0.055,-0.09,-0.025
-AutoTheta,AutoARIMA,0.45,0.36,0.55,-0.003,-0.041,0.037
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,AutoETS,0.59,0.5,0.69,0.089,0.026,0.155
-AutoTheta,Seasonal Naive,0.78,0.7,0.86,0.11,0.069,0.149
-AutoTheta,Naive,0.83,0.75,0.9,0.237,0.181,0.301
-AutoTheta,Drift,0.82,0.74,0.9,0.247,0.189,0.31
-AutoETS,Chronos-2,0.11,0.05,0.17,-0.515,-0.671,-0.39
-AutoETS,TiRex,0.16,0.09,0.23,-0.397,-0.526,-0.291
-AutoETS,TimesFM-2.5,0.16,0.09,0.24,-0.4,-0.531,-0.295
-AutoETS,Toto-1.0,0.21,0.14,0.29,-0.362,-0.484,-0.254
-AutoETS,Moirai-2.0,0.24,0.17,0.33,-0.344,-0.471,-0.237
-AutoETS,Chronos-Bolt,0.23,0.15,0.32,-0.33,-0.459,-0.225
-AutoETS,TabPFN-TS,0.28,0.19,0.37,-0.351,-0.498,-0.225
-AutoETS,Sundial-Base,0.29,0.2,0.39,-0.299,-0.428,-0.179
-AutoETS,Stat. Ensemble,0.205,0.13,0.28,-0.159,-0.241,-0.088
-AutoETS,AutoARIMA,0.405,0.31,0.5,-0.101,-0.194,-0.024
-AutoETS,AutoTheta,0.41,0.31,0.5,-0.098,-0.183,-0.027
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,Seasonal Naive,0.635,0.54,0.72,0.023,-0.071,0.103
-AutoETS,Naive,0.64,0.55,0.73,0.162,0.086,0.251
-AutoETS,Drift,0.68,0.59,0.77,0.173,0.098,0.258
-Seasonal Naive,Chronos-2,0.02,0.0,0.05,-0.55,-0.648,-0.466
-Seasonal Naive,TiRex,0.03,0.0,0.06,-0.429,-0.512,-0.359
-Seasonal Naive,TimesFM-2.5,0.04,0.01,0.08,-0.433,-0.52,-0.365
-Seasonal Naive,Toto-1.0,0.09,0.04,0.15,-0.393,-0.485,-0.318
-Seasonal Naive,Moirai-2.0,0.13,0.07,0.2,-0.375,-0.458,-0.308
-Seasonal Naive,Chronos-Bolt,0.1,0.05,0.16,-0.361,-0.437,-0.293
-Seasonal Naive,TabPFN-TS,0.09,0.04,0.145,-0.382,-0.472,-0.301
-Seasonal Naive,Sundial-Base,0.12,0.06,0.19,-0.329,-0.405,-0.259
-Seasonal Naive,Stat. Ensemble,0.205,0.135,0.275,-0.186,-0.255,-0.131
-Seasonal Naive,AutoARIMA,0.25,0.17,0.335,-0.127,-0.191,-0.073
-Seasonal Naive,AutoTheta,0.22,0.14,0.3,-0.123,-0.176,-0.074
-Seasonal Naive,AutoETS,0.365,0.28,0.46,-0.023,-0.115,0.067
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Naive,0.575,0.48,0.665,0.143,0.065,0.223
-Seasonal Naive,Drift,0.7,0.6,0.79,0.154,0.067,0.238
-Naive,Chronos-2,0.02,0.0,0.05,-0.809,-1.021,-0.634
-Naive,TiRex,0.04,0.01,0.08,-0.667,-0.842,-0.525
-Naive,TimesFM-2.5,0.04,0.01,0.08,-0.671,-0.844,-0.518
-Naive,Toto-1.0,0.06,0.02,0.12,-0.625,-0.792,-0.471
-Naive,Moirai-2.0,0.09,0.04,0.15,-0.604,-0.764,-0.463
-Naive,Chronos-Bolt,0.06,0.02,0.11,-0.588,-0.733,-0.46
-Naive,TabPFN-TS,0.13,0.07,0.2,-0.613,-0.791,-0.467
-Naive,Sundial-Base,0.12,0.06,0.2,-0.55,-0.716,-0.407
-Naive,Stat. Ensemble,0.15,0.08,0.22,-0.383,-0.529,-0.279
-Naive,AutoARIMA,0.23,0.15,0.31,-0.314,-0.454,-0.204
-Naive,AutoTheta,0.17,0.1,0.25,-0.311,-0.432,-0.222
-Naive,AutoETS,0.36,0.27,0.45,-0.194,-0.336,-0.094
-Naive,Seasonal Naive,0.425,0.335,0.52,-0.167,-0.288,-0.069
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,0.81,0.73,0.89,0.012,-0.012,0.035
-Drift,Chronos-2,0.06,0.02,0.11,-0.832,-1.053,-0.644
-Drift,TiRex,0.06,0.02,0.11,-0.688,-0.859,-0.531
-Drift,TimesFM-2.5,0.08,0.03,0.14,-0.692,-0.883,-0.526
-Drift,Toto-1.0,0.11,0.06,0.18,-0.646,-0.821,-0.487
-Drift,Moirai-2.0,0.14,0.08,0.21,-0.624,-0.789,-0.47
-Drift,Chronos-Bolt,0.1,0.05,0.17,-0.608,-0.77,-0.468
-Drift,TabPFN-TS,0.13,0.06,0.2,-0.633,-0.819,-0.473
-Drift,Sundial-Base,0.17,0.1,0.25,-0.57,-0.747,-0.411
-Drift,Stat. Ensemble,0.11,0.05,0.18,-0.401,-0.539,-0.291
-Drift,AutoARIMA,0.2,0.13,0.28,-0.331,-0.479,-0.21
-Drift,AutoTheta,0.18,0.1,0.26,-0.327,-0.45,-0.233
-Drift,AutoETS,0.32,0.23,0.41,-0.209,-0.347,-0.109
-Drift,Seasonal Naive,0.3,0.21,0.4,-0.181,-0.312,-0.071
-Drift,Naive,0.19,0.11,0.27,-0.013,-0.036,0.012
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/pairwise_SQL.csv b/tables/pairwise_SQL.csv
deleted file mode 100644
index 6730d66be75dd568f6296bcbc07fc32aafe4add8..0000000000000000000000000000000000000000
--- a/tables/pairwise_SQL.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TiRex,0.72,0.63,0.81,0.082,0.056,0.111
-Chronos-2,TimesFM-2.5,0.76,0.67,0.84,0.088,0.059,0.115
-Chronos-2,Toto-1.0,0.78,0.69,0.86,0.11,0.081,0.141
-Chronos-2,Moirai-2.0,0.93,0.88,0.97,0.131,0.103,0.16
-Chronos-2,Chronos-Bolt,0.94,0.89,0.98,0.137,0.11,0.168
-Chronos-2,TabPFN-TS,0.88,0.81,0.94,0.127,0.097,0.159
-Chronos-2,Sundial-Base,0.96,0.92,0.99,0.208,0.18,0.236
-Chronos-2,Stat. Ensemble,0.95,0.9,0.99,0.34,0.288,0.386
-Chronos-2,AutoARIMA,0.96,0.92,0.99,0.336,0.29,0.38
-Chronos-2,AutoETS,0.94,0.89,0.98,0.562,0.466,0.655
-Chronos-2,AutoTheta,0.99,0.97,1.0,0.442,0.387,0.495
-Chronos-2,Seasonal Naive,1.0,1.0,1.0,0.473,0.427,0.521
-Chronos-2,Naive,1.0,1.0,1.0,0.637,0.583,0.684
-Chronos-2,Drift,0.99,0.97,1.0,0.638,0.581,0.687
-TiRex,Chronos-2,0.28,0.19,0.37,-0.089,-0.125,-0.06
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,TimesFM-2.5,0.565,0.465,0.66,0.006,-0.01,0.022
-TiRex,Toto-1.0,0.685,0.595,0.775,0.031,0.009,0.052
-TiRex,Moirai-2.0,0.825,0.75,0.895,0.053,0.036,0.072
-TiRex,Chronos-Bolt,0.835,0.76,0.905,0.06,0.042,0.08
-TiRex,TabPFN-TS,0.72,0.63,0.81,0.049,0.005,0.092
-TiRex,Sundial-Base,0.905,0.85,0.96,0.137,0.107,0.169
-TiRex,Stat. Ensemble,0.92,0.86,0.97,0.281,0.232,0.328
-TiRex,AutoARIMA,0.95,0.9,0.99,0.277,0.237,0.32
-TiRex,AutoETS,0.92,0.86,0.97,0.524,0.417,0.626
-TiRex,AutoTheta,0.99,0.97,1.0,0.393,0.339,0.445
-TiRex,Seasonal Naive,1.0,1.0,1.0,0.426,0.379,0.479
-TiRex,Naive,0.99,0.97,1.0,0.605,0.547,0.653
-TiRex,Drift,0.99,0.97,1.0,0.606,0.545,0.655
-TimesFM-2.5,Chronos-2,0.24,0.16,0.33,-0.096,-0.13,-0.062
-TimesFM-2.5,TiRex,0.435,0.34,0.535,-0.007,-0.023,0.01
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,Toto-1.0,0.56,0.47,0.66,0.025,0.001,0.048
-TimesFM-2.5,Moirai-2.0,0.74,0.66,0.82,0.047,0.026,0.069
-TimesFM-2.5,Chronos-Bolt,0.72,0.635,0.8,0.054,0.033,0.075
-TimesFM-2.5,TabPFN-TS,0.7,0.61,0.79,0.043,-0.005,0.087
-TimesFM-2.5,Sundial-Base,0.925,0.875,0.97,0.132,0.103,0.161
-TimesFM-2.5,Stat. Ensemble,0.84,0.77,0.91,0.276,0.222,0.327
-TimesFM-2.5,AutoARIMA,0.92,0.86,0.97,0.272,0.232,0.319
-TimesFM-2.5,AutoETS,0.87,0.8,0.93,0.521,0.413,0.624
-TimesFM-2.5,AutoTheta,0.96,0.91,0.99,0.389,0.331,0.446
-TimesFM-2.5,Seasonal Naive,0.99,0.97,1.0,0.422,0.375,0.474
-TimesFM-2.5,Naive,0.99,0.97,1.0,0.602,0.543,0.65
-TimesFM-2.5,Drift,0.97,0.93,1.0,0.604,0.542,0.653
-Toto-1.0,Chronos-2,0.22,0.14,0.31,-0.124,-0.164,-0.089
-Toto-1.0,TiRex,0.315,0.225,0.405,-0.032,-0.054,-0.01
-Toto-1.0,TimesFM-2.5,0.44,0.34,0.53,-0.025,-0.051,-0.001
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,Moirai-2.0,0.6,0.51,0.685,0.023,0.002,0.045
-Toto-1.0,Chronos-Bolt,0.57,0.475,0.655,0.03,0.001,0.055
-Toto-1.0,TabPFN-TS,0.57,0.48,0.66,0.019,-0.033,0.07
-Toto-1.0,Sundial-Base,0.825,0.745,0.895,0.11,0.074,0.147
-Toto-1.0,Stat. Ensemble,0.8,0.72,0.87,0.258,0.2,0.309
-Toto-1.0,AutoARIMA,0.86,0.79,0.92,0.254,0.207,0.305
-Toto-1.0,AutoETS,0.83,0.75,0.9,0.51,0.402,0.614
-Toto-1.0,AutoTheta,0.9,0.83,0.95,0.373,0.31,0.431
-Toto-1.0,Seasonal Naive,0.96,0.92,0.99,0.407,0.354,0.465
-Toto-1.0,Naive,0.98,0.95,1.0,0.592,0.532,0.642
-Toto-1.0,Drift,0.96,0.92,0.99,0.594,0.53,0.645
-Moirai-2.0,Chronos-2,0.07,0.03,0.12,-0.151,-0.19,-0.115
-Moirai-2.0,TiRex,0.175,0.105,0.25,-0.056,-0.077,-0.038
-Moirai-2.0,TimesFM-2.5,0.26,0.18,0.34,-0.05,-0.074,-0.027
-Moirai-2.0,Toto-1.0,0.4,0.315,0.49,-0.024,-0.047,-0.002
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Chronos-Bolt,0.54,0.455,0.625,0.007,-0.016,0.029
-Moirai-2.0,TabPFN-TS,0.53,0.44,0.63,-0.004,-0.055,0.042
-Moirai-2.0,Sundial-Base,0.855,0.78,0.92,0.089,0.054,0.123
-Moirai-2.0,Stat. Ensemble,0.79,0.71,0.86,0.24,0.187,0.292
-Moirai-2.0,AutoARIMA,0.87,0.8,0.93,0.236,0.189,0.286
-Moirai-2.0,AutoETS,0.82,0.74,0.89,0.5,0.382,0.609
-Moirai-2.0,AutoTheta,0.88,0.81,0.93,0.358,0.299,0.415
-Moirai-2.0,Seasonal Naive,0.94,0.89,0.98,0.393,0.343,0.448
-Moirai-2.0,Naive,0.95,0.9,0.99,0.583,0.523,0.634
-Moirai-2.0,Drift,0.94,0.88,0.98,0.584,0.519,0.636
-Chronos-Bolt,Chronos-2,0.06,0.02,0.11,-0.159,-0.201,-0.123
-Chronos-Bolt,TiRex,0.165,0.095,0.24,-0.064,-0.088,-0.044
-Chronos-Bolt,TimesFM-2.5,0.28,0.2,0.365,-0.057,-0.081,-0.034
-Chronos-Bolt,Toto-1.0,0.43,0.345,0.525,-0.031,-0.059,-0.001
-Chronos-Bolt,Moirai-2.0,0.46,0.375,0.545,-0.007,-0.03,0.016
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,TabPFN-TS,0.53,0.43,0.63,-0.011,-0.059,0.031
-Chronos-Bolt,Sundial-Base,0.815,0.74,0.89,0.082,0.045,0.116
-Chronos-Bolt,Stat. Ensemble,0.78,0.69,0.85,0.235,0.184,0.284
-Chronos-Bolt,AutoARIMA,0.87,0.8,0.92,0.231,0.188,0.277
-Chronos-Bolt,AutoETS,0.8,0.72,0.87,0.496,0.379,0.605
-Chronos-Bolt,AutoTheta,0.92,0.86,0.97,0.354,0.3,0.409
-Chronos-Bolt,Seasonal Naive,0.96,0.92,0.99,0.389,0.342,0.441
-Chronos-Bolt,Naive,0.98,0.95,1.0,0.58,0.524,0.628
-Chronos-Bolt,Drift,0.97,0.93,1.0,0.581,0.52,0.63
-TabPFN-TS,Chronos-2,0.12,0.06,0.19,-0.146,-0.189,-0.108
-TabPFN-TS,TiRex,0.28,0.19,0.37,-0.052,-0.101,-0.005
-TabPFN-TS,TimesFM-2.5,0.3,0.21,0.39,-0.045,-0.095,0.005
-TabPFN-TS,Toto-1.0,0.43,0.34,0.52,-0.02,-0.076,0.032
-TabPFN-TS,Moirai-2.0,0.47,0.37,0.56,0.004,-0.044,0.052
-TabPFN-TS,Chronos-Bolt,0.47,0.37,0.57,0.011,-0.032,0.055
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Sundial-Base,0.72,0.63,0.8,0.093,0.05,0.135
-TabPFN-TS,Stat. Ensemble,0.735,0.645,0.815,0.243,0.19,0.297
-TabPFN-TS,AutoARIMA,0.81,0.73,0.88,0.239,0.189,0.292
-TabPFN-TS,AutoETS,0.75,0.66,0.83,0.503,0.387,0.611
-TabPFN-TS,AutoTheta,0.89,0.82,0.95,0.361,0.302,0.422
-TabPFN-TS,Seasonal Naive,0.96,0.92,0.99,0.396,0.346,0.447
-TabPFN-TS,Naive,0.96,0.92,0.99,0.584,0.526,0.636
-TabPFN-TS,Drift,0.92,0.86,0.97,0.586,0.521,0.639
-Sundial-Base,Chronos-2,0.04,0.01,0.08,-0.263,-0.309,-0.219
-Sundial-Base,TiRex,0.095,0.04,0.15,-0.159,-0.203,-0.119
-Sundial-Base,TimesFM-2.5,0.075,0.03,0.125,-0.152,-0.191,-0.115
-Sundial-Base,Toto-1.0,0.175,0.105,0.255,-0.124,-0.172,-0.079
-Sundial-Base,Moirai-2.0,0.145,0.08,0.22,-0.097,-0.14,-0.057
-Sundial-Base,Chronos-Bolt,0.185,0.11,0.26,-0.09,-0.132,-0.047
-Sundial-Base,TabPFN-TS,0.28,0.2,0.37,-0.102,-0.155,-0.053
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Stat. Ensemble,0.64,0.55,0.73,0.166,0.096,0.23
-Sundial-Base,AutoARIMA,0.71,0.61,0.79,0.162,0.102,0.22
-Sundial-Base,AutoETS,0.7,0.61,0.78,0.453,0.323,0.576
-Sundial-Base,AutoTheta,0.74,0.65,0.82,0.296,0.226,0.364
-Sundial-Base,Seasonal Naive,0.91,0.85,0.96,0.334,0.281,0.392
-Sundial-Base,Naive,0.9,0.84,0.96,0.542,0.473,0.598
-Sundial-Base,Drift,0.84,0.76,0.91,0.543,0.47,0.602
-Stat. Ensemble,Chronos-2,0.05,0.01,0.1,-0.514,-0.63,-0.404
-Stat. Ensemble,TiRex,0.08,0.03,0.14,-0.39,-0.488,-0.302
-Stat. Ensemble,TimesFM-2.5,0.16,0.09,0.23,-0.381,-0.485,-0.285
-Stat. Ensemble,Toto-1.0,0.2,0.13,0.28,-0.347,-0.448,-0.25
-Stat. Ensemble,Moirai-2.0,0.21,0.14,0.29,-0.316,-0.412,-0.23
-Stat. Ensemble,Chronos-Bolt,0.22,0.15,0.31,-0.307,-0.396,-0.226
-Stat. Ensemble,TabPFN-TS,0.265,0.185,0.355,-0.322,-0.423,-0.234
-Stat. Ensemble,Sundial-Base,0.36,0.27,0.45,-0.199,-0.298,-0.107
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoARIMA,0.51,0.42,0.605,-0.005,-0.049,0.041
-Stat. Ensemble,AutoETS,0.765,0.68,0.845,0.365,0.22,0.501
-Stat. Ensemble,AutoTheta,0.88,0.82,0.94,0.156,0.108,0.208
-Stat. Ensemble,Seasonal Naive,0.795,0.725,0.87,0.202,0.148,0.257
-Stat. Ensemble,Naive,0.93,0.88,0.98,0.451,0.395,0.503
-Stat. Ensemble,Drift,0.95,0.9,0.99,0.452,0.394,0.506
-AutoARIMA,Chronos-2,0.04,0.01,0.08,-0.507,-0.612,-0.409
-AutoARIMA,TiRex,0.05,0.01,0.1,-0.383,-0.47,-0.311
-AutoARIMA,TimesFM-2.5,0.08,0.03,0.14,-0.374,-0.468,-0.301
-AutoARIMA,Toto-1.0,0.14,0.08,0.21,-0.341,-0.439,-0.261
-AutoARIMA,Moirai-2.0,0.13,0.07,0.2,-0.309,-0.401,-0.233
-AutoARIMA,Chronos-Bolt,0.13,0.08,0.2,-0.3,-0.383,-0.232
-AutoARIMA,TabPFN-TS,0.19,0.12,0.27,-0.315,-0.412,-0.233
-AutoARIMA,Sundial-Base,0.29,0.21,0.39,-0.193,-0.282,-0.114
-AutoARIMA,Stat. Ensemble,0.49,0.395,0.58,0.005,-0.043,0.047
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoETS,0.695,0.615,0.785,0.359,0.211,0.496
-AutoARIMA,AutoTheta,0.77,0.69,0.85,0.16,0.099,0.216
-AutoARIMA,Seasonal Naive,0.88,0.82,0.935,0.206,0.154,0.263
-AutoARIMA,Naive,0.92,0.86,0.97,0.454,0.388,0.512
-AutoARIMA,Drift,0.89,0.82,0.95,0.455,0.384,0.516
-AutoETS,Chronos-2,0.06,0.02,0.11,-1.285,-1.897,-0.873
-AutoETS,TiRex,0.08,0.03,0.14,-1.102,-1.673,-0.714
-AutoETS,TimesFM-2.5,0.13,0.07,0.2,-1.087,-1.662,-0.703
-AutoETS,Toto-1.0,0.17,0.1,0.25,-1.041,-1.59,-0.672
-AutoETS,Moirai-2.0,0.18,0.11,0.26,-0.999,-1.559,-0.619
-AutoETS,Chronos-Bolt,0.2,0.13,0.28,-0.983,-1.531,-0.609
-AutoETS,TabPFN-TS,0.25,0.17,0.34,-1.011,-1.572,-0.632
-AutoETS,Sundial-Base,0.3,0.22,0.39,-0.828,-1.359,-0.478
-AutoETS,Stat. Ensemble,0.235,0.155,0.32,-0.575,-1.003,-0.282
-AutoETS,AutoARIMA,0.305,0.215,0.385,-0.56,-0.983,-0.268
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,AutoTheta,0.59,0.49,0.69,-0.345,-0.709,-0.081
-AutoETS,Seasonal Naive,0.635,0.545,0.725,-0.268,-0.644,-0.013
-AutoETS,Naive,0.77,0.69,0.85,0.104,-0.173,0.297
-AutoETS,Drift,0.81,0.73,0.88,0.103,-0.161,0.297
-AutoTheta,Chronos-2,0.01,0.0,0.03,-0.793,-0.98,-0.63
-AutoTheta,TiRex,0.01,0.0,0.03,-0.646,-0.803,-0.513
-AutoTheta,TimesFM-2.5,0.04,0.01,0.09,-0.636,-0.805,-0.495
-AutoTheta,Toto-1.0,0.1,0.05,0.17,-0.596,-0.759,-0.449
-AutoTheta,Moirai-2.0,0.12,0.07,0.19,-0.558,-0.711,-0.427
-AutoTheta,Chronos-Bolt,0.08,0.03,0.14,-0.547,-0.691,-0.429
-AutoTheta,TabPFN-TS,0.11,0.05,0.18,-0.565,-0.731,-0.433
-AutoTheta,Sundial-Base,0.26,0.18,0.35,-0.42,-0.572,-0.292
-AutoTheta,Stat. Ensemble,0.12,0.06,0.18,-0.184,-0.263,-0.121
-AutoTheta,AutoARIMA,0.23,0.15,0.31,-0.19,-0.276,-0.11
-AutoTheta,AutoETS,0.41,0.31,0.51,0.257,0.075,0.415
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Seasonal Naive,0.68,0.58,0.77,0.055,-0.038,0.135
-AutoTheta,Naive,0.83,0.75,0.89,0.35,0.293,0.403
-AutoTheta,Drift,0.8,0.71,0.87,0.351,0.288,0.408
-Seasonal Naive,Chronos-2,0.0,0.0,0.0,-0.897,-1.087,-0.745
-Seasonal Naive,TiRex,0.0,0.0,0.0,-0.741,-0.919,-0.611
-Seasonal Naive,TimesFM-2.5,0.01,0.0,0.03,-0.73,-0.902,-0.6
-Seasonal Naive,Toto-1.0,0.04,0.01,0.08,-0.688,-0.867,-0.548
-Seasonal Naive,Moirai-2.0,0.06,0.02,0.11,-0.648,-0.813,-0.522
-Seasonal Naive,Chronos-Bolt,0.04,0.01,0.08,-0.636,-0.788,-0.52
-Seasonal Naive,TabPFN-TS,0.04,0.01,0.08,-0.655,-0.809,-0.529
-Seasonal Naive,Sundial-Base,0.09,0.04,0.15,-0.502,-0.645,-0.39
-Seasonal Naive,Stat. Ensemble,0.205,0.13,0.275,-0.253,-0.347,-0.174
-Seasonal Naive,AutoARIMA,0.12,0.065,0.18,-0.259,-0.356,-0.182
-Seasonal Naive,AutoETS,0.365,0.275,0.455,0.211,0.013,0.392
-Seasonal Naive,AutoTheta,0.32,0.23,0.42,-0.058,-0.156,0.037
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Naive,0.715,0.64,0.785,0.312,0.229,0.386
-Seasonal Naive,Drift,0.82,0.74,0.89,0.314,0.222,0.396
-Naive,Chronos-2,0.0,0.0,0.0,-1.758,-2.16,-1.399
-Naive,TiRex,0.01,0.0,0.03,-1.532,-1.88,-1.209
-Naive,TimesFM-2.5,0.01,0.0,0.03,-1.516,-1.859,-1.189
-Naive,Toto-1.0,0.02,0.0,0.05,-1.454,-1.793,-1.135
-Naive,Moirai-2.0,0.05,0.01,0.1,-1.397,-1.731,-1.095
-Naive,Chronos-Bolt,0.02,0.0,0.05,-1.379,-1.689,-1.099
-Naive,TabPFN-TS,0.04,0.01,0.08,-1.407,-1.747,-1.111
-Naive,Sundial-Base,0.1,0.04,0.16,-1.184,-1.49,-0.898
-Naive,Stat. Ensemble,0.07,0.02,0.12,-0.821,-1.014,-0.653
-Naive,AutoARIMA,0.08,0.03,0.14,-0.83,-1.05,-0.635
-Naive,AutoETS,0.23,0.15,0.31,-0.116,-0.422,0.148
-Naive,AutoTheta,0.17,0.11,0.25,-0.538,-0.676,-0.414
-Naive,Seasonal Naive,0.285,0.215,0.36,-0.454,-0.628,-0.298
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,0.85,0.78,0.92,0.003,-0.02,0.022
-Drift,Chronos-2,0.01,0.0,0.03,-1.765,-2.19,-1.384
-Drift,TiRex,0.01,0.0,0.03,-1.539,-1.898,-1.199
-Drift,TimesFM-2.5,0.03,0.0,0.07,-1.522,-1.883,-1.184
-Drift,Toto-1.0,0.04,0.01,0.08,-1.46,-1.816,-1.126
-Drift,Moirai-2.0,0.06,0.02,0.12,-1.403,-1.749,-1.079
-Drift,Chronos-Bolt,0.03,0.0,0.07,-1.386,-1.705,-1.084
-Drift,TabPFN-TS,0.08,0.03,0.14,-1.413,-1.773,-1.088
-Drift,Sundial-Base,0.16,0.09,0.24,-1.19,-1.513,-0.886
-Drift,Stat. Ensemble,0.05,0.01,0.1,-0.826,-1.023,-0.65
-Drift,AutoARIMA,0.11,0.05,0.18,-0.835,-1.064,-0.623
-Drift,AutoETS,0.19,0.12,0.27,-0.115,-0.423,0.139
-Drift,AutoTheta,0.2,0.13,0.29,-0.542,-0.69,-0.404
-Drift,Seasonal Naive,0.18,0.11,0.26,-0.458,-0.656,-0.285
-Drift,Naive,0.15,0.08,0.22,-0.003,-0.023,0.02
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/pairwise_WAPE.csv b/tables/pairwise_WAPE.csv
deleted file mode 100644
index 901599a21956d305748b11cf1474b027525e8e4c..0000000000000000000000000000000000000000
--- a/tables/pairwise_WAPE.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TimesFM-2.5,0.68,0.59,0.76,0.086,0.054,0.118
-Chronos-2,TiRex,0.73,0.64,0.81,0.088,0.057,0.12
-Chronos-2,Toto-1.0,0.68,0.58,0.76,0.116,0.082,0.153
-Chronos-2,TabPFN-TS,0.82,0.74,0.89,0.091,0.058,0.121
-Chronos-2,Moirai-2.0,0.84,0.76,0.91,0.126,0.096,0.159
-Chronos-2,Chronos-Bolt,0.89,0.82,0.95,0.137,0.105,0.171
-Chronos-2,Sundial-Base,0.93,0.88,0.98,0.167,0.134,0.2
-Chronos-2,Stat. Ensemble,0.91,0.85,0.96,0.264,0.21,0.312
-Chronos-2,AutoARIMA,0.92,0.86,0.97,0.301,0.251,0.35
-Chronos-2,AutoETS,0.88,0.81,0.94,0.367,0.293,0.433
-Chronos-2,AutoTheta,0.94,0.89,0.98,0.297,0.247,0.344
-Chronos-2,Naive,0.93,0.88,0.97,0.429,0.373,0.482
-Chronos-2,Seasonal Naive,0.95,0.9,0.99,0.394,0.349,0.44
-Chronos-2,Drift,0.93,0.88,0.97,0.442,0.383,0.498
-TimesFM-2.5,Chronos-2,0.32,0.24,0.41,-0.094,-0.133,-0.057
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,TiRex,0.485,0.39,0.58,0.002,-0.014,0.02
-TimesFM-2.5,Toto-1.0,0.53,0.445,0.62,0.033,0.006,0.06
-TimesFM-2.5,TabPFN-TS,0.63,0.53,0.72,0.005,-0.04,0.051
-TimesFM-2.5,Moirai-2.0,0.7,0.615,0.78,0.044,0.019,0.069
-TimesFM-2.5,Chronos-Bolt,0.73,0.65,0.81,0.056,0.034,0.079
-TimesFM-2.5,Sundial-Base,0.825,0.75,0.9,0.089,0.052,0.125
-TimesFM-2.5,Stat. Ensemble,0.84,0.76,0.91,0.195,0.146,0.244
-TimesFM-2.5,AutoARIMA,0.91,0.85,0.97,0.236,0.189,0.285
-TimesFM-2.5,AutoETS,0.85,0.78,0.91,0.307,0.237,0.376
-TimesFM-2.5,AutoTheta,0.92,0.86,0.97,0.231,0.186,0.275
-TimesFM-2.5,Naive,0.93,0.87,0.98,0.375,0.321,0.43
-TimesFM-2.5,Seasonal Naive,0.95,0.9,0.99,0.337,0.293,0.386
-TimesFM-2.5,Drift,0.92,0.86,0.97,0.39,0.336,0.445
-TiRex,Chronos-2,0.27,0.19,0.36,-0.097,-0.137,-0.06
-TiRex,TimesFM-2.5,0.515,0.42,0.61,-0.002,-0.02,0.014
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,Toto-1.0,0.625,0.53,0.72,0.03,0.007,0.051
-TiRex,TabPFN-TS,0.65,0.56,0.74,0.003,-0.045,0.052
-TiRex,Moirai-2.0,0.695,0.615,0.79,0.042,0.023,0.065
-TiRex,Chronos-Bolt,0.745,0.66,0.83,0.054,0.032,0.077
-TiRex,Sundial-Base,0.775,0.695,0.85,0.087,0.048,0.126
-TiRex,Stat. Ensemble,0.82,0.73,0.89,0.193,0.146,0.242
-TiRex,AutoARIMA,0.88,0.81,0.94,0.234,0.189,0.282
-TiRex,AutoETS,0.84,0.76,0.91,0.306,0.233,0.374
-TiRex,AutoTheta,0.93,0.88,0.98,0.229,0.187,0.272
-TiRex,Naive,0.93,0.88,0.98,0.374,0.321,0.429
-TiRex,Seasonal Naive,0.95,0.9,0.99,0.336,0.29,0.384
-TiRex,Drift,0.91,0.85,0.96,0.388,0.335,0.443
-Toto-1.0,Chronos-2,0.32,0.24,0.42,-0.131,-0.18,-0.089
-Toto-1.0,TimesFM-2.5,0.47,0.38,0.555,-0.034,-0.064,-0.007
-Toto-1.0,TiRex,0.375,0.28,0.47,-0.031,-0.054,-0.007
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,TabPFN-TS,0.56,0.47,0.65,-0.028,-0.083,0.024
-Toto-1.0,Moirai-2.0,0.6,0.5,0.69,0.012,-0.012,0.036
-Toto-1.0,Chronos-Bolt,0.6,0.505,0.685,0.024,-0.004,0.052
-Toto-1.0,Sundial-Base,0.665,0.575,0.75,0.058,0.011,0.103
-Toto-1.0,Stat. Ensemble,0.69,0.59,0.78,0.168,0.115,0.219
-Toto-1.0,AutoARIMA,0.82,0.74,0.89,0.21,0.157,0.261
-Toto-1.0,AutoETS,0.77,0.68,0.84,0.284,0.208,0.353
-Toto-1.0,AutoTheta,0.87,0.8,0.93,0.205,0.158,0.252
-Toto-1.0,Naive,0.91,0.85,0.96,0.354,0.296,0.408
-Toto-1.0,Seasonal Naive,0.92,0.86,0.97,0.315,0.266,0.365
-Toto-1.0,Drift,0.9,0.83,0.96,0.369,0.315,0.424
-TabPFN-TS,Chronos-2,0.18,0.11,0.26,-0.1,-0.138,-0.061
-TabPFN-TS,TimesFM-2.5,0.37,0.28,0.47,-0.005,-0.054,0.039
-TabPFN-TS,TiRex,0.35,0.26,0.44,-0.003,-0.055,0.043
-TabPFN-TS,Toto-1.0,0.44,0.35,0.53,0.027,-0.024,0.076
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Moirai-2.0,0.52,0.42,0.62,0.039,-0.012,0.085
-TabPFN-TS,Chronos-Bolt,0.53,0.44,0.62,0.051,0.006,0.094
-TabPFN-TS,Sundial-Base,0.66,0.56,0.75,0.084,0.041,0.126
-TabPFN-TS,Stat. Ensemble,0.775,0.695,0.855,0.19,0.134,0.242
-TabPFN-TS,AutoARIMA,0.83,0.76,0.9,0.232,0.178,0.283
-TabPFN-TS,AutoETS,0.77,0.69,0.85,0.303,0.23,0.382
-TabPFN-TS,AutoTheta,0.84,0.76,0.9,0.227,0.18,0.277
-TabPFN-TS,Naive,0.91,0.85,0.96,0.372,0.316,0.432
-TabPFN-TS,Seasonal Naive,0.94,0.89,0.98,0.334,0.29,0.379
-TabPFN-TS,Drift,0.89,0.83,0.95,0.386,0.328,0.447
-Moirai-2.0,Chronos-2,0.16,0.09,0.24,-0.145,-0.189,-0.106
-Moirai-2.0,TimesFM-2.5,0.3,0.22,0.385,-0.046,-0.075,-0.02
-Moirai-2.0,TiRex,0.305,0.21,0.385,-0.044,-0.069,-0.023
-Moirai-2.0,Toto-1.0,0.4,0.31,0.5,-0.012,-0.038,0.012
-Moirai-2.0,TabPFN-TS,0.48,0.38,0.58,-0.041,-0.093,0.012
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Chronos-Bolt,0.56,0.48,0.645,0.013,-0.011,0.036
-Moirai-2.0,Sundial-Base,0.665,0.57,0.76,0.047,0.005,0.087
-Moirai-2.0,Stat. Ensemble,0.74,0.65,0.82,0.157,0.105,0.208
-Moirai-2.0,AutoARIMA,0.83,0.75,0.9,0.2,0.148,0.254
-Moirai-2.0,AutoETS,0.77,0.68,0.85,0.275,0.196,0.35
-Moirai-2.0,AutoTheta,0.88,0.81,0.94,0.196,0.147,0.243
-Moirai-2.0,Naive,0.87,0.8,0.93,0.346,0.29,0.403
-Moirai-2.0,Seasonal Naive,0.87,0.8,0.93,0.307,0.258,0.357
-Moirai-2.0,Drift,0.87,0.8,0.93,0.361,0.303,0.417
-Chronos-Bolt,Chronos-2,0.11,0.05,0.18,-0.159,-0.207,-0.117
-Chronos-Bolt,TimesFM-2.5,0.27,0.19,0.35,-0.06,-0.086,-0.035
-Chronos-Bolt,TiRex,0.255,0.17,0.34,-0.057,-0.083,-0.033
-Chronos-Bolt,Toto-1.0,0.4,0.315,0.495,-0.025,-0.055,0.004
-Chronos-Bolt,TabPFN-TS,0.47,0.38,0.56,-0.054,-0.104,-0.006
-Chronos-Bolt,Moirai-2.0,0.44,0.355,0.52,-0.013,-0.038,0.011
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Sundial-Base,0.635,0.54,0.73,0.034,-0.006,0.071
-Chronos-Bolt,Stat. Ensemble,0.74,0.64,0.82,0.147,0.096,0.198
-Chronos-Bolt,AutoARIMA,0.85,0.77,0.92,0.19,0.137,0.242
-Chronos-Bolt,AutoETS,0.77,0.68,0.85,0.266,0.19,0.341
-Chronos-Bolt,AutoTheta,0.92,0.87,0.97,0.185,0.139,0.232
-Chronos-Bolt,Naive,0.89,0.83,0.95,0.338,0.28,0.394
-Chronos-Bolt,Seasonal Naive,0.91,0.85,0.96,0.298,0.252,0.345
-Chronos-Bolt,Drift,0.9,0.84,0.95,0.353,0.296,0.41
-Sundial-Base,Chronos-2,0.07,0.02,0.12,-0.2,-0.25,-0.154
-Sundial-Base,TimesFM-2.5,0.175,0.1,0.25,-0.097,-0.143,-0.055
-Sundial-Base,TiRex,0.225,0.15,0.305,-0.095,-0.144,-0.05
-Sundial-Base,Toto-1.0,0.335,0.25,0.425,-0.062,-0.115,-0.012
-Sundial-Base,TabPFN-TS,0.34,0.25,0.44,-0.092,-0.144,-0.042
-Sundial-Base,Moirai-2.0,0.335,0.24,0.43,-0.049,-0.095,-0.005
-Sundial-Base,Chronos-Bolt,0.365,0.27,0.46,-0.036,-0.076,0.006
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Stat. Ensemble,0.64,0.54,0.73,0.116,0.05,0.174
-Sundial-Base,AutoARIMA,0.76,0.67,0.84,0.161,0.097,0.218
-Sundial-Base,AutoETS,0.68,0.58,0.77,0.24,0.149,0.317
-Sundial-Base,AutoTheta,0.74,0.64,0.82,0.156,0.099,0.206
-Sundial-Base,Naive,0.82,0.74,0.89,0.315,0.248,0.38
-Sundial-Base,Seasonal Naive,0.88,0.81,0.94,0.273,0.225,0.319
-Sundial-Base,Drift,0.81,0.73,0.88,0.33,0.261,0.398
-Stat. Ensemble,Chronos-2,0.09,0.04,0.15,-0.358,-0.454,-0.265
-Stat. Ensemble,TimesFM-2.5,0.16,0.09,0.24,-0.242,-0.322,-0.171
-Stat. Ensemble,TiRex,0.18,0.11,0.27,-0.239,-0.319,-0.171
-Stat. Ensemble,Toto-1.0,0.31,0.22,0.41,-0.201,-0.28,-0.13
-Stat. Ensemble,TabPFN-TS,0.225,0.145,0.305,-0.235,-0.32,-0.155
-Stat. Ensemble,Moirai-2.0,0.26,0.18,0.35,-0.187,-0.263,-0.117
-Stat. Ensemble,Chronos-Bolt,0.26,0.18,0.36,-0.172,-0.246,-0.107
-Stat. Ensemble,Sundial-Base,0.36,0.27,0.46,-0.132,-0.211,-0.052
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoARIMA,0.65,0.56,0.74,0.051,0.02,0.086
-Stat. Ensemble,AutoETS,0.785,0.7,0.86,0.14,0.071,0.209
-Stat. Ensemble,AutoTheta,0.81,0.73,0.88,0.045,0.009,0.078
-Stat. Ensemble,Naive,0.84,0.77,0.91,0.224,0.169,0.277
-Stat. Ensemble,Seasonal Naive,0.835,0.77,0.9,0.177,0.138,0.221
-Stat. Ensemble,Drift,0.86,0.79,0.92,0.242,0.192,0.293
-AutoARIMA,Chronos-2,0.08,0.03,0.14,-0.431,-0.538,-0.335
-AutoARIMA,TimesFM-2.5,0.09,0.03,0.15,-0.308,-0.399,-0.234
-AutoARIMA,TiRex,0.12,0.06,0.19,-0.305,-0.393,-0.233
-AutoARIMA,Toto-1.0,0.18,0.11,0.26,-0.266,-0.353,-0.187
-AutoARIMA,TabPFN-TS,0.17,0.1,0.24,-0.301,-0.395,-0.217
-AutoARIMA,Moirai-2.0,0.17,0.1,0.25,-0.251,-0.341,-0.173
-AutoARIMA,Chronos-Bolt,0.15,0.08,0.23,-0.235,-0.319,-0.159
-AutoARIMA,Sundial-Base,0.24,0.16,0.33,-0.192,-0.278,-0.107
-AutoARIMA,Stat. Ensemble,0.35,0.26,0.44,-0.054,-0.095,-0.02
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoETS,0.555,0.46,0.655,0.093,0.015,0.175
-AutoARIMA,AutoTheta,0.52,0.42,0.62,-0.006,-0.057,0.039
-AutoARIMA,Naive,0.72,0.63,0.8,0.183,0.118,0.242
-AutoARIMA,Seasonal Naive,0.8,0.735,0.875,0.133,0.09,0.178
-AutoARIMA,Drift,0.75,0.65,0.83,0.201,0.14,0.261
-AutoETS,Chronos-2,0.12,0.06,0.19,-0.579,-0.764,-0.414
-AutoETS,TimesFM-2.5,0.15,0.09,0.22,-0.443,-0.602,-0.31
-AutoETS,TiRex,0.16,0.09,0.24,-0.44,-0.598,-0.303
-AutoETS,Toto-1.0,0.23,0.16,0.32,-0.396,-0.547,-0.263
-AutoETS,TabPFN-TS,0.23,0.15,0.31,-0.436,-0.617,-0.299
-AutoETS,Moirai-2.0,0.23,0.15,0.32,-0.38,-0.538,-0.243
-AutoETS,Chronos-Bolt,0.23,0.15,0.32,-0.362,-0.518,-0.235
-AutoETS,Sundial-Base,0.32,0.23,0.42,-0.315,-0.464,-0.175
-AutoETS,Stat. Ensemble,0.215,0.14,0.3,-0.162,-0.264,-0.077
-AutoETS,AutoARIMA,0.445,0.345,0.54,-0.103,-0.212,-0.015
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,AutoTheta,0.47,0.37,0.56,-0.11,-0.214,-0.027
-AutoETS,Naive,0.62,0.53,0.72,0.098,0.018,0.177
-AutoETS,Seasonal Naive,0.685,0.585,0.775,0.043,-0.061,0.128
-AutoETS,Drift,0.74,0.66,0.82,0.119,0.042,0.194
-AutoTheta,Chronos-2,0.06,0.02,0.11,-0.423,-0.524,-0.328
-AutoTheta,TimesFM-2.5,0.08,0.03,0.14,-0.301,-0.38,-0.229
-AutoTheta,TiRex,0.07,0.02,0.12,-0.297,-0.374,-0.23
-AutoTheta,Toto-1.0,0.13,0.07,0.2,-0.258,-0.337,-0.188
-AutoTheta,TabPFN-TS,0.16,0.1,0.24,-0.294,-0.383,-0.22
-AutoTheta,Moirai-2.0,0.12,0.06,0.19,-0.243,-0.32,-0.172
-AutoTheta,Chronos-Bolt,0.08,0.03,0.13,-0.227,-0.302,-0.161
-AutoTheta,Sundial-Base,0.26,0.18,0.36,-0.185,-0.26,-0.11
-AutoTheta,Stat. Ensemble,0.19,0.12,0.27,-0.047,-0.085,-0.009
-AutoTheta,AutoARIMA,0.48,0.38,0.58,0.006,-0.041,0.054
-AutoTheta,AutoETS,0.53,0.44,0.63,0.099,0.026,0.177
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Naive,0.76,0.68,0.84,0.188,0.138,0.239
-AutoTheta,Seasonal Naive,0.78,0.69,0.86,0.138,0.099,0.18
-AutoTheta,Drift,0.78,0.7,0.86,0.206,0.158,0.26
-Naive,Chronos-2,0.07,0.03,0.12,-0.751,-0.93,-0.594
-Naive,TimesFM-2.5,0.07,0.02,0.13,-0.601,-0.753,-0.473
-Naive,TiRex,0.07,0.02,0.12,-0.597,-0.75,-0.473
-Naive,Toto-1.0,0.09,0.04,0.15,-0.549,-0.689,-0.421
-Naive,TabPFN-TS,0.09,0.04,0.15,-0.592,-0.761,-0.461
-Naive,Moirai-2.0,0.13,0.07,0.2,-0.53,-0.674,-0.408
-Naive,Chronos-Bolt,0.11,0.05,0.17,-0.511,-0.649,-0.39
-Naive,Sundial-Base,0.18,0.11,0.26,-0.459,-0.613,-0.331
-Naive,Stat. Ensemble,0.16,0.09,0.23,-0.289,-0.383,-0.203
-Naive,AutoARIMA,0.28,0.2,0.37,-0.223,-0.319,-0.134
-Naive,AutoETS,0.38,0.28,0.47,-0.109,-0.215,-0.018
-Naive,AutoTheta,0.24,0.16,0.32,-0.231,-0.314,-0.161
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Seasonal Naive,0.475,0.39,0.565,-0.061,-0.146,0.017
-Naive,Drift,0.84,0.77,0.91,0.023,-0.005,0.048
-Seasonal Naive,Chronos-2,0.05,0.01,0.1,-0.65,-0.787,-0.537
-Seasonal Naive,TimesFM-2.5,0.05,0.01,0.1,-0.509,-0.63,-0.414
-Seasonal Naive,TiRex,0.05,0.01,0.1,-0.505,-0.623,-0.408
-Seasonal Naive,Toto-1.0,0.08,0.03,0.14,-0.46,-0.575,-0.362
-Seasonal Naive,TabPFN-TS,0.06,0.02,0.11,-0.501,-0.61,-0.409
-Seasonal Naive,Moirai-2.0,0.13,0.07,0.2,-0.442,-0.555,-0.347
-Seasonal Naive,Chronos-Bolt,0.09,0.04,0.15,-0.424,-0.527,-0.336
-Seasonal Naive,Sundial-Base,0.12,0.06,0.19,-0.375,-0.469,-0.29
-Seasonal Naive,Stat. Ensemble,0.165,0.1,0.23,-0.215,-0.283,-0.161
-Seasonal Naive,AutoARIMA,0.2,0.125,0.265,-0.153,-0.217,-0.099
-Seasonal Naive,AutoETS,0.315,0.225,0.415,-0.045,-0.147,0.057
-Seasonal Naive,AutoTheta,0.22,0.14,0.31,-0.16,-0.219,-0.11
-Seasonal Naive,Naive,0.525,0.435,0.61,0.058,-0.017,0.127
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Drift,0.64,0.53,0.73,0.079,-0.001,0.153
-Drift,Chronos-2,0.07,0.03,0.12,-0.792,-0.994,-0.621
-Drift,TimesFM-2.5,0.08,0.03,0.14,-0.639,-0.801,-0.507
-Drift,TiRex,0.09,0.04,0.15,-0.635,-0.796,-0.504
-Drift,Toto-1.0,0.1,0.04,0.17,-0.585,-0.735,-0.459
-Drift,TabPFN-TS,0.11,0.05,0.17,-0.63,-0.807,-0.488
-Drift,Moirai-2.0,0.13,0.07,0.2,-0.566,-0.715,-0.435
-Drift,Chronos-Bolt,0.1,0.05,0.16,-0.546,-0.695,-0.42
-Drift,Sundial-Base,0.19,0.12,0.27,-0.493,-0.66,-0.354
-Drift,Stat. Ensemble,0.14,0.08,0.21,-0.32,-0.415,-0.238
-Drift,AutoARIMA,0.25,0.17,0.35,-0.252,-0.353,-0.163
-Drift,AutoETS,0.26,0.18,0.34,-0.135,-0.24,-0.044
-Drift,AutoTheta,0.22,0.14,0.3,-0.26,-0.351,-0.188
-Drift,Naive,0.16,0.09,0.23,-0.023,-0.051,0.005
-Drift,Seasonal Naive,0.36,0.27,0.47,-0.086,-0.181,0.001
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/pairwise_WQL.csv b/tables/pairwise_WQL.csv
deleted file mode 100644
index c8b896eb4ab031e575e110c916ecd7ae5c8aee12..0000000000000000000000000000000000000000
--- a/tables/pairwise_WQL.csv
+++ /dev/null
@@ -1,226 +0,0 @@
-model_1,model_2,win_rate,win_rate_lower,win_rate_upper,skill_score,skill_score_lower,skill_score_upper
-Chronos-2,Chronos-2,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-2,TiRex,0.74,0.65,0.82,0.091,0.058,0.126
-Chronos-2,TimesFM-2.5,0.72,0.63,0.8,0.09,0.059,0.122
-Chronos-2,Toto-1.0,0.7,0.6,0.79,0.119,0.084,0.156
-Chronos-2,TabPFN-TS,0.81,0.73,0.89,0.105,0.073,0.134
-Chronos-2,Moirai-2.0,0.86,0.79,0.92,0.136,0.105,0.17
-Chronos-2,Chronos-Bolt,0.9,0.84,0.95,0.147,0.114,0.18
-Chronos-2,Sundial-Base,0.97,0.93,1.0,0.225,0.194,0.255
-Chronos-2,Stat. Ensemble,0.95,0.9,0.99,0.38,0.324,0.431
-Chronos-2,AutoARIMA,0.96,0.92,0.99,0.367,0.316,0.416
-Chronos-2,AutoETS,0.95,0.9,0.99,0.597,0.5,0.684
-Chronos-2,AutoTheta,0.98,0.95,1.0,0.474,0.418,0.529
-Chronos-2,Seasonal Naive,0.98,0.95,1.0,0.515,0.469,0.559
-Chronos-2,Naive,0.98,0.95,1.0,0.652,0.603,0.693
-Chronos-2,Drift,0.98,0.95,1.0,0.654,0.603,0.697
-TiRex,Chronos-2,0.26,0.18,0.35,-0.1,-0.144,-0.062
-TiRex,TiRex,0.5,0.5,0.5,0.0,0.0,0.0
-TiRex,TimesFM-2.5,0.555,0.455,0.65,-0.001,-0.02,0.017
-TiRex,Toto-1.0,0.685,0.6,0.77,0.03,0.009,0.05
-TiRex,TabPFN-TS,0.64,0.54,0.74,0.016,-0.033,0.063
-TiRex,Moirai-2.0,0.795,0.715,0.87,0.05,0.03,0.073
-TiRex,Chronos-Bolt,0.815,0.735,0.885,0.061,0.039,0.083
-TiRex,Sundial-Base,0.895,0.835,0.95,0.148,0.11,0.185
-TiRex,Stat. Ensemble,0.89,0.83,0.95,0.318,0.262,0.374
-TiRex,AutoARIMA,0.93,0.87,0.98,0.304,0.256,0.352
-TiRex,AutoETS,0.92,0.86,0.97,0.558,0.449,0.655
-TiRex,AutoTheta,0.95,0.9,0.99,0.421,0.365,0.479
-TiRex,Seasonal Naive,0.99,0.96,1.0,0.467,0.42,0.515
-TiRex,Naive,0.99,0.96,1.0,0.617,0.565,0.663
-TiRex,Drift,0.97,0.93,1.0,0.619,0.567,0.666
-TimesFM-2.5,Chronos-2,0.28,0.2,0.37,-0.099,-0.139,-0.063
-TimesFM-2.5,TiRex,0.445,0.35,0.545,0.001,-0.017,0.019
-TimesFM-2.5,TimesFM-2.5,0.5,0.5,0.5,0.0,0.0,0.0
-TimesFM-2.5,Toto-1.0,0.56,0.475,0.655,0.031,0.006,0.057
-TimesFM-2.5,TabPFN-TS,0.64,0.54,0.74,0.017,-0.031,0.062
-TimesFM-2.5,Moirai-2.0,0.73,0.645,0.81,0.051,0.028,0.076
-TimesFM-2.5,Chronos-Bolt,0.76,0.685,0.835,0.062,0.04,0.085
-TimesFM-2.5,Sundial-Base,0.905,0.845,0.96,0.148,0.114,0.183
-TimesFM-2.5,Stat. Ensemble,0.9,0.84,0.95,0.319,0.262,0.376
-TimesFM-2.5,AutoARIMA,0.93,0.88,0.98,0.304,0.255,0.357
-TimesFM-2.5,AutoETS,0.9,0.84,0.95,0.558,0.449,0.655
-TimesFM-2.5,AutoTheta,0.96,0.91,0.99,0.422,0.362,0.483
-TimesFM-2.5,Seasonal Naive,0.99,0.97,1.0,0.467,0.422,0.518
-TimesFM-2.5,Naive,0.99,0.97,1.0,0.617,0.564,0.664
-TimesFM-2.5,Drift,0.97,0.93,1.0,0.62,0.565,0.667
-Toto-1.0,Chronos-2,0.3,0.21,0.4,-0.134,-0.185,-0.092
-Toto-1.0,TiRex,0.315,0.23,0.4,-0.031,-0.053,-0.009
-Toto-1.0,TimesFM-2.5,0.44,0.345,0.525,-0.032,-0.061,-0.006
-Toto-1.0,Toto-1.0,0.5,0.5,0.5,0.0,0.0,0.0
-Toto-1.0,TabPFN-TS,0.54,0.45,0.63,-0.015,-0.073,0.036
-Toto-1.0,Moirai-2.0,0.59,0.49,0.68,0.02,-0.003,0.044
-Toto-1.0,Chronos-Bolt,0.61,0.52,0.695,0.032,0.003,0.061
-Toto-1.0,Sundial-Base,0.795,0.715,0.87,0.121,0.079,0.163
-Toto-1.0,Stat. Ensemble,0.81,0.73,0.88,0.297,0.235,0.356
-Toto-1.0,AutoARIMA,0.85,0.78,0.92,0.282,0.23,0.336
-Toto-1.0,AutoETS,0.84,0.76,0.91,0.545,0.433,0.645
-Toto-1.0,AutoTheta,0.93,0.87,0.97,0.403,0.341,0.465
-Toto-1.0,Seasonal Naive,0.96,0.92,0.99,0.45,0.397,0.501
-Toto-1.0,Naive,0.97,0.93,1.0,0.605,0.55,0.652
-Toto-1.0,Drift,0.97,0.93,1.0,0.607,0.551,0.656
-TabPFN-TS,Chronos-2,0.19,0.11,0.27,-0.118,-0.155,-0.078
-TabPFN-TS,TiRex,0.36,0.26,0.46,-0.016,-0.067,0.032
-TabPFN-TS,TimesFM-2.5,0.36,0.26,0.46,-0.017,-0.066,0.03
-TabPFN-TS,Toto-1.0,0.46,0.37,0.55,0.015,-0.037,0.068
-TabPFN-TS,TabPFN-TS,0.5,0.5,0.5,0.0,0.0,0.0
-TabPFN-TS,Moirai-2.0,0.55,0.46,0.65,0.035,-0.017,0.084
-TabPFN-TS,Chronos-Bolt,0.52,0.43,0.61,0.046,0.0,0.092
-TabPFN-TS,Sundial-Base,0.79,0.71,0.87,0.134,0.09,0.175
-TabPFN-TS,Stat. Ensemble,0.795,0.715,0.875,0.307,0.247,0.365
-TabPFN-TS,AutoARIMA,0.83,0.75,0.9,0.293,0.239,0.348
-TabPFN-TS,AutoETS,0.85,0.78,0.92,0.554,0.442,0.654
-TabPFN-TS,AutoTheta,0.94,0.89,0.98,0.412,0.352,0.471
-TabPFN-TS,Seasonal Naive,0.97,0.935,0.995,0.458,0.412,0.506
-TabPFN-TS,Naive,0.97,0.93,1.0,0.611,0.556,0.657
-TabPFN-TS,Drift,0.95,0.9,0.98,0.613,0.557,0.661
-Moirai-2.0,Chronos-2,0.14,0.08,0.21,-0.158,-0.205,-0.118
-Moirai-2.0,TiRex,0.205,0.13,0.285,-0.053,-0.078,-0.031
-Moirai-2.0,TimesFM-2.5,0.27,0.19,0.355,-0.054,-0.082,-0.029
-Moirai-2.0,Toto-1.0,0.41,0.32,0.51,-0.021,-0.046,0.003
-Moirai-2.0,TabPFN-TS,0.45,0.35,0.54,-0.036,-0.091,0.017
-Moirai-2.0,Moirai-2.0,0.5,0.5,0.5,0.0,0.0,0.0
-Moirai-2.0,Chronos-Bolt,0.59,0.505,0.67,0.012,-0.013,0.037
-Moirai-2.0,Sundial-Base,0.865,0.79,0.93,0.103,0.062,0.14
-Moirai-2.0,Stat. Ensemble,0.84,0.76,0.91,0.282,0.222,0.343
-Moirai-2.0,AutoARIMA,0.89,0.82,0.95,0.267,0.214,0.322
-Moirai-2.0,AutoETS,0.87,0.8,0.93,0.537,0.421,0.639
-Moirai-2.0,AutoTheta,0.91,0.85,0.96,0.391,0.33,0.454
-Moirai-2.0,Seasonal Naive,0.93,0.87,0.97,0.439,0.387,0.49
-Moirai-2.0,Naive,0.95,0.9,0.99,0.597,0.541,0.645
-Moirai-2.0,Drift,0.95,0.9,0.99,0.599,0.542,0.649
-Chronos-Bolt,Chronos-2,0.1,0.05,0.16,-0.172,-0.22,-0.129
-Chronos-Bolt,TiRex,0.185,0.115,0.265,-0.065,-0.091,-0.041
-Chronos-Bolt,TimesFM-2.5,0.24,0.165,0.315,-0.066,-0.092,-0.042
-Chronos-Bolt,Toto-1.0,0.39,0.305,0.48,-0.033,-0.065,-0.003
-Chronos-Bolt,TabPFN-TS,0.48,0.39,0.57,-0.049,-0.101,-0.0
-Chronos-Bolt,Moirai-2.0,0.41,0.33,0.495,-0.012,-0.038,0.013
-Chronos-Bolt,Chronos-Bolt,0.5,0.5,0.5,0.0,0.0,0.0
-Chronos-Bolt,Sundial-Base,0.785,0.705,0.865,0.092,0.051,0.128
-Chronos-Bolt,Stat. Ensemble,0.85,0.78,0.92,0.274,0.215,0.332
-Chronos-Bolt,AutoARIMA,0.88,0.81,0.94,0.258,0.207,0.31
-Chronos-Bolt,AutoETS,0.87,0.8,0.93,0.531,0.418,0.635
-Chronos-Bolt,AutoTheta,0.96,0.92,0.99,0.384,0.323,0.446
-Chronos-Bolt,Seasonal Naive,0.97,0.94,1.0,0.432,0.384,0.482
-Chronos-Bolt,Naive,0.98,0.95,1.0,0.592,0.537,0.639
-Chronos-Bolt,Drift,0.98,0.95,1.0,0.594,0.539,0.643
-Sundial-Base,Chronos-2,0.03,0.0,0.07,-0.29,-0.343,-0.241
-Sundial-Base,TiRex,0.105,0.05,0.165,-0.173,-0.226,-0.124
-Sundial-Base,TimesFM-2.5,0.095,0.04,0.155,-0.174,-0.223,-0.129
-Sundial-Base,Toto-1.0,0.205,0.13,0.285,-0.138,-0.195,-0.085
-Sundial-Base,TabPFN-TS,0.21,0.13,0.29,-0.155,-0.212,-0.099
-Sundial-Base,Moirai-2.0,0.135,0.07,0.21,-0.114,-0.163,-0.066
-Sundial-Base,Chronos-Bolt,0.215,0.135,0.295,-0.101,-0.147,-0.053
-Sundial-Base,Sundial-Base,0.5,0.5,0.5,0.0,0.0,0.0
-Sundial-Base,Stat. Ensemble,0.68,0.58,0.76,0.2,0.124,0.268
-Sundial-Base,AutoARIMA,0.73,0.63,0.81,0.183,0.114,0.245
-Sundial-Base,AutoETS,0.71,0.61,0.79,0.486,0.353,0.603
-Sundial-Base,AutoTheta,0.77,0.68,0.85,0.321,0.25,0.391
-Sundial-Base,Seasonal Naive,0.91,0.85,0.96,0.374,0.322,0.43
-Sundial-Base,Naive,0.91,0.85,0.96,0.55,0.489,0.605
-Sundial-Base,Drift,0.88,0.81,0.94,0.553,0.487,0.611
-Stat. Ensemble,Chronos-2,0.05,0.01,0.1,-0.613,-0.757,-0.479
-Stat. Ensemble,TiRex,0.11,0.05,0.17,-0.466,-0.598,-0.355
-Stat. Ensemble,TimesFM-2.5,0.1,0.05,0.16,-0.468,-0.603,-0.355
-Stat. Ensemble,Toto-1.0,0.19,0.12,0.27,-0.422,-0.552,-0.307
-Stat. Ensemble,TabPFN-TS,0.205,0.125,0.285,-0.443,-0.575,-0.329
-Stat. Ensemble,Moirai-2.0,0.16,0.09,0.24,-0.393,-0.521,-0.285
-Stat. Ensemble,Chronos-Bolt,0.15,0.08,0.22,-0.377,-0.496,-0.274
-Stat. Ensemble,Sundial-Base,0.32,0.24,0.42,-0.25,-0.366,-0.142
-Stat. Ensemble,Stat. Ensemble,0.5,0.5,0.5,0.0,0.0,0.0
-Stat. Ensemble,AutoARIMA,0.5,0.41,0.6,-0.021,-0.061,0.02
-Stat. Ensemble,AutoETS,0.755,0.67,0.835,0.38,0.234,0.517
-Stat. Ensemble,AutoTheta,0.87,0.81,0.93,0.151,0.111,0.194
-Stat. Ensemble,Seasonal Naive,0.835,0.77,0.895,0.218,0.166,0.273
-Stat. Ensemble,Naive,0.97,0.93,1.0,0.438,0.386,0.484
-Stat. Ensemble,Drift,0.97,0.93,1.0,0.442,0.387,0.49
-AutoARIMA,Chronos-2,0.04,0.01,0.08,-0.58,-0.711,-0.461
-AutoARIMA,TiRex,0.07,0.02,0.13,-0.436,-0.543,-0.345
-AutoARIMA,TimesFM-2.5,0.07,0.02,0.12,-0.438,-0.556,-0.342
-AutoARIMA,Toto-1.0,0.15,0.08,0.22,-0.393,-0.505,-0.299
-AutoARIMA,TabPFN-TS,0.17,0.1,0.25,-0.414,-0.533,-0.315
-AutoARIMA,Moirai-2.0,0.11,0.05,0.18,-0.365,-0.476,-0.272
-AutoARIMA,Chronos-Bolt,0.12,0.06,0.19,-0.348,-0.449,-0.261
-AutoARIMA,Sundial-Base,0.27,0.19,0.37,-0.224,-0.324,-0.129
-AutoARIMA,Stat. Ensemble,0.5,0.4,0.59,0.021,-0.021,0.058
-AutoARIMA,AutoARIMA,0.5,0.5,0.5,0.0,0.0,0.0
-AutoARIMA,AutoETS,0.685,0.59,0.775,0.381,0.235,0.518
-AutoARIMA,AutoTheta,0.75,0.67,0.83,0.169,0.119,0.218
-AutoARIMA,Seasonal Naive,0.88,0.825,0.93,0.234,0.184,0.287
-AutoARIMA,Naive,0.91,0.85,0.96,0.449,0.389,0.499
-AutoARIMA,Drift,0.89,0.82,0.95,0.453,0.393,0.505
-AutoETS,Chronos-2,0.05,0.01,0.1,-1.48,-2.169,-0.999
-AutoETS,TiRex,0.08,0.03,0.14,-1.261,-1.901,-0.816
-AutoETS,TimesFM-2.5,0.1,0.05,0.16,-1.261,-1.898,-0.814
-AutoETS,Toto-1.0,0.16,0.09,0.24,-1.198,-1.815,-0.764
-AutoETS,TabPFN-TS,0.15,0.08,0.22,-1.242,-1.889,-0.793
-AutoETS,Moirai-2.0,0.13,0.07,0.2,-1.158,-1.773,-0.727
-AutoETS,Chronos-Bolt,0.13,0.07,0.2,-1.133,-1.742,-0.717
-AutoETS,Sundial-Base,0.29,0.21,0.39,-0.945,-1.517,-0.545
-AutoETS,Stat. Ensemble,0.245,0.165,0.33,-0.612,-1.072,-0.305
-AutoETS,AutoARIMA,0.315,0.225,0.41,-0.616,-1.074,-0.308
-AutoETS,AutoETS,0.5,0.5,0.5,0.0,0.0,0.0
-AutoETS,AutoTheta,0.57,0.47,0.67,-0.384,-0.762,-0.111
-AutoETS,Seasonal Naive,0.625,0.535,0.715,-0.27,-0.651,-0.012
-AutoETS,Naive,0.76,0.68,0.84,0.059,-0.228,0.255
-AutoETS,Drift,0.79,0.71,0.87,0.062,-0.223,0.256
-AutoTheta,Chronos-2,0.02,0.0,0.05,-0.901,-1.124,-0.718
-AutoTheta,TiRex,0.05,0.01,0.1,-0.728,-0.919,-0.575
-AutoTheta,TimesFM-2.5,0.04,0.01,0.09,-0.73,-0.934,-0.567
-AutoTheta,Toto-1.0,0.07,0.03,0.13,-0.676,-0.87,-0.517
-AutoTheta,TabPFN-TS,0.06,0.02,0.11,-0.701,-0.889,-0.542
-AutoTheta,Moirai-2.0,0.09,0.04,0.15,-0.642,-0.83,-0.491
-AutoTheta,Chronos-Bolt,0.04,0.01,0.08,-0.622,-0.804,-0.477
-AutoTheta,Sundial-Base,0.23,0.15,0.32,-0.473,-0.641,-0.333
-AutoTheta,Stat. Ensemble,0.13,0.07,0.19,-0.178,-0.24,-0.124
-AutoTheta,AutoARIMA,0.25,0.17,0.33,-0.203,-0.279,-0.135
-AutoTheta,AutoETS,0.43,0.33,0.53,0.278,0.1,0.433
-AutoTheta,AutoTheta,0.5,0.5,0.5,0.0,0.0,0.0
-AutoTheta,Seasonal Naive,0.69,0.6,0.78,0.078,0.007,0.148
-AutoTheta,Naive,0.85,0.78,0.92,0.338,0.277,0.392
-AutoTheta,Drift,0.79,0.71,0.87,0.342,0.277,0.399
-Seasonal Naive,Chronos-2,0.02,0.0,0.05,-1.063,-1.27,-0.883
-Seasonal Naive,TiRex,0.01,0.0,0.04,-0.875,-1.061,-0.724
-Seasonal Naive,TimesFM-2.5,0.01,0.0,0.03,-0.877,-1.074,-0.729
-Seasonal Naive,Toto-1.0,0.04,0.01,0.08,-0.818,-1.003,-0.658
-Seasonal Naive,TabPFN-TS,0.03,0.005,0.065,-0.846,-1.025,-0.7
-Seasonal Naive,Moirai-2.0,0.07,0.03,0.13,-0.781,-0.961,-0.632
-Seasonal Naive,Chronos-Bolt,0.03,0.0,0.06,-0.76,-0.929,-0.623
-Seasonal Naive,Sundial-Base,0.09,0.04,0.15,-0.598,-0.753,-0.474
-Seasonal Naive,Stat. Ensemble,0.165,0.105,0.23,-0.279,-0.376,-0.198
-Seasonal Naive,AutoARIMA,0.12,0.07,0.175,-0.306,-0.403,-0.225
-Seasonal Naive,AutoETS,0.375,0.285,0.465,0.213,0.012,0.394
-Seasonal Naive,AutoTheta,0.31,0.22,0.4,-0.085,-0.174,-0.008
-Seasonal Naive,Seasonal Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Seasonal Naive,Naive,0.685,0.61,0.755,0.281,0.208,0.351
-Seasonal Naive,Drift,0.77,0.69,0.86,0.286,0.205,0.362
-Naive,Chronos-2,0.02,0.0,0.05,-1.87,-2.256,-1.52
-Naive,TiRex,0.01,0.0,0.04,-1.608,-1.963,-1.301
-Naive,TimesFM-2.5,0.01,0.0,0.03,-1.611,-1.972,-1.293
-Naive,Toto-1.0,0.03,0.0,0.07,-1.53,-1.877,-1.224
-Naive,TabPFN-TS,0.03,0.0,0.07,-1.568,-1.912,-1.254
-Naive,Moirai-2.0,0.05,0.01,0.1,-1.478,-1.816,-1.178
-Naive,Chronos-Bolt,0.02,0.0,0.05,-1.449,-1.767,-1.16
-Naive,Sundial-Base,0.09,0.04,0.15,-1.224,-1.535,-0.956
-Naive,Stat. Ensemble,0.03,0.0,0.07,-0.779,-0.938,-0.629
-Naive,AutoARIMA,0.09,0.04,0.15,-0.816,-0.997,-0.636
-Naive,AutoETS,0.24,0.16,0.32,-0.063,-0.343,0.186
-Naive,AutoTheta,0.15,0.08,0.22,-0.51,-0.644,-0.383
-Naive,Seasonal Naive,0.315,0.245,0.39,-0.391,-0.54,-0.263
-Naive,Naive,0.5,0.5,0.5,0.0,0.0,0.0
-Naive,Drift,0.84,0.77,0.91,0.007,-0.018,0.028
-Drift,Chronos-2,0.02,0.0,0.05,-1.889,-2.297,-1.517
-Drift,TiRex,0.03,0.0,0.07,-1.626,-1.992,-1.31
-Drift,TimesFM-2.5,0.03,0.0,0.07,-1.629,-2.005,-1.301
-Drift,Toto-1.0,0.03,0.0,0.07,-1.547,-1.905,-1.228
-Drift,TabPFN-TS,0.05,0.02,0.1,-1.585,-1.953,-1.257
-Drift,Moirai-2.0,0.05,0.01,0.1,-1.495,-1.849,-1.182
-Drift,Chronos-Bolt,0.02,0.0,0.05,-1.465,-1.797,-1.171
-Drift,Sundial-Base,0.12,0.06,0.19,-1.239,-1.572,-0.95
-Drift,Stat. Ensemble,0.03,0.0,0.07,-0.791,-0.961,-0.632
-Drift,AutoARIMA,0.11,0.05,0.18,-0.828,-1.021,-0.649
-Drift,AutoETS,0.21,0.13,0.29,-0.066,-0.344,0.183
-Drift,AutoTheta,0.21,0.13,0.29,-0.52,-0.664,-0.384
-Drift,Seasonal Naive,0.23,0.14,0.31,-0.401,-0.567,-0.258
-Drift,Naive,0.16,0.09,0.23,-0.007,-0.029,0.018
-Drift,Drift,0.5,0.5,0.5,0.0,0.0,0.0
diff --git a/tables/pivot_MASE.csv b/tables/pivot_MASE.csv
deleted file mode 100644
index 1101856c80599009023d9b1a4c4982578181e2db..0000000000000000000000000000000000000000
--- a/tables/pivot_MASE.csv
+++ /dev/null
@@ -1,101 +0,0 @@
-Task name,Chronos-2,TiRex,TimesFM-2.5,Toto-1.0,Moirai-2.0,Chronos-Bolt,TabPFN-TS,Sundial-Base,Stat. Ensemble,AutoARIMA,AutoTheta,AutoETS,Seasonal Naive,Naive,Drift
-ETT_15T,0.6948579833,0.7187969186000001,0.7295309932,0.7577736165000001,0.7033446670000001,0.7033446670000001,0.7625422865,0.7138930444,0.9168897854,0.9168897854,0.8021815222,1.4293457361000002,0.9168897854,1.3670854222,1.4150881085
-ETT_1D,1.3413765406,1.3268087247,1.3611067371,1.3679488602,1.3461045465,1.3461045465,1.4991782178,1.4174248495,1.4122431037,1.4311893424,1.4485203425,1.437554375,1.4915469632,1.4615227122,1.493070532
-ETT_1H,1.1259593459,1.1177931379,1.1239074995,1.1128977698,1.126722477,1.126722477,1.1773747941,1.1439289261,1.2518551239,1.2616150196,1.284690664,1.6020946418,1.3227159047,1.7184142013,1.7823323561
-ETT_1W,2.6985268972,2.6203818352,2.6215325512,2.6388480518,2.6260535479,2.6260535479,2.8095121652,2.7153947044,2.6874358146,2.7471493707,2.8368188855,2.6393182441,2.6201185499,2.6201185499,2.7818783534
-LOOP_SEATTLE_1D,0.9599506578,0.9691232143,0.9509504834,1.0267654131,0.9859320366,0.9859320366,0.9622221749,0.9847669395,0.9983198527,0.9888675362,1.0222727765,1.0016712996,1.1753801207,2.1046903302,2.373789824
-LOOP_SEATTLE_1H,0.7939256021000001,0.8196171978,0.7539313166,0.8716561378000001,0.9188719391,0.9188719391,0.8527195266,0.9012445092,1.3516779911,1.3516779911,1.1797622806,1.6371768899,1.3516779911,1.7163837446,1.9650972819
-LOOP_SEATTLE_5T,0.6812013944,0.6919744542,0.7344527308000001,0.6999688034,0.8058940043,0.8058940043,0.7953950095000001,0.7671902281,0.9579580055,0.9670797236,0.9937342132,0.9723147042,0.8255932621000001,1.0149350727,1.1722532487
-M_DENSE_1D,0.7721472947,0.9065688429,0.8575514804000001,1.0278691722,0.9249126529,0.9249126529,0.9194900606,0.8999893558000001,1.050932514,1.168959753,1.0771913138,1.0868806507,1.3500254954,1.72924802,1.7668414689
-M_DENSE_1H,0.7132003566,0.7118568012000001,0.6693472657,0.7547859889,0.7173406545000001,0.7173406545000001,0.7953014020000001,0.775167995,1.1917704339,1.1833753219,1.4265921364,1.4834949349,1.2398526574,2.9336598204,3.2462087048
-SZ_TAXI_15T,0.4999875762,0.5028743392,0.5037458638,0.5100538324,0.5100343925,0.5100343925,0.5231892934,0.5133618160000001,0.6992652752,0.6992652752,0.5704736672,0.6812952229,0.6992652752,0.7537395688,0.7757872137
-SZ_TAXI_1H,0.4878765611,0.4985809825,0.5174781061,0.4938355877,0.5054399823,0.5054399823,0.5369530543000001,0.6129421994,0.5582147152,0.6365009349,0.7816119684,1.6334537315,0.6288121204,0.7531606604000001,0.8861734094
-australian_tourism,0.8548582992,0.9757973332,0.9190089649,1.1349816052,1.1608053998,1.167418807,0.8868052992000001,0.9146409764,0.9323052664,1.0124394981,1.0449349521,0.9667110204,1.0994521146,1.5829350567,1.7960279922
-bizitobs_l2c_1H,0.3841207818,0.4680641032,0.4101674728,0.4671656853,0.4308821616,0.4308821616,0.4458486692,0.4647078621,0.7567537453000001,0.7748607972,0.7957254005000001,0.8231641016,1.0658712657,0.7707155721000001,0.7758078113
-bizitobs_l2c_5T,0.5169197944,0.7958700059,0.5787129625,0.7135649119,0.8001548681,0.8001548681,0.6193328173,0.4807818165,0.8068916121,0.9163295742,0.8740253941,0.8137418066000001,1.0666676717,0.7577504543,0.9386117981
-boomlet_1062,0.6776940987,0.6804959751,0.6916399154,0.669096311,0.7155932877000001,0.7110111948000001,0.6864002083,0.7574670104,1.0019575039,0.9510023935,1.0704423896,1.0502749806,0.9949683457,1.307870931,1.422512019
-boomlet_1209,0.7987706683,0.8520639537,0.8179153246,0.7440166652,0.8596275988000001,0.8460080897000001,1.107972646,0.8887982072,1.0454166675,1.0378800323,1.1056064071,1.1827230135,1.1827230135,1.0545734336,1.2621289177
-boomlet_1225,0.2322508868,0.2338512692,0.2365234795,0.2291020931,0.2436207845,0.2540221924,0.2509252394,0.2531870103,0.2904167694,0.2751876371,0.3003114491,0.3006939878,0.3736491907,0.3736491907,0.38068424
-boomlet_1230,1.3704917157,1.3783150604,1.3669883226,1.2932815419,1.4190498379,1.347504774,1.6398564855000002,1.4532188179,1.5513275237,1.5864985932,1.5854205097,1.7204862029,1.8986209303,1.563197,1.7478394522
-boomlet_1282,0.5228616907,0.4966357089,0.4938256811,0.4982816626,0.5229602404,0.5646901456,0.506661869,0.5169242862,0.6397695821,0.5924898465,0.6909553164000001,0.6889630667000001,0.8299194032,0.8299194032,0.8508297266
-boomlet_1487,0.5106600397000001,0.5187314221,0.5025569448,0.4821270726,0.5276634634,0.5268262285,0.6139593947,0.5573472172,0.6620511075000001,0.6561515279,0.6861485358,0.6618622173,0.7188988334,0.7369858245,0.8583652247
-boomlet_1631,0.7130379666000001,0.7478094028000001,0.7223220370000001,0.7231858750000001,0.7328154067,0.7407561889000001,0.8463187427000001,0.7619771372,0.9935726652,0.9935726652,0.7886354003,0.7850787279,0.9935726652,0.8639891085,0.8923058214
-boomlet_1676,0.7074172167,0.7093011606,0.6981823962,0.6906502502,0.7128114239000001,0.7192465308,0.958687274,0.7138061614,0.952905272,0.952905272,0.7772233453,0.7609898935,0.952905272,0.8198719238000001,0.8566079879
-boomlet_1855,0.5381849547,0.5278191175,0.5502667915,0.5280890902,0.543045447,0.5502545471,0.6402148315,0.59756436,0.7137233958,0.7334421170000001,0.7479719187,0.7732640618000001,0.8339307546,0.680593968,0.6861913673000001
-boomlet_1975,0.1607432077,0.2344681763,0.2045403051,0.149489781,0.2722386223,0.2157351982,0.2447173505,0.2358591523,0.5885200818,0.6455594326,0.5697333157000001,0.6992926357,0.9041727794,0.6991117215,0.7004386998000001
-boomlet_2187,0.8118519659000001,0.8085306304000001,0.8936367348,0.881456274,0.9069913111,0.878419842,1.0030305987,0.9507442206,1.18136692,1.2812206603,1.2716040444,1.2537471952,1.3439772563,1.15749623,1.1700732484
-boomlet_285,0.3587658623,0.4007113979,0.4216519838,0.3609691019,0.470509393,0.5250469024000001,0.3931546055,0.5605665968,0.7526380608000001,0.7883015466000001,0.7305756426000001,0.8132574193000001,1.2487633378,1.2487633378,1.2792135195
-boomlet_619,0.4234249126,0.4418338294,0.4363557101,0.403240616,0.4306276617,0.5940973904,0.4305322873,0.435636804,1.0046773699,0.7170247042,1.0200015813,1.0937660371,1.1235570145,1.1235570145,1.1484320675
-boomlet_772,0.331309455,0.3435360993,0.3429964064,0.3279337304,0.3651670055,0.3956163828,0.3608040826,0.3920487456,0.5801758985000001,0.5361147759,0.6163309557000001,0.6702469495000001,0.6290173275000001,0.6290173275000001,0.6468050268000001
-boomlet_963,0.8390323132,0.8276719248000001,0.8600331800000001,0.8253396814,0.8725943582000001,0.8956312939000001,0.8758112548,0.849173272,1.1173343797,1.1099255146,1.1004605986,1.2932431478,1.1186074012,1.1186074012,1.1367798246
-ecdc_ili,2.7551221016,2.8841261459,2.6316220318,3.0233475859,2.9286752636,3.1427261211,2.8110944773,3.0367688213,4.3217227901,4.1963805493,4.2528905756,4.5974303581,4.1680850656,4.1680850656,4.3553339847
-entsoe_15T,0.5846139379,0.5986061889000001,0.5903166384,0.7502653602,0.5933312818,0.6061735307,0.6094490505,0.7577799507,0.9314587074,0.9314587074,0.7298063048,4.0070290526,0.9314587074,1.9045500461,2.0547959624
-entsoe_1H,0.5379602554,0.585380389,0.5848723966,0.5907812391,0.5924217639,0.556447549,0.5377189816,0.8117895189000001,1.1144887827,1.1176425426,1.1626008244,2.0475241128,1.1014887222,2.0553481854,2.1575810109
-entsoe_30T,0.54381558,0.6645923404,0.6957880272,0.6254143824,0.5973972755,0.6326216104,0.6350493808000001,0.7796412031000001,1.0577908951,1.2299298482,1.0040370692,3.2738378374,1.2161814769,2.0733355971,2.0462297626
-epf_be,0.6470253268,0.6743990368,0.6101898021000001,0.7065052879,0.6709379406,0.7272945434,0.6701844387,0.7222255864,0.9813953164,1.0947820348,1.0193650689,1.3929299519,1.0270532112,1.3609414277,1.3744478654
-epf_de,0.6042262072,1.2971032281,1.2798889483,1.3369704527,1.2281783328,1.2655265893,0.5674762585,1.3227461317,1.3821017935,1.6231053542,1.407198376,1.741711499,1.7085955085,1.7417240476,1.7695511326000002
-epf_fr,0.4500649094,0.5040405462,0.4906901724,0.5253012985000001,0.5034595344,0.5638378752000001,0.4181703173,0.5243569292,0.7410301647,0.988839379,0.8447495724,0.9665291295,0.8501188428,1.160344512,1.1771067225
-epf_np,0.8501928867,1.22255132,1.4402381231,1.3589475358,1.1997562864,1.2409440197,0.8709423510000001,1.0947012554,1.514694987,1.7096191588,1.514020593,2.3244018164,1.7613036184,2.3154975383,2.3147871788
-epf_pjm,0.4718977319,0.5057793683,0.5310653587,0.5821871052,0.5630774342,0.5357283349,0.5339815846,0.5214143203,0.5294817721,0.5572886801,0.6832480189,0.9847286701,0.581167898,0.9849340527,0.9983941216
-ercot_1D,1.1382701719,1.0650322509,1.068637649,1.1712118632,1.2043414824,1.150459162,1.2627737925,1.1023893836,1.5207401049,1.3979692163,1.5801931826,1.5952697559,1.5987746508,1.5840542166,1.5904988169
-ercot_1H,1.3575339606,1.3770443905,1.4902437934,1.4168899965,1.3940551857,1.3914155571,1.5551131815,1.4647042938,1.610467295,1.4621684481,1.5835893744,3.196839145,1.5757631018,3.1089998641,3.1208481544
-ercot_1M,0.9503422041,1.0121701532,0.9788665964,1.2709588716,1.2434972767,0.9921791164,1.2288572299,1.0612308441,0.9720301101,0.9971198091,1.2051001185,0.9527701547,1.112833491,4.4343715733,4.8730234607
-ercot_1W,1.2194616983,1.2277888798,1.1887344162,1.3470027368,1.3362468506,1.2261966297,1.6253611467,1.4770568791,2.6623042168,2.6323348127,2.66207578,2.6788985082,2.6319098716,2.6319098716,2.6294908648
-favorita_stores_1D,1.1401981382,1.1934094375,1.1675502677,1.2803612723,1.2046882591,1.2688834676,1.1942878338,1.2200293401,1.3400112075,1.4187797295,1.3758675565,1.3798606395,1.7590444116,1.8830413748,1.8964809396
-favorita_stores_1M,1.9751999633,2.2147063817,2.2337935781,2.2864924589,2.3235561779,2.4178143615,2.1757603336,2.4060388473,2.1181450497,2.207495882,2.1335008012,2.1221172271,2.2823009488,1.9974006051,2.0640825589
-favorita_stores_1W,2.2987283752,2.4234607638,2.2900534378,2.5080339706,2.5772702404,2.4748929287,2.5267645799,2.561243423,2.433980351,2.580066785,2.4768022229,2.5164520445000003,2.5171133578,2.5171133578,2.55263811
-favorita_transactions_1D,0.8493705653,1.3492617128,1.1514968036,1.1514968036,1.1514968036,1.1514968036,1.6727335501,1.324712294,1.2657781225,1.7409399844,1.2511063806,1.2765051213,1.820047183,1.8618151915,1.8593809033
-favorita_transactions_1M,1.2531106718,1.3596174423,1.331599249,1.6656037195,1.6105440091,1.6365070781000002,1.4261630874,1.6184833791000002,1.3044406101,1.4642003185,1.4898451778,1.3424992981,1.5197338218,1.4299319146,1.6051275429
-favorita_transactions_1W,1.498824744,1.7464561746,1.7479484715,1.9303724027,1.6846164482,1.7479484715,2.436781004,2.0992640534,1.6323769125,1.7908498043,1.7230820362,1.6826500128,1.5401800863,1.5401800863,1.6333667243
-fred_md_2025/cee,4.1602404727,3.9913296592,5.4995170613,5.4995170613,5.4995170613,5.4995170613,4.6737821611,5.6396642877000005,4.1492831073,6.3656916747,4.7268175598,4.1316582891,11.870151993,6.7148852073,4.6902098373
-fred_md_2025/macro,6.7212231389,6.2436277327,6.8925263969,6.8925263969,6.8925263969,6.8925263969,7.7467550529,6.9855690276,6.4760151224,7.2903875617,6.7085954414,6.5541834396,11.2729488966,7.1693509539,6.6706675334
-fred_qd_2025/cee,2.7861575553,2.5007210568,2.5230363656,2.1472810882,2.7932979017,2.9552801855,2.9044098381000003,4.1237296063,2.2117006108,2.3066503643000003,2.5784767122,2.4969928698,5.7264703884,4.3666041366,2.5885780238
-fred_qd_2025/macro,4.2345766276,4.2532915346,4.2312964035,4.0310227379,4.3026427477,4.4204306869,5.2932799619,5.0800217147,4.2291679217,4.4837099549,4.4089305862,4.4466602526,6.2532543175,4.9115310592,4.3735327936
-gvar,0.7105251308,0.7074487020000001,0.7192074299,0.7017595921,0.7279795748,0.7294646076,0.9010948704,0.8613958999,0.6831004748,0.7032889301,0.6996326439,0.7021303869000001,0.9186013653,0.7430842013000001,0.6965206846
-hermes,0.7761148416,0.8309937727000001,0.7871785508,1.2023433786,0.8853610442000001,0.8579267331,0.9123318673,0.959480348,1.8121264962,1.5317415273,1.8477529328,1.9852238872,1.9945193434,1.9945193434,2.0472163243
-hierarchical_sales_1D,0.6889480283,0.6853563806,0.6882027162000001,0.6820968126,0.6860304896,0.6860304896,0.7080055758,0.7291028689,0.8130155521,0.7735716427,0.8693462262,0.8639978187,0.9949475154,1.0417563414,1.0525564501
-hierarchical_sales_1W,0.7539268543000001,0.756678049,0.7507699991,0.7789897858,0.7733116574000001,0.7733116574000001,0.7740136921,0.8055524179,0.9004451123,0.9125112599,0.9154643589,1.0341883947,1.1617080217,1.1617080217,1.1894416421
-hospital,0.8734575212000001,0.8749408193,0.8629412822,0.9208820395,0.8888399515000001,0.8888399515000001,0.8808779374,0.9575868855,0.8766229998,0.9191221959,0.9215507227,0.9080008209,1.0188066511,1.10504708,1.1736654928
-hospital_admissions_1D,0.7170504383,0.717979448,0.7193032164000001,0.7172821424,0.7187636137000001,0.7195191066000001,0.7244514742,0.7225061727000001,0.7213815906000001,0.7209334531,0.7428646667000001,0.7211231617,1.0268297216,0.9746856833,0.9816293494
-hospital_admissions_1W,0.7508052527,0.7609831368000001,0.7544838609000001,0.7781410151,0.7643243630000001,0.7622844235,0.7534416615,0.7598582682,0.7551866274,0.7540567649000001,0.7779256247,0.7540854723,1.0436412698,1.0436412698,1.0831848605
-jena_weather_10T,0.4309090154,0.4789954609,0.4373143782,0.4522280598,0.4805248693,0.4805248693,0.516391649,0.4900412345,0.7300235109000001,0.7300235109000001,0.4933654141,0.6119521222000001,0.7300235109000001,0.52703557,0.5533241331000001
-jena_weather_1D,1.4035573159,1.366539178,1.3763415621,1.411132821,1.3722903668,1.3722903668,1.4445769356,1.4276462192,1.5642224637000002,1.5277037002,1.6406694179,1.8504210406,1.8965701168,1.6994317303000002,1.7748810582
-jena_weather_1H,0.4373910122,0.437909858,0.4392356659,0.4476285627,0.4542878163,0.4542878163,0.5111184304,0.4459427668,0.4663908322,0.5091821891,0.4846005807,0.567832109,0.7399001552000001,0.5374935394,0.544552084
-kdd_cup_2022_10T,0.5199208546,0.5903298173,0.5903298173,0.5903298173,0.5903298173,0.5903298173,0.6951920674000001,0.5903298173,0.8187009928000001,0.8187009928000001,0.8117980851000001,0.7837343985,0.8187009928000001,0.7815687018,0.8809057293
-kdd_cup_2022_1D,0.8993091785,0.8990205149,0.8934942013,0.8967645421,0.9125687218,0.9069594704,0.9150751748,0.9235145261,0.9701127541,0.9552154519,0.9764039863,0.9888169951,1.0844353298,1.0306171345,1.0552765612
-kdd_cup_2022_30T,0.5419430891,0.5339588215000001,0.6348935773000001,0.5309168604,0.5156770351000001,0.6672184767,0.6765431227,0.5884124519,0.7681145469,0.7706658108000001,0.8416018012,0.8428842456000001,0.8221839563000001,0.8375670849,0.8782613104
-m5_1D,0.8798761359,0.8753446971000001,0.8851788247,0.8851788247,0.8851788247,0.8851788247,1.2236286692,0.9677992163,1.2236286692,1.0630838856,1.0805686532,1.0632996272,1.2236286692,1.3575007837,1.3783870781
-m5_1M,1.1638225815,1.1629101784,1.1576052027,1.2421800194,1.1773037824,1.1852216988,1.1871283177,1.199580668,1.1819548335,1.2131357033,1.2589934317,1.2139006267,1.3266370526,1.2671440715,1.3915794965
-m5_1W,1.1400355515,1.1476955468,1.1647431618,1.1448252405,1.1500678738,1.1647431618,1.1604987437,1.1330759513,1.151797309,1.1567620351,1.1697733846,1.1672033988,1.3382424884,1.3382424884,1.3824089509
-proenfo_gfc12,0.8120010668000001,1.1241553096,1.0781317629,1.0781317629,1.0781317629,1.0781317629,1.0338246822,0.9935522058,1.5463300248,1.3848285732,1.5236522096,2.8114372878,1.428177457,2.6291046656,2.7528132313
-proenfo_gfc14,0.5386864242,0.9119046182,0.9285112769,0.9285112769,0.9285112769,0.9285112769,0.6406314316,0.463580052,1.1044049767,1.1681324943,1.185656643,1.3185527521,1.1988543772,3.7072504144,3.965045322
-proenfo_gfc17,0.6103924746,1.1380901313,1.0977005202,1.0977005202,1.0977005202,1.0977005202,0.8553343104000001,0.5526319982,1.4215223964,1.3821477017,1.3687323787,2.4127647331,1.5845048132,2.9066491955,3.063129907
-redset_15T,0.9320904759,1.0022286368,0.8687945356000001,0.9533624543,1.1189004499,1.4783946982,2.1719934434,1.3649343142,1.0323384841,1.0323384841,1.597597259,1.0323384841,1.0323384841,32.0340548113,33.693269119600004
-redset_1H,1.5030009285,1.4573336789,1.4842036779,1.4166961403,1.5362745519,2.6712489552000003,1.4385006498,1.5646420584,1.761972427,1.8532418262,2.0202444582,2.2287068299,1.6826194185,8.1555516024,8.1864715752
-redset_5T,0.7864618392,0.9453718328,0.8482881600000001,0.8563860838,0.9344199171,1.1699231408,0.8423602104,1.0328105291,2.1640102467,2.0719155469,2.3397807513,1.0410587245,1.0410587245,3.1480546918,3.498018604
-restaurant,0.8599090122,0.8522179843000001,0.8503096514,0.8858745474,0.8659689945,0.8659689945,0.8689264082,0.8630231098000001,0.8717386477,0.9400606666,0.9184892419,0.9391232286,1.1194990361,1.3993248163,1.4760866124
-rohlik_orders_1D,1.1869082024,1.2033753235,1.2504095981,1.3775879584,1.176067019,1.3016096527,1.547892006,1.3992895671,1.3812243729,1.5623634243,1.5185276042,1.4870315996,1.7782872152,2.4354371077,2.4953294972
-rohlik_orders_1W,1.5470873451,1.5828643626,1.6591862082,1.7980310562,1.8740325635,1.7219242334,1.9886917666,2.0951936703,1.71276995,1.7324467216,1.7121743288,1.7583263983,1.7311823321,1.7311823321,1.7566346002
-rohlik_sales_1D,1.1015615422,1.3844809879,1.3237942192,1.4539084863,1.4020532381,1.3870630122,1.6150435602000002,1.3442522277,1.4759756392,1.5092369137,1.4939231302,1.4985533338,1.6150435602000002,1.7485285579,1.7665358583000002
-rohlik_sales_1W,1.559672095,1.7354311654,1.6890705942,1.8031174582,1.8214908337,1.8466635227,1.5204800642,1.8996288065,1.8249729553,2.03785374,1.8363584706,1.8899729917,1.9154827568,1.9154827568,1.990816422
-rossmann_1D,0.3557646389,0.6600669122,0.6105528999000001,0.6814055866000001,0.6480208978,0.6371181918000001,0.2944517637,0.6154624197,0.6678317895,0.6544020781000001,0.7447792464,0.6912520753,0.7885548119,1.6195142378,1.6307564391
-rossmann_1W,0.3711869984,0.6218198341,0.654277349,0.6318509753,0.6439797931,0.6451761650000001,0.3046311863,0.6790382249,0.6512769978,0.6688824183000001,0.6643635235,0.6684782378,0.7960291356,0.7960291356,0.8779634547
-solar_1D,0.7564704559000001,0.7780027014,0.7870867805,0.7929503108,0.8134821640000001,0.8068081935,0.7848225151,0.7866198335,0.7950641496,0.8072395918,0.8376174094000001,0.8017773736,0.9900696291,0.9666968847,1.1102918555
-solar_1W,1.1789596563,1.5031298228,1.4613966872000002,1.798309645,2.0395669896,1.2719881759,1.0931583831,1.1001413936,1.7922537528,1.7335090246,2.0936290706,1.6267514936,1.9187253475,1.9187253475,2.5896105932
-solar_with_weather_15T,0.8640995981,1.0486903807,1.1152651553,0.9403149212,1.0763836253,0.9765226278,0.9444749979,1.1181879294,1.0500997059,1.0500997059,1.2728696954,2.4161932928,1.0500997059,1.989464318,2.2100824084
-solar_with_weather_1H,1.0201461351,1.1582715132,1.0512633641,1.0585275477,1.1358492836,1.0720382243,0.8628512004000001,1.3031564924,1.3147978753,1.1133137476,1.5354303629,2.2682380188,1.0619359164,2.2682071361,2.2668539311
-uci_air_quality_1D,1.3132142732,1.4312317693,1.5147124464,1.5881022678,1.4417059353,1.3886570934,1.5308266811,1.3990875663,1.3836855571,1.5585347706,1.4428092347,1.3629041949,1.7337243007,2.1090746157,2.2085178759
-uci_air_quality_1H,1.020596853,1.1061991604,1.1225931257,1.1111893485,1.196474258,1.1161574722,1.1751368971,1.1924183278,1.2991890754,1.3697649929,1.3457656206,10.6979097385,1.4424742241,1.681575288,1.7613798983
-uk_covid_nation_1D/cumulative,9.4466999399,8.929376688,7.9247162242,7.7416129012,8.1949951543,10.4547608004,16.8706126207,18.3255496813,8.8341213691,9.559789598,20.1075262656,8.1052795609,30.7671471585,25.4400086758,18.9781830611
-uk_covid_nation_1D/new,2.5004449026,2.3835910907,2.5834199323,2.4705193977,2.5489344845,2.5913882505,2.5101268505,2.5802902251,3.1171908684,4.1917555777,2.8839990291,3.0620508133,2.8996526561,2.9050530888,2.9572817188
-uk_covid_nation_1W/cumulative,3.5475305311,3.609263087,5.0226305819,3.6488116454,3.6495679007,4.3362420429,3.1721656359,5.8508558031,2.5352192342,10.5120021053,5.7016692031,2.8531029011,8.7736590065,8.7736590065,5.5370707385
-uk_covid_nation_1W/new,6.2817282977,5.4013881506,4.6024864277,6.3940786735,4.5611907188,5.1432817198,4.8064190531,4.2487016855,6.252228662,13.5408520302,5.813977235,6.0384476605,5.8035952813,5.8035952813,6.0322653616
-uk_covid_utla_1D/new,4.5459837539,4.4705040881,4.1803353814,4.8383241752,4.2104220413,4.2680470788,4.582072345,4.1215258287,6.2345012475,8.1828726428,5.820038846,6.304086527,5.2400849649,5.9561884523,6.0662829111
-uk_covid_utla_1W/cumulative,19.8762832276,21.7652806241,21.5163025658,18.8192829039,21.8269429168,20.0769214614,19.7677867998,27.7918750277,15.8503479662,15.7434113202,21.4127050868,17.1124689005,26.0772211706,26.0772211706,20.9787577016
-us_consumption_1M,1.7363781866,1.7646639097,1.931250606,1.8634380437,1.7680304079,1.8462616555,1.8857443126,2.1034739353,1.7231034056,1.8263458048,1.9291138764,1.7093004134,3.1370276717,2.1549055801,1.9442203469
-us_consumption_1Q,2.164693101,2.2808950609,2.3646254512,2.1108276882,2.2065057075,2.2129312479,3.7648783035,3.2110317266,2.2422219291,2.3510275878,2.6435650081,2.2553091192,3.8594112114,2.9276892853,2.513273914
-us_consumption_1Y,4.5651596428,4.5542723191,4.8010821783,4.7990321771,5.8237789501,5.0426493832,5.0551837428,6.4807387204,4.453578755,4.2587442225,5.619694319,4.7574382247,7.3594854558,7.3594854558,5.51566537
-walmart,0.8167399684000001,0.8862297442,0.8614820536000001,1.1257617414,1.0559167299,0.9670980075,0.8317842871000001,0.9842192099,1.3563890452,1.2473824838,1.4178781632000002,1.7226801126,1.5240930953,1.5240930953,1.7491246911
-world_co2_emissions,3.253441165,3.218938845,3.4342160899,3.2426033895,3.4946390667,3.3725385277,3.2702702323,4.0694291919,3.1762491991,3.3062345239,3.2294516112,3.2990698517,3.6978220012,3.6978220012,3.1983782167
-world_life_expectancy,1.4501894619,1.3385484305,1.4011006524,2.0742068807,2.147670042,1.6264414789,1.3478888107,1.7987773288,1.5403532831,1.4974247187,1.7124546782,1.5355990211,2.2537764593,2.2537764593,1.8420117568
-world_tourism,3.7800260773,3.8100716189,4.1100857021,3.7867597144,3.9098929656,3.9050210198,3.3270326033,4.7392839763,3.0020746256,3.0968725539,2.9312038042,3.4851749726,3.8281690603,3.8281690603,2.8785102461000003
diff --git a/tables/pivot_MASE_baseline_imputed.csv b/tables/pivot_MASE_baseline_imputed.csv
deleted file mode 100644
index ece3b69ffd27a50651d6ee5d1bd42588640e4ce5..0000000000000000000000000000000000000000
--- a/tables/pivot_MASE_baseline_imputed.csv
+++ /dev/null
@@ -1,101 +0,0 @@
-Task name,Chronos-2,TiRex,TimesFM-2.5,Toto-1.0,Moirai-2.0,Chronos-Bolt,TabPFN-TS,Sundial-Base,Stat. Ensemble,AutoARIMA,AutoTheta,AutoETS,Seasonal Naive,Naive,Drift
-ETT_15T,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-ETT_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ETT_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ETT_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-LOOP_SEATTLE_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-LOOP_SEATTLE_1H,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-LOOP_SEATTLE_5T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-M_DENSE_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-M_DENSE_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-SZ_TAXI_15T,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-SZ_TAXI_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-australian_tourism,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-bizitobs_l2c_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-bizitobs_l2c_5T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1062,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1209,False,False,False,False,False,False,False,False,False,False,False,True,False,False,False
-boomlet_1225,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1230,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1282,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1487,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1631,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-boomlet_1676,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-boomlet_1855,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1975,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_2187,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_285,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_619,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_772,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_963,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ecdc_ili,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-entsoe_15T,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-entsoe_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-entsoe_30T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_be,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_de,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_fr,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_np,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_pjm,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ercot_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ercot_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ercot_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ercot_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_stores_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_stores_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_stores_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_transactions_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_transactions_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_transactions_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-fred_md_2025/cee,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-fred_md_2025/macro,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-fred_qd_2025/cee,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-fred_qd_2025/macro,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-gvar,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hermes,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hierarchical_sales_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hierarchical_sales_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hospital,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hospital_admissions_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hospital_admissions_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-jena_weather_10T,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-jena_weather_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-jena_weather_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-kdd_cup_2022_10T,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-kdd_cup_2022_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-kdd_cup_2022_30T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-m5_1D,False,False,False,False,False,False,True,False,True,False,False,False,False,False,False
-m5_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-m5_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-proenfo_gfc12,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-proenfo_gfc14,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-proenfo_gfc17,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-redset_15T,False,False,False,False,False,False,False,False,True,True,False,True,False,False,False
-redset_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-redset_5T,False,False,False,False,False,False,False,False,False,False,False,True,False,False,False
-restaurant,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rohlik_orders_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rohlik_orders_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rohlik_sales_1D,False,False,False,False,False,False,True,False,False,False,False,False,False,False,False
-rohlik_sales_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rossmann_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rossmann_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-solar_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-solar_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-solar_with_weather_15T,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-solar_with_weather_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uci_air_quality_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uci_air_quality_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_nation_1D/cumulative,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_nation_1D/new,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_nation_1W/cumulative,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_nation_1W/new,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_utla_1D/new,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_utla_1W/cumulative,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-us_consumption_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-us_consumption_1Q,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-us_consumption_1Y,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-walmart,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-world_co2_emissions,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-world_life_expectancy,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-world_tourism,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
diff --git a/tables/pivot_MASE_leakage_imputed.csv b/tables/pivot_MASE_leakage_imputed.csv
deleted file mode 100644
index 6cfe2e5f0e1e500b883cd628b0b2a1886aaca973..0000000000000000000000000000000000000000
--- a/tables/pivot_MASE_leakage_imputed.csv
+++ /dev/null
@@ -1,101 +0,0 @@
-Task name,Chronos-2,TiRex,TimesFM-2.5,Toto-1.0,Moirai-2.0,Chronos-Bolt,TabPFN-TS,Sundial-Base,Stat. Ensemble,AutoARIMA,AutoTheta,AutoETS,Seasonal Naive,Naive,Drift
-ETT_15T,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-ETT_1D,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-ETT_1H,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-ETT_1W,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-LOOP_SEATTLE_1D,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-LOOP_SEATTLE_1H,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-LOOP_SEATTLE_5T,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-M_DENSE_1D,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-M_DENSE_1H,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-SZ_TAXI_15T,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-SZ_TAXI_1H,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-australian_tourism,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-bizitobs_l2c_1H,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-bizitobs_l2c_5T,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-boomlet_1062,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1209,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1225,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1230,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1282,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1487,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1631,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1676,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1855,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1975,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_2187,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_285,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_619,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_772,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_963,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ecdc_ili,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-entsoe_15T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-entsoe_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-entsoe_30T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_be,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_de,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_fr,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_np,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_pjm,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ercot_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ercot_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ercot_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ercot_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_stores_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_stores_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_stores_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_transactions_1D,False,False,True,True,True,False,False,False,False,False,False,False,False,False,False
-favorita_transactions_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_transactions_1W,False,False,True,False,False,False,False,False,False,False,False,False,False,False,False
-fred_md_2025/cee,False,False,True,True,True,False,False,False,False,False,False,False,False,False,False
-fred_md_2025/macro,False,False,True,True,True,False,False,False,False,False,False,False,False,False,False
-fred_qd_2025/cee,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-fred_qd_2025/macro,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-gvar,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hermes,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hierarchical_sales_1D,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-hierarchical_sales_1W,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-hospital,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-hospital_admissions_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hospital_admissions_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-jena_weather_10T,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-jena_weather_1D,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-jena_weather_1H,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-kdd_cup_2022_10T,False,True,True,True,True,False,False,True,False,False,False,False,False,False,False
-kdd_cup_2022_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-kdd_cup_2022_30T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-m5_1D,False,False,True,True,True,False,False,False,False,False,False,False,False,False,False
-m5_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-m5_1W,False,False,True,False,False,False,False,False,False,False,False,False,False,False,False
-proenfo_gfc12,False,False,True,True,True,False,False,False,False,False,False,False,False,False,False
-proenfo_gfc14,False,False,True,True,True,False,False,False,False,False,False,False,False,False,False
-proenfo_gfc17,False,False,True,True,True,False,False,False,False,False,False,False,False,False,False
-redset_15T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-redset_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-redset_5T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-restaurant,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-rohlik_orders_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rohlik_orders_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rohlik_sales_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rohlik_sales_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rossmann_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rossmann_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-solar_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-solar_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-solar_with_weather_15T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-solar_with_weather_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uci_air_quality_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uci_air_quality_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_nation_1D/cumulative,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_nation_1D/new,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_nation_1W/cumulative,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_nation_1W/new,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_utla_1D/new,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_utla_1W/cumulative,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-us_consumption_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-us_consumption_1Q,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-us_consumption_1Y,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-walmart,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-world_co2_emissions,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-world_life_expectancy,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-world_tourism,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
diff --git a/tables/pivot_SQL.csv b/tables/pivot_SQL.csv
deleted file mode 100644
index 0625c9d9e914f6144b3dd53b46ecf0cf4893e263..0000000000000000000000000000000000000000
--- a/tables/pivot_SQL.csv
+++ /dev/null
@@ -1,101 +0,0 @@
-Task name,Chronos-2,TiRex,TimesFM-2.5,Toto-1.0,Moirai-2.0,Chronos-Bolt,TabPFN-TS,Sundial-Base,Stat. Ensemble,AutoARIMA,AutoETS,AutoTheta,Seasonal Naive,Naive,Drift
-ETT_15T,0.5458017173,0.5682984928,0.5771622748,0.5930359987,0.5737369405,0.5737369405,0.6023976568,0.597092731,0.7624529909000001,0.7624529909000001,1.2626027246,1.0985228656,0.7624529909000001,1.3268766411,1.3649829587
-ETT_1D,1.1315469549,1.1014613305,1.1440582667,1.1431991194,1.1321824157,1.1321824157,1.2302029516,1.2461046836,1.2707356751,1.2587593653,1.3559628802,1.3789083105,1.3728451389,1.4222525092,1.4528881358
-ETT_1H,0.8829665685,0.8735827998000001,0.8822637379,0.8726715063,0.9435863248,0.9435863248,0.93321436,0.9634114324,1.2717102201,1.052404926,1.7645010362,2.0612851578,1.2068899431,2.3136589326,2.4221862813
-ETT_1W,2.3200722308,2.264520334,2.2485701754,2.2807752001,2.2795034775,2.2795034775,2.4105571965,2.4688224531,2.4073690783,2.4423112635,2.39380306,2.603472326,2.5092678823,2.5092678823,2.63212947
-LOOP_SEATTLE_1D,0.7791980564000001,0.7923359463,0.7738014961,0.8309489631,0.8051325971000001,0.8051325971000001,0.7804864737,0.8625023325000001,0.8198461462000001,0.8099517857,0.8246251865,0.8528499579000001,1.0461703776,2.4710363002,2.6285047085
-LOOP_SEATTLE_1H,0.6390561899,0.6558214249000001,0.6206804936,0.6981449455000001,0.7646847805,0.7646847805,0.6785128884,0.7695770803,1.5008790861,1.5008790861,2.6385256214,2.8320370482,1.5008790861,3.5094786471,3.7005853436
-LOOP_SEATTLE_5T,0.5325340237,0.5488731010000001,0.5953126390000001,0.5612747662,0.7101241523,0.7101241523,0.6414697138000001,0.6606205367,1.0436727136,1.0012742792,1.1550368249,1.1098659427,0.7515879948,1.8612988657,2.0191661844
-M_DENSE_1D,0.6463243558,0.7460414464,0.7075343346,0.8417803746,0.7589658968,0.7589658968,0.7560067856,0.7844887054,0.9647884446,0.9701754768,1.0734765679,1.1434781616,1.262653406,2.1937270172,2.2311998044
-M_DENSE_1H,0.5854558830000001,0.5867504602,0.556059175,0.6211696495,0.5952543328000001,0.5952543328000001,0.6460899053,0.6604636921,1.1265341106,1.0625833478,59.0195299046,3.0980400553,1.3040659305,3.8689657918,4.0939855017
-SZ_TAXI_15T,0.3932968835,0.3955981846,0.3966454244,0.4014560725,0.413175328,0.413175328,0.4285012823,0.4438538338,0.5602190946,0.5602190946,2.3550253131,0.5126750232,0.5602190946,1.3787889942,1.4174386493
-SZ_TAXI_1H,0.3977234578,0.4050422075,0.4156030479,0.4183039495,0.4264135301,0.4264135301,0.4935099732,0.5170317067,0.6894973186000001,0.6584161139,12313683383.147636,0.983741696,0.8375139431,2.6856786961,2.9588624372
-australian_tourism,0.6769555487000001,0.7859715496,0.7323027992000001,0.8897084606000001,0.9175231952,0.9282641589,0.6989805801,0.7908486579,0.7300394505000001,0.8009680433,0.7615891772000001,0.8129699438,0.8947401082,1.5916364579,1.7922461374
-bizitobs_l2c_1H,0.3010456253,0.3662951077,0.3261346281,0.3700783044,0.3419873985,0.3419873985,0.3540742815,0.4121569345,0.6336059931,0.6185436377,0.7179372865,0.6824779096,0.8851906828,0.6654111557,0.669961201
-bizitobs_l2c_5T,0.4108408982,0.6788551053,0.4610602059,0.5953979102,0.7570014323,0.7570014323,0.4854874227,0.4004194445,0.7197078839000001,0.8247104427,0.7310899228000001,0.7495634618,0.9226397442,0.6779088155,0.7933793841
-boomlet_1062,0.5523284751,0.5548997157000001,0.5732470754,0.5478320341,0.5927620413,0.6387175665,0.7083924656,0.6467962229,0.9851058144,0.7541477798,1.3088562197,1.3443713412,0.9105473153,4.3036993716,4.6588724435
-boomlet_1209,0.6799099954000001,0.7293072077,0.7045922388,0.645080569,0.7562347037,0.7840808515000001,1.0159986311,0.7807326884,2.4692530935,1.1085996591,1.26373922,2.7292377595,1.26373922,3.2386174338,3.5173454757
-boomlet_1225,0.1864128972,0.1876278604,0.1900803084,0.1833820954,0.1948503398,0.2030750841,0.2145097606,0.222714996,0.2803755249,0.2348969847,0.3176935124,0.3296940654,0.7453858177,0.7453858177,0.758570547
-boomlet_1230,1.201031991,1.1859324313,1.1874247824,1.1375594979,1.2863247224,1.266108854,1.6130013764000002,1.3047326747,3.3900350214,1.8500253092,393376667139840.8,3.9779653374,2.0369976474,5.548152717,5.9878393324
-boomlet_1282,0.4211360586,0.4089033383,0.4034160537,0.4069384603,0.4269211119,0.461810646,0.4252624699,0.4521593639,0.7391125197,0.5565242655,0.9135627329,0.9716916511,1.5394068156,1.5394068156,1.5690882811
-boomlet_1487,0.4233194118,0.4270074608,0.4122943587,0.4003928432,0.455761865,0.4824435432,0.7454959652,0.4989559922,0.6807093562000001,0.6560424612,0.7236915730000001,0.8366025999000001,0.8422519568,5.651237163,6.1210676162
-boomlet_1631,0.5718706997,0.5981611197000001,0.5790200299,0.5808311118,0.5907980989,0.6194052562,0.6970609561000001,0.6443979368,0.8513712543,0.8513712543,0.7214099148,0.7282739185,0.8513712543,1.3493380035,1.3890549561
-boomlet_1676,0.5686748679,0.5712459165,0.562625503,0.5544290679,0.5727147225,0.6076896737,0.8311081643,0.6145915641,0.8503822276,0.8503822276,0.7563535779,0.7835312638,0.8503822276,1.3195857419,1.3578116859
-boomlet_1855,0.4615736804,0.4500166174,0.4725778373,0.4524286557,0.464879974,0.4695926826,0.6233137320000001,0.5254199296000001,1.1233499934,1.0829482214,1.1848850765,1.204414213,1.4642665486,3.2734556686,3.2968156747
-boomlet_1975,0.1333320334,0.1921381366,0.1671766157,0.1262384828,0.2195469335,0.1793929044,0.2069952508,0.2023056594,0.5478588809,0.5505765392,0.6113593807000001,0.6292227757000001,0.8427719263000001,0.6114911297,0.6131317081000001
-boomlet_2187,0.7122729535,0.7105001322000001,0.8020040101,0.7637500168,0.8067927027,0.7746853019000001,0.9340158386,0.8515537165,1.2729717642,1.3028566624,1.3069851719,1.389411779,1.6696910974,3.0072867381,3.0279388411
-boomlet_285,0.2900640673,0.3453755039,0.3965655545,0.3185360094,0.4274151922,0.476702899,0.7127008195,0.4879211264,1.2619335645,1.1887776805,1.2033358677,1.3318503729,6.0221504695,6.0221504695,6.1302545159
-boomlet_619,0.3232653903,0.3410809257,0.3398320588,0.309878085,0.3294344187,0.4708614915,0.3305066441,0.3705071077,0.7771722948,0.5544648012,0.8944230183,0.8352158487,1.2751647052,1.2751647052,1.3005697258
-boomlet_772,0.2827797609,0.2962086426,0.2948668716,0.2810029794,0.3139115775,0.3391929948,0.3295303206,0.3520560133,1.1794168073,0.7834129974,531470228.16674185,1.4390517121,2.4909982911,2.4909982911,2.5366947218
-boomlet_963,0.7165952965,0.7184034841,0.7387586339000001,0.7199999526,0.7505200217,0.7786787266,0.7960581525,0.7521897883,1.3348061563,1.1056032467,1.6089011238,1.4536844039,1.6474289575,1.6474289575,1.6758761104
-ecdc_ili,2.2713937157,2.4106397038000003,2.2150356629,2.554483793,2.4544933394,2.6531174908,2.3819418015,2.7054455064000003,3.8373720704,3.6414550365,4.0788004388,3.8437922843,3.7763740551,3.7763740551,3.9298378029
-entsoe_15T,0.4539692649,0.4692753774,0.4709170997,0.5909160927,0.478288762,0.5061680935,0.4837394321,0.6669136238000001,0.7806910892000001,0.7806910892000001,3.0289340615,0.5794334285,0.7806910892000001,1.5177144586,1.6350644474
-entsoe_1H,0.4292730862,0.4701221987,0.4680893711,0.4795713506,0.4870732428,0.4574194964,0.4419444303,0.7440774844,0.8919673675,0.8725110581000001,1.9050298297,0.9723015525,1.0561195152,1.91535268,2.0110168444
-entsoe_30T,0.4335549531,0.5229834486,0.5657877209000001,0.4958133037,0.4883587468,0.5294317223,0.5116608489,0.7215674609,0.8465224818,0.980742171,2.492761432,0.7996836131,1.0103240484,1.6091505549,1.5911802499
-epf_be,0.5032959121,0.5270142745,0.4937475347,0.5648275564,0.5281380165,0.573131006,0.5324134798,0.6465423658,1.2134724304,1.0560628345,1.5343230451,1.4843337008000002,1.1502802436,3.0844576332,3.1070840486
-epf_de,0.491116807,1.0321659189,1.0300427797,1.1058453126,1.0163698014,1.0208059246,0.4402987265,1.1830726521,1.1665641061,1.2777053882,1.4013079444,1.4943830235,1.3876764191,1.4012218785,1.4206596948
-epf_fr,0.3617711398,0.4013687759,0.4091649941,0.4256540696,0.4092032808,0.4389128912,0.3307410445,0.461064889,1.1455989836,1.1580732451,0.8989034107,1.5911735884,1.2455233831,3.8189174071,3.8479452737
-epf_np,0.6581144952,0.9662474004,1.1706350574,1.0368665291,0.9253466826,0.971072301,0.6592724518,0.9450979115,1.2844205231,1.3932103761,1.9332061254,1.2812041765,1.5298484821,1.9403665636,1.9414483144
-epf_pjm,0.3815757864,0.4041710148,0.4263079971,0.4518928599,0.4405348981,0.4216993095,0.4270292068,0.4679144039,0.4870679588,0.48187052,0.9138786189,0.6031844165,0.5152721396000001,0.9298473491,0.9378548257
-ercot_1D,0.8691910278,0.8182837121000001,0.8296777262,0.8800154437000001,0.9470906371,0.9164572277,0.9810503129,0.9267011801,1.2548535439,1.1018625405,1.3820413333,1.4186958416,1.3382664757,1.3903868406,1.4000667198
-ercot_1H,1.0291210659,1.0649765384,1.1510446297,1.095463785,1.0976602987,1.137929015,1.2076871071,1.2226080643,1.259822515,1.1754444345,2.6755880612,1.2749705934,1.3214751318,2.6413247553,2.6942610140000003
-ercot_1M,0.7549419478,0.8060543809,0.7715311289,1.007020102,0.972573257,0.7729483605,0.9028337317,0.917392765,0.7617082171,0.7879913849,0.7564464177,0.9653005355,0.9042858434,3.4990135369,3.8188806322
-ercot_1W,0.9664287997,0.954652414,0.9324255927,1.0602182535,1.0526167016,0.9613116039,1.2284207021,1.2458511259,2.0949542269,2.089948711,2.0679213662,2.1282361494,2.0789778405,2.0789778405,2.0801083861
-favorita_stores_1D,0.9164120516,0.9681608123,0.9493623591,1.0363827033,0.9798213622,1.0322306624,0.9697812299,1.0613262128,1.1970549978,1.2216416053,1.2378827412,1.2731528133,1.6902367853,2.6356836377,2.6562348012
-favorita_stores_1M,1.7943754897000002,1.8559124197,1.9983090236,2.0093638587,2.0913151428,2.0865003553,1.9335734731,2.2542926251,1.942621879,2.0381596319,1.9424462204,1.9416452953,2.0967115946,2.0578284127,2.106703069
-favorita_stores_1W,2.0241017868,2.046240588,1.9683866102,2.1277442598,2.1965497094,2.1010925554,2.1226627361,2.3082226469,2.2196008497,2.2969051079,2.3568206927,2.3159830026,2.4938289104,2.4938289104,2.5295781907
-favorita_transactions_1D,0.684612804,1.0314215727,0.9750458566,0.9750458566,0.9750458566,0.9750458566,1.2251845822,1.1981736735,1.1848435874,1.562168577,1.1813088433,1.2463370552,1.7338216714,2.7303837473,2.7460309898
-favorita_transactions_1M,0.9426020865,1.0893114126,1.1326951058,1.3968989653,1.389630485,1.3584690914,1.2438493019,1.4526874778,1.1521708088,1.2777968435,1.1787496733,1.2743467248,1.3301725476,1.7424291672,1.8848237078
-favorita_transactions_1W,1.2279251974,1.3836394276,1.4283013139,1.5565627963000002,1.4633900473,1.4283013139,1.9116392061,1.8454095028,1.55928265,1.6323137052,1.6473855473,1.7020928499,1.6714139443,1.6714139443,1.7289504361
-fred_md_2025/cee,3.4681773516,3.3490390729,4.4904404116,4.4904404116,4.4904404116,4.4904404116,3.872866885,4.8863751494,3.7449838346,5.8791415649,3.642884743,4.3189751514,9.4371027278,5.9195737804,4.236293641
-fred_md_2025/macro,5.6801712856,5.3069669462,5.8417533276,5.8417533276,5.8417533276,5.8417533276,6.3986770227,6.2236190621,5.7428835095,6.5438633054,5.7936387412,6.0124726904,9.5793076258,6.4047596955,5.9752290488
-fred_qd_2025/cee,2.1919917498,2.0461814654,2.1807036186,1.7726716319,2.2955960423,2.3654952138,2.2915507616,3.6414340592,1.9027740715,1.9543398085,2.1232724277,2.2176909101,4.4448478957,3.675773916,2.1956616384
-fred_qd_2025/macro,3.5367304504,3.5296543064,3.5932767502000003,3.4020827998,3.6155615726,3.6544020032,4.2401411107,4.5427910096,3.6148508861,3.8675028627,3.9044348431,3.8250563211,5.2213314727,4.251884602,3.7928250976
-gvar,0.5781460056000001,0.576786326,0.5902138174,0.5758663156,0.5933262207000001,0.5962858414000001,0.6741322757,0.7468286472,0.5896099351,0.6171744519,0.5932241947,0.616191821,0.7861696279,0.6701753186,0.6414950038
-hermes,0.6092189134,0.6510189412,0.6183988819,0.9852562723,0.7037822323,0.6752116267,0.7049311249,0.8242736568,1.4161705928,1.2129200308,1.6730456492,1.5539343318,2.1461477983,2.1461477983,2.2601295911
-hierarchical_sales_1D,0.5567377231,0.5472671449000001,0.5516009983,0.5468045976,0.550892445,0.550892445,0.5720159668,0.63854811,0.7197387018,0.6445167344,0.7933138017,0.815310861,1.0291569643,1.5929687017,1.6067653205
-hierarchical_sales_1W,0.6161304379,0.6208684057,0.6177938232,0.6372998817000001,0.6366963845,0.6366963845,0.6369452495,0.7066222052000001,0.7460571909,0.7472607405,10.476792269,0.7744970082,1.3859393726,1.3859393726,1.416652405
-hospital,0.6860471169,0.6884080716000001,0.6797112236,0.7333522854000001,0.6968021756,0.6968021756,0.6961291798,0.8343055996000001,0.6974795864000001,0.7310321414000001,0.7259497104,0.7401804136,0.8075126003,1.0208467827,1.0870231786
-hospital_admissions_1D,0.5544475609,0.5551415729,0.5560606379,0.555491233,0.5555647846,0.5561584192,0.5622795668,0.610265181,0.5569559255000001,0.5556445831,0.5557966863,0.5748023874,0.8571822336,1.3250699981,1.3357575815
-hospital_admissions_1W,0.5763906233,0.5850609146,0.5795336813,0.597604554,0.5862064826,0.5868402215,0.5814141841,0.6410506868,0.5789001687,0.5793359333,0.5783166572,0.5976752248,1.0492127258,1.0492127258,1.0884368132
-jena_weather_10T,0.3543287448,0.3893025483,0.3571555639,0.3684159974,0.4178230361,0.4178230361,0.412525166,0.4152438085,0.6729893352,0.6729893352,0.7418250443000001,0.7929160924,0.6729893352,0.7693201112,0.8000027464
-jena_weather_1D,1.1112540398,1.0716473753,1.0903437431,1.1121551269,1.0749683503,1.0749683503,1.1553103934,1.2388075013,1.3391730809,1.3052392106,1.6641987728,1.5312195918,1.7668615982,2.1502001657,2.2588601945
-jena_weather_1H,0.3530166989,0.3556668986,0.3588962212,0.3616362418,0.3668484878,0.3668484878,0.4127616053,0.3803257267,0.4515903467,0.4369650923,0.552924984,0.5933268886,0.6550438031,0.5788947352,0.5844505923000001
-kdd_cup_2022_10T,0.4250790923,0.5333420067,0.5333420067,0.5333420067,0.5333420067,0.5333420067,0.5550654023,0.5333420067,0.7774995242,0.7774995242,0.7469867514,0.7782845321,0.7774995242,0.7544738282,0.8433392069000001
-kdd_cup_2022_1D,0.703502155,0.6974981294,0.6975119247,0.7036948238,0.7078449047,0.7086991568000001,0.7153283882,0.8018621055,0.7298517236000001,0.720047667,0.7509996402,0.7391822834,0.9005495243,1.1381260567,1.1646512316
-kdd_cup_2022_30T,0.4388772718,0.4319676071,0.505462759,0.4288668087,0.4273561278,0.5612428382,0.5433847052,0.5099402658000001,0.6792689234,0.6406027358,0.7719233326,0.7653501983000001,0.7740434291,0.7638793006,0.7929597862000001
-m5_1D,0.7216368132000001,0.7143626546,0.7292764901000001,0.7292764901000001,0.7292764901000001,0.7292764901000001,1.2544668347,0.8516064277000001,1.2544668347,0.8516619783,0.8527658259,0.8721490279,1.2544668347,1.9603909963,1.9793212176
-m5_1M,0.9769838168,0.9740068956,0.9798127249,1.0439813048,0.9958730245,1.0000578921,1.0016519091,1.0814673882,1.0218515241,1.0455375252,1.1082320899,1.0987392502,1.1398593529,1.1923633059,1.2896192789
-m5_1W,0.9001918553,0.9025800625,0.9165191908,0.904968291,0.9069017163,0.9165191908,0.9281611829,0.9747800888,0.9362638046,0.9366737298,0.9530783877,0.9633961601,1.3557578931,1.3557578931,1.3899419915
-proenfo_gfc12,0.6485047492,0.9081089751,0.9171920666,0.9171920666,0.9171920666,0.9171920666,0.8344528413000001,0.9003739311000001,1.3049170998,1.1408344793,2.4308618583,1.414921573,1.1997208201,2.3796009992,2.4805205301
-proenfo_gfc14,0.4301437324,0.7205809869,0.7673985057,0.7673985057,0.7673985057,0.7673985057,0.5148198578000001,0.4208035936,0.9059171447,0.947126445,1.1104064418,1.0554823676,1.0750756438,3.209615645,3.4025952491
-proenfo_gfc17,0.4848892231,0.8894497071,0.9004430830000001,0.9004430830000001,0.9004430830000001,0.9004430830000001,0.6716514716,0.5086387805,1.1416586194,1.1149783841,2.1346457093,1.1469535851,1.3160348949,2.5749628946,2.7046737562
-redset_15T,0.7901010349,0.8326109518,0.7405330074,0.8177766808,1.0409395846,1.2430012316,1.2504740912,1.160404574,1.2313423811,1.2313423811,1.2313423811,10.1219214394,1.2313423811,33.9212721313,35.0901218659
-redset_1H,1.3653252295,1.3365796216,1.366509388,1.3064391449,1.4098475772,2.2790272339,1.3205339155,1.4505298471,1.8587229014,1.8772582072,2.3765166001,4.0716886989,1.9424894097,10.5809680586,10.6448235022
-redset_5T,0.6541973572,0.7872933801,0.7231351044000001,0.7192159039,0.7931599229,1.025913162,0.7111485095000001,0.8873768717,2.6902332367,1.9052087686,1.2243411634,3.3566436475,1.2243411634,12.0595440026,13.0588504389
-restaurant,0.6853328207,0.6816216488,0.6773501614,0.7040430265000001,0.6890372912,0.6890372912,0.6930359174,0.7474752761,0.7085218117000001,0.7558027757,1.0214758859,0.7607880054,0.9837597907,1.6150739536,1.6918666339
-rohlik_orders_1D,0.9592108487,0.9857545101,1.0057460708,1.1350889685,0.9699727195,1.0507521562,1.3410638007,1.1963053977,1.2113521188,1.2661753782,1.4469855127,1.3973344823,1.5544219081,2.9129738594,2.9819524139
-rohlik_orders_1W,1.2996633839,1.3004244287,1.32777854,1.4933704304,1.5315439437,1.4281796145,1.5240499794,1.8923042995,1.3984122308,1.4146777164,1.4189633182,1.3962994461,1.4844422646,1.4844422646,1.4886376798
-rohlik_sales_1D,0.8807894575,1.1480800218,1.0957943217,1.2180556543,1.1696411255,1.1471494654,1.3749816723,1.2026659678,1.2482652223,1.2758180745,1.2661606689,1.2818357414,1.3749816723,1.5460015545,1.5603709005000002
-rohlik_sales_1W,1.2741411479,1.4251751964,1.4010447148,1.504562043,1.5157422743,1.5215966312,1.220508006,1.6933358341,1.6455287753,1.8024970943,14.4532204201,1.6547436183,1.9282179039,1.9282179039,1.9690203085
-rossmann_1D,0.2834680757,0.539134486,0.5015787540000001,0.5677454284,0.5274198802,0.5246207313,0.23207865,0.5305513714,0.5781148561,0.5619283369,0.5936917112,0.8315478225,0.9136725214,2.7620723724,2.818179584
-rossmann_1W,0.3076934923,0.4815594255,0.4951771693,0.4944119667,0.496872717,0.4871499621,0.2538651882,0.5781252095,0.5013864497,0.5212168044000001,0.5175490828,0.5160293344,0.8987958652,0.8987958652,0.9605854168
-solar_1D,0.5935714274,0.6141032699,0.6181956031,0.6223902809,0.6373379623000001,0.6349957556,0.6146167789,0.6669937254,0.6528759965,0.6575818024,0.6558359500000001,0.6785205054,0.9019637416,1.4067834918,1.4888788408
-solar_1W,0.8952785596,1.1207884648,1.0958866195,1.3917193313,1.6583052048,0.9401913951,0.8695612766,0.9287843032,1.2959542496,1.2798883181,1.2121746876,1.4256110648,1.4228493197,1.4228493197,1.8015134215
-solar_with_weather_15T,0.6769263050000001,0.8456990474,0.9063360715,0.7839335449,0.8387112868000001,0.8094202444,0.7470578953,0.9625972649,1.1937856846,1.1937856846,2.5289087933000003,3.5850953026,1.1937856846,2.2779930243,2.3830110819
-solar_with_weather_1H,0.7672846795,0.9000403927,0.8153876375,0.876018842,0.9070575976,0.8156760185,0.7005612194,1.1815051767,1.4584163166000002,1.1314165351,2.1818023268,3.3576154004,1.2119606616,2.1807435542,2.1831749916
-uci_air_quality_1D,1.0461165946,1.1279764862,1.205083714,1.2602294231,1.1380484786,1.0919688778,1.1863454763,1.2144755341,1.1225466397,1.2403312496,1.1812884821,1.2334025241,1.4013448948,1.8738938294,1.9477985237
-uci_air_quality_1H,0.7983040373,0.8650050244,0.8769395756,0.8700071749,0.9453838524,0.89902861,0.9312390864,1.0009256435,1.5607085558,1.1923767477,41026.9886208021,1.9559568032,1.3840397362,2.4249545583,2.544297151
-uk_covid_nation_1D/cumulative,7.8258561455,7.6534868379,7.050808391,6.1880495911,6.762809245,8.1573948756,13.0445256974,16.0063232428,7.7115645361,8.6773500345,7.1837995535,18.4454679918,27.0030154455,23.7425594527,17.5575952088
-uk_covid_nation_1D/new,2.0372645497,1.9920440399,2.135267758,2.0391528653,2.1353860487,2.1221392593,2.0764757709,2.2998485754,2.7990662584,3.8389323119,2.7409717093,2.5298732341,2.5728651106,2.6919734344,2.7354032661
-uk_covid_nation_1W/cumulative,2.7834425279,3.1923854702,4.01082831,2.8235902828,3.0143746347,3.4351717559,2.8719957749,5.2476339527,2.2375975817,9.8478063402,2.3989565537,5.097376861,7.7039519752,7.7039519752,4.9437715765
-uk_covid_nation_1W/new,4.9682123605,4.5324987152,3.7830532019,5.0981213862,3.8727833855,4.1483138966,4.1427702993,3.5699175673,5.7411671194,12.6543213595,5.0239734103,5.1818506739,5.1795349212,5.1795349212,5.3904979176
-uk_covid_utla_1D/new,3.7252347533,3.7286792775,3.5117739729,4.0356930401,3.565225656,3.5311824645,3.8009751218,3.6498480124,5.5816729211,7.407131023,5.622786154,5.0552633527,4.5971311302,5.1718851312,5.2745393338
-uk_covid_utla_1W/cumulative,17.4422360824,19.434962205,18.4860520309,16.2859178099,19.3249941782,17.4887255246,16.9124597959,26.4381110934,14.3311431786,13.9770561849,16.3125415616,20.1018108531,24.6697283453,24.6697283453,19.7494072856
-us_consumption_1M,1.4636824416,1.4670456897,1.6053660409,1.5639307325,1.5132208912,1.5162423149,1.5711057336,1.8961848647,1.4864869258,1.598443305,1.4452749249,1.704219721,2.6840778381,1.8701116849,1.6834522226000002
-us_consumption_1Q,1.7235145142,1.8028657315,1.9266298936,1.7074351120000002,1.7957240899,1.764175518,2.6728862979,2.8659918221,1.9078230052,2.0470332513,1.8861010469,2.3452449672,3.3237196122,2.5675143796,2.1897132455
-us_consumption_1Y,3.7304723943,3.6344846883,4.007463063,3.8978014747,4.8066289721,4.1076459792,4.1801774688,5.8799625833,3.7862940987,3.6882837957,4.0805825682,5.0841302662,6.5846226659,6.5846226659,4.9461376338
-walmart,0.6478016424,0.7074857338,0.6794198494,0.9071550498,0.8447389691,0.7740159174,0.6618592710000001,0.8422492473000001,1.2166093946,1.0205417736,21704350706303.93,1.4674936934,2.0341238516,2.0341238516,2.2528910444
-world_co2_emissions,2.6702032562,2.6434689128,2.8764182979,2.7160328031,2.8754184288,2.7544343248,2.7200799174,3.6825226706,2.6879348969,2.8223304034,7.7240531151,2.8254620295,3.1550152472,3.1550152472,2.755800442
-world_life_expectancy,1.186574759,1.1086152308,1.2103954021,1.6394210102,1.7852750057,1.3452468722,1.1492708484,1.6015213365,1.3050094069,1.2829496791,1.3015724131,1.4512016278,1.8297624985,1.8297624985,1.5824689261
-world_tourism,3.0519541233,3.0521218421,3.5616996609,3.2075602319,3.2640026065,3.1644023349,2.7953196676000003,4.3603502979,2.552402438,2.6184635789,2.8819679863000003,2.5742928529,3.2013302671,3.2013302671,2.3982302133
diff --git a/tables/pivot_SQL_baseline_imputed.csv b/tables/pivot_SQL_baseline_imputed.csv
deleted file mode 100644
index 2b1011afdf93d3a2bfc267c63a62777f226c1b93..0000000000000000000000000000000000000000
--- a/tables/pivot_SQL_baseline_imputed.csv
+++ /dev/null
@@ -1,101 +0,0 @@
-Task name,Chronos-2,TiRex,TimesFM-2.5,Toto-1.0,Moirai-2.0,Chronos-Bolt,TabPFN-TS,Sundial-Base,Stat. Ensemble,AutoARIMA,AutoETS,AutoTheta,Seasonal Naive,Naive,Drift
-ETT_15T,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-ETT_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ETT_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ETT_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-LOOP_SEATTLE_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-LOOP_SEATTLE_1H,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-LOOP_SEATTLE_5T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-M_DENSE_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-M_DENSE_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-SZ_TAXI_15T,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-SZ_TAXI_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-australian_tourism,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-bizitobs_l2c_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-bizitobs_l2c_5T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1062,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1209,False,False,False,False,False,False,False,False,False,False,True,False,False,False,False
-boomlet_1225,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1230,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1282,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1487,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1631,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-boomlet_1676,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-boomlet_1855,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1975,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_2187,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_285,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_619,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_772,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_963,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ecdc_ili,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-entsoe_15T,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-entsoe_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-entsoe_30T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_be,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_de,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_fr,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_np,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_pjm,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ercot_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ercot_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ercot_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ercot_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_stores_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_stores_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_stores_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_transactions_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_transactions_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_transactions_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-fred_md_2025/cee,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-fred_md_2025/macro,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-fred_qd_2025/cee,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-fred_qd_2025/macro,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-gvar,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hermes,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hierarchical_sales_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hierarchical_sales_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hospital,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hospital_admissions_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hospital_admissions_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-jena_weather_10T,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-jena_weather_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-jena_weather_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-kdd_cup_2022_10T,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-kdd_cup_2022_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-kdd_cup_2022_30T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-m5_1D,False,False,False,False,False,False,True,False,True,False,False,False,False,False,False
-m5_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-m5_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-proenfo_gfc12,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-proenfo_gfc14,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-proenfo_gfc17,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-redset_15T,False,False,False,False,False,False,False,False,True,True,True,False,False,False,False
-redset_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-redset_5T,False,False,False,False,False,False,False,False,False,False,True,False,False,False,False
-restaurant,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rohlik_orders_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rohlik_orders_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rohlik_sales_1D,False,False,False,False,False,False,True,False,False,False,False,False,False,False,False
-rohlik_sales_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rossmann_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rossmann_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-solar_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-solar_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-solar_with_weather_15T,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-solar_with_weather_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uci_air_quality_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uci_air_quality_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_nation_1D/cumulative,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_nation_1D/new,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_nation_1W/cumulative,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_nation_1W/new,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_utla_1D/new,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_utla_1W/cumulative,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-us_consumption_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-us_consumption_1Q,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-us_consumption_1Y,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-walmart,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-world_co2_emissions,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-world_life_expectancy,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-world_tourism,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
diff --git a/tables/pivot_SQL_leakage_imputed.csv b/tables/pivot_SQL_leakage_imputed.csv
deleted file mode 100644
index 75505bc8c8a1c76564ca751d6855f95f65ef5d4c..0000000000000000000000000000000000000000
--- a/tables/pivot_SQL_leakage_imputed.csv
+++ /dev/null
@@ -1,101 +0,0 @@
-Task name,Chronos-2,TiRex,TimesFM-2.5,Toto-1.0,Moirai-2.0,Chronos-Bolt,TabPFN-TS,Sundial-Base,Stat. Ensemble,AutoARIMA,AutoETS,AutoTheta,Seasonal Naive,Naive,Drift
-ETT_15T,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-ETT_1D,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-ETT_1H,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-ETT_1W,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-LOOP_SEATTLE_1D,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-LOOP_SEATTLE_1H,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-LOOP_SEATTLE_5T,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-M_DENSE_1D,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-M_DENSE_1H,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-SZ_TAXI_15T,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-SZ_TAXI_1H,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-australian_tourism,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-bizitobs_l2c_1H,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-bizitobs_l2c_5T,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-boomlet_1062,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1209,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1225,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1230,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1282,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1487,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1631,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1676,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1855,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1975,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_2187,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_285,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_619,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_772,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_963,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ecdc_ili,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-entsoe_15T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-entsoe_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-entsoe_30T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_be,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_de,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_fr,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_np,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_pjm,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ercot_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ercot_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ercot_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ercot_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_stores_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_stores_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_stores_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_transactions_1D,False,False,True,True,True,False,False,False,False,False,False,False,False,False,False
-favorita_transactions_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_transactions_1W,False,False,True,False,False,False,False,False,False,False,False,False,False,False,False
-fred_md_2025/cee,False,False,True,True,True,False,False,False,False,False,False,False,False,False,False
-fred_md_2025/macro,False,False,True,True,True,False,False,False,False,False,False,False,False,False,False
-fred_qd_2025/cee,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-fred_qd_2025/macro,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-gvar,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hermes,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hierarchical_sales_1D,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-hierarchical_sales_1W,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-hospital,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-hospital_admissions_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hospital_admissions_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-jena_weather_10T,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-jena_weather_1D,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-jena_weather_1H,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-kdd_cup_2022_10T,False,True,True,True,True,False,False,True,False,False,False,False,False,False,False
-kdd_cup_2022_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-kdd_cup_2022_30T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-m5_1D,False,False,True,True,True,False,False,False,False,False,False,False,False,False,False
-m5_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-m5_1W,False,False,True,False,False,False,False,False,False,False,False,False,False,False,False
-proenfo_gfc12,False,False,True,True,True,False,False,False,False,False,False,False,False,False,False
-proenfo_gfc14,False,False,True,True,True,False,False,False,False,False,False,False,False,False,False
-proenfo_gfc17,False,False,True,True,True,False,False,False,False,False,False,False,False,False,False
-redset_15T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-redset_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-redset_5T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-restaurant,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-rohlik_orders_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rohlik_orders_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rohlik_sales_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rohlik_sales_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rossmann_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rossmann_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-solar_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-solar_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-solar_with_weather_15T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-solar_with_weather_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uci_air_quality_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uci_air_quality_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_nation_1D/cumulative,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_nation_1D/new,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_nation_1W/cumulative,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_nation_1W/new,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_utla_1D/new,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_utla_1W/cumulative,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-us_consumption_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-us_consumption_1Q,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-us_consumption_1Y,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-walmart,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-world_co2_emissions,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-world_life_expectancy,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-world_tourism,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
diff --git a/tables/pivot_WAPE.csv b/tables/pivot_WAPE.csv
deleted file mode 100644
index d878247a893e891a1dc7ed58379d51835e26f0bb..0000000000000000000000000000000000000000
--- a/tables/pivot_WAPE.csv
+++ /dev/null
@@ -1,101 +0,0 @@
-Task name,Chronos-2,TimesFM-2.5,TiRex,Toto-1.0,TabPFN-TS,Moirai-2.0,Chronos-Bolt,Sundial-Base,Stat. Ensemble,AutoARIMA,AutoETS,AutoTheta,Naive,Seasonal Naive,Drift
-ETT_15T,0.1128598566,0.1167248718,0.1158377729,0.121559811,0.122192445,0.1146202493,0.1146202493,0.1157490913,0.1473227948,0.1473227948,0.2089927338,0.1327521257,0.202845639,0.1473227948,0.209491349
-ETT_1D,0.3210531483,0.332150948,0.3280948972,0.3407840222,0.3959747152,0.3275848009,0.3275848009,0.3646975075,0.3275626761,0.3554786793,0.3392487691,0.3405146034,0.336139462,0.3566862594,0.3456173895
-ETT_1H,0.2467289659,0.245201607,0.2477475438,0.2432126313,0.2553246886,0.2464663107,0.2464663107,0.2547681354,0.2621275507,0.2729976766,0.3240313299,0.2708169587,0.3389070071,0.286422462,0.3517438181
-ETT_1W,0.5228870836,0.4956519336,0.4771292359,0.4972649187,0.5109347999,0.4599850744,0.4599850744,0.5208597481,0.4587044328,0.5033163548,0.455156821,0.4891462862,0.3963210046,0.3963210046,0.4451834112
-LOOP_SEATTLE_1D,0.0363369958,0.0359623253,0.0367103025,0.0387991458,0.0365180448,0.0373221384,0.0373221384,0.0372882528,0.0378798334,0.0375884525,0.0379914595,0.0389688019,0.0786971625,0.0445690587,0.0891125299
-LOOP_SEATTLE_1H,0.0681990332,0.0643115029,0.0704373386,0.0749491051,0.0731078316,0.0797934189,0.0797934189,0.077676107,0.1172784954,0.1172784954,0.1460618883,0.1024438366,0.1526884101,0.1172784954,0.1758716479
-LOOP_SEATTLE_5T,0.0736883423,0.0792618439,0.0750445005,0.075644061,0.0858088784,0.0886344958,0.0886344958,0.0829992138,0.1069220781,0.1080897018,0.1085262727,0.1108838413,0.1121638626,0.0883255631,0.130171527
-M_DENSE_1D,0.083318119,0.0935403809,0.0993285432,0.1092759416,0.0926615007,0.0985291574,0.0985291574,0.0968305223,0.1192791395,0.1260855269,0.1300925907,0.1322432969,0.196977134,0.1419847511,0.2006916501
-M_DENSE_1H,0.1462710002,0.13799605,0.1467316881,0.1535322428,0.1593384311,0.1466876373,0.1466876373,0.1584326059,0.2484246612,0.2454276025,0.3140071735,0.2921647772,0.6536297143,0.2611668751,0.707449168
-SZ_TAXI_15T,0.2391328625,0.2409728497,0.2404616728,0.2440994486,0.2500552535,0.2437216282,0.2437216282,0.245247978,0.3343059897,0.3343059897,0.3189420968,0.2728340209,0.3568555236,0.3343059897,0.3669907093
-SZ_TAXI_1H,0.1627460048,0.1730356291,0.1678203642,0.1653927863,0.1798963994,0.1713460237,0.1713460237,0.2091502994,0.1850999221,0.2079726383,0.6624499261,0.2595272139,0.246570535,0.2122471854,0.290869683
-australian_tourism,0.0905689129,0.0948839262,0.1068701223,0.1337763593,0.0927634016,0.1308895275,0.1434193179,0.0969211906,0.0957876109,0.1101633608,0.0970393047,0.1052965894,0.1803925335,0.1130525246,0.199330695
-bizitobs_l2c_1H,0.3308650646,0.3901138266,0.4282031118,0.5299379429000001,0.360369738,0.4081446098,0.4081446098,0.4650631395,1.3223615305,1.7735276449,1.2847489447,1.3980487641,1.3024706409,2.2812914532,1.3151569486
-bizitobs_l2c_5T,0.4957355787,0.9057201819,1.4135781384,1.2221172807,0.8823374127,1.3254390534,1.3254390534,0.6893105085,1.3437154961,1.5979523685,1.3366881806,1.6561117344,1.2818957102,2.2837712012,1.8269103833
-boomlet_1062,0.5680818423,0.5789273618,0.5749673398,0.5677611841,0.5832466359,0.5945871048,0.6012691446,0.6355941124000001,0.7826401234,0.7457671713,0.8238335352,0.8386591385000001,1.0029399408,0.8355847068000001,1.0990104974
-boomlet_1209,0.3048900987,0.3045249204,0.3234299188,0.2916179846,0.3865331056,0.3292905567,0.3271624692,0.3340434651,0.4339859435,0.4278108916,0.4784097772,0.456201244,0.4388518186,0.4784097772,0.5110153038
-boomlet_1225,0.1220172782,0.1242312214,0.1230602603,0.1206233559,0.1326060004,0.1278310667,0.1331294786,0.1333109416,0.153843496,0.1446868773,0.1598025897,0.1596047961,0.195260353,0.195260353,0.1988768318
-boomlet_1230,0.3054680901,0.2999179457,0.3117769108,0.2909953139,0.3497826156,0.3094188715,0.3241073897,0.3178766378,0.3894998971,0.3998710697,0.4274646386,0.4040077124,0.3912469672,0.4654206108,0.4504819196
-boomlet_1282,0.3551724804,0.3418466096,0.3447100926,0.3443926057,0.3517501049,0.3639267584,0.3918061855,0.360391448,0.4329732117,0.4049750815,0.4705070178,0.471762625,0.5673586508,0.5673586508,0.5815167152
-boomlet_1487,0.2009541891,0.1978987699,0.2042655856,0.1894979433,0.2418147345,0.2079859222,0.2074861592,0.2194652483,0.2612758556,0.259043758,0.2614417874,0.270651306,0.2881606094,0.2823812783,0.3361342464
-boomlet_1631,0.3118222283,0.3155328254,0.3227136546,0.3156198487,0.3554736745,0.322950287,0.3246407648,0.3276903199,0.4303123065,0.4303123065,0.3481223856,0.3499573969,0.3828907337,0.4303123065,0.3956788492
-boomlet_1676,0.3237391089,0.3195228016,0.3219743376,0.3173684891,0.3439016851,0.3274155865,0.3288848916,0.3249830057,0.4490416802,0.4490416802,0.3539671682,0.3605949771,0.3738144227,0.4490416802,0.3871649546
-boomlet_1855,0.1587321378,0.1647552303,0.157446321,0.1576757028,0.1950387305,0.1619848815,0.1634840172,0.1777051742,0.2153578225,0.2241676514,0.2190390133,0.2310231853,0.2028796298,0.255325092,0.2044042459
-boomlet_1975,0.0905538287,0.1160976808,0.1343890613,0.0860611707,0.1347071896,0.1478435607,0.1244086675,0.1286565167,0.3327476291,0.3661623288,0.4015633572,0.3240569453,0.4014330303,0.5204730918,0.4021568225
-boomlet_2187,0.2656522618,0.2903383515,0.2640573038,0.2836815666,0.3217076673,0.2926881402,0.2890647493,0.3149817281,0.4073318877,0.4429809169,0.4339327821,0.441407778,0.403332821,0.465180005,0.4079644265
-boomlet_285,0.1637453323,0.1907992813,0.1807812872,0.1596092123,0.1742876602,0.2203877039,0.2555644857,0.2649652282,0.3599062982,0.34433789,0.3622854223,0.3717445356,0.6725665377000001,0.6725665377000001,0.6908623011
-boomlet_619,0.2998264354,0.3117435689,0.317407313,0.2789135486,0.3036044294,0.3062168618,0.4683247317,0.3109702097,0.8714422486000001,0.5880218188,0.9528967892,0.8820872245,0.9458725577,0.9458725577,0.9676378967
-boomlet_772,0.1571995002,0.160275506,0.16101018,0.1544767227,0.1705900793,0.1698505863,0.1845645847,0.1812428949,0.2635364999,0.2378165958,0.3077275646,0.2834336899,0.2919496069,0.2919496069,0.2993941878
-boomlet_963,0.3817032517,0.397875566,0.3901485342,0.3792164679,0.415064609,0.4169379192,0.4316260388,0.4042673384,0.5013279652,0.5164873201,0.5458354699,0.5049570994,0.5169750445,0.5169750445,0.5254156838
-ecdc_ili,0.3759767271,0.4172024563,0.4242536306,0.4693168223,0.3879963517,0.4756085008,0.4956143111,0.5432749093,0.5675356537,0.5880377501,0.6168868512,0.5694230199,0.5534411848,0.5534411848,0.5846513778
-entsoe_15T,0.04219648,0.0416073938,0.0420496514,0.0522911714,0.0426369185,0.0423905659,0.0428303072,0.0564987165,0.067677392,0.067677392,0.4080646552,0.0539835229,0.1434365042,0.067677392,0.1567171741
-entsoe_1H,0.0329469333,0.0358633269,0.0363473815,0.0365800265,0.0333449995,0.0395727229,0.0341011005,0.0554685768,0.0833389089,0.0854086541,0.1569610283,0.0836396273,0.1571170386,0.0792450108,0.1671798959
-entsoe_30T,0.0367303018,0.0473410125,0.0399606742,0.0378812171,0.0390591249,0.038267585,0.0378308199,0.0519962882,0.0767360015,0.090934383,0.241174338,0.0721444593,0.1462993909,0.0870952165,0.1450240765
-epf_be,0.115556011,0.11255784,0.1230011668,0.1323491182,0.1179565661,0.1227849199,0.1357350046,0.1303241445,0.1754423061,0.1986222906,0.2487520538,0.1881915066,0.237576263,0.1840044525,0.2400494121
-epf_de,0.291016907,0.5914115101,0.5786662247000001,0.6772215117,0.3069136301,0.5364827175,0.5606896855,0.5721812874000001,0.6023222137,0.6818832021,0.6107009687,0.6459928796000001,0.6107063688000001,0.7489839181,0.6189188711
-epf_fr,0.0680296275,0.0771284029,0.0797966965,0.0836794117,0.0618426707,0.079128382,0.0876754681,0.0812654203,0.1133474851,0.1532071637,0.1492719604,0.1293735383,0.1702834178,0.1298259975,0.1727491379
-epf_np,0.0381853723,0.0639044802,0.0554376821,0.0616097255,0.0386706958,0.0542902095,0.0566988389,0.0496031295,0.0682523511,0.078622775,0.1040808285,0.0688152587,0.1036567884,0.0796461385,0.1036498375
-epf_pjm,0.0821098361,0.0941735437,0.08936894,0.1030592872,0.092521411,0.0975614782,0.0937614741,0.0934227692,0.0933501931,0.098476214,0.1716884077,0.1198625589,0.1717319913,0.1016348289,0.1742728941
-ercot_1D,0.0765202672,0.0756690312,0.075154368,0.0810110342,0.0898239311,0.0819215234,0.0793944309,0.0776411118,0.1129253348,0.1103588376,0.117865942,0.1169790924,0.1179466095,0.1245740173,0.1188580243
-ercot_1H,0.0691227315,0.0764717873,0.0705278089,0.0721937651,0.0795933543,0.0716643825,0.0730120171,0.074077414,0.0829790251,0.0749658542,0.1808560818,0.081462577,0.1561551619,0.0818516593,0.156225403
-ercot_1M,0.0474946219,0.0484172593,0.0524891056,0.0669821394,0.05342761,0.0656316509,0.0511789478,0.051032866,0.0481692294,0.0493777886,0.0470737303,0.0593784221,0.266211768,0.0529377862,0.2937269539
-ercot_1W,0.0589590463,0.059191324,0.0586846132,0.0654530676,0.0684465686,0.0638612125,0.0599824842,0.0685063219,0.1453860532,0.1429765524,0.1469057526,0.1458645716,0.1442763271,0.1442763271,0.1446279654
-favorita_stores_1D,0.1382725313,0.1452467814,0.1518204361,0.1783829153,0.1485749632,0.1568098612,0.1742722556,0.1561883375,0.1788716882,0.1934442326,0.1871851772,0.1834860831,0.3056042403,0.2519854262,0.3071700007
-favorita_stores_1M,0.1303168371,0.2102531455,0.1893665791,0.1978285983,0.1158652566,0.2355426997,0.263652347,0.2560960427,0.1466952749,0.1385348588,0.1568281725,0.1535032243,0.1232989542,0.1900056936,0.1430777609
-favorita_stores_1W,0.1289288979,0.1308373965,0.1345634833,0.1511486098,0.1259902738,0.1555078961,0.1579625078,0.1497412801,0.1436039165,0.1500959687,0.148442591,0.1443628684,0.1528069191,0.1528069191,0.1540484183
-favorita_transactions_1D,0.0611646173,0.0873474585,0.0820303043,0.0873474585,0.0773345503,0.0873474585,0.0873474585,0.0798803577,0.1005134217,0.1204928338,0.1010010868,0.0961165557,0.1561206006,0.1460640723,0.1564211233
-favorita_transactions_1M,0.0719262234,0.0741879094,0.0772057417,0.0891149079,0.0822258855,0.0863027538,0.0940793492,0.0944761617,0.0746712369,0.0833974167,0.075680572,0.0943706955,0.0830064558,0.0907197162,0.0979339545
-favorita_transactions_1W,0.0562127232,0.0628811317,0.0590786255,0.0686957029,0.070972002,0.0671727598,0.0628811317,0.0715127803,0.0683781244,0.0730921635,0.0708877588,0.0703343528,0.0709917221,0.0709917221,0.0733929446
-fred_md_2025/cee,0.0808948604,0.0893563021,0.0771422869,0.0893563021,0.0853241075,0.0893563021,0.0893563021,0.1094554538,0.0880950077,0.101570566,0.0874256578,0.0903405098,0.0912865269,0.1825383855,0.0899785994
-fred_md_2025/macro,0.0797789855,0.0832975223,0.0786031675,0.0832975223,0.0845430854,0.0832975223,0.0832975223,0.0866654116,0.0850931924,0.0913136788,0.0855845023,0.086868012,0.0864161201,0.1316369599,0.0862326509
-fred_qd_2025/cee,0.1657290639,0.1558658059,0.146726247,0.1320567852,0.1495637866,0.1528913536,0.1553945123,0.2050228651,0.1535186178,0.1628828034,0.163525425,0.1604369975,0.1646972333,0.2083851339,0.1613227853
-fred_qd_2025/macro,0.1070199647,0.1036789802,0.1035667702,0.1019809656,0.1155847,0.1058608346,0.1074347071,0.1156803335,0.1102426328,0.1150225402,0.1130458034,0.1135594273,0.112650905,0.1422945023,0.1116643421
-gvar,0.0184834703,0.0187466032,0.0185361033,0.0183949311,0.0235774602,0.0185879215,0.0189676567,0.0219536834,0.018235926,0.0184923184,0.0183902988,0.0183729022,0.0185624258,0.0239340235,0.017942446
-hermes,0.0028845992,0.0029142732,0.0030851755,0.0043706582,0.003404404,0.0033616596,0.003208007,0.0036552635,0.0078905979,0.0063903024,0.0088396827,0.0081041083,0.0087068714,0.0087068714,0.0088381628
-hierarchical_sales_1D,0.7004947938,0.6943961620000001,0.6893573284000001,0.6904558182,0.7258024514,0.6949587405000001,0.6949587405000001,0.7362602293,0.8618716657000001,0.80726372,0.9335796714,0.9374910116,1.0676994622,1.0205006063,1.0792345285
-hierarchical_sales_1W,0.4327760933,0.4307300597,0.4324219674,0.4364300489,0.4384448647,0.4394375533,0.4394375533,0.4750745565,0.5484556556,0.5603942513,0.6528081954,0.5616531372,0.7169096172,0.7169096172,0.73438465
-hospital,0.0955333467,0.0891746506,0.0908275228,0.0951568279,0.0931978375,0.0947973169,0.0947973169,0.1026285514,0.0920567866,0.1056054849,0.0927931517,0.0992142502,0.117495615,0.0954293236,0.1240455657
-hospital_admissions_1D,0.5318945219,0.533603767,0.532626473,0.5320996389,0.5375386306000001,0.5332016895,0.5337376775,0.5358891719000001,0.5351516929,0.5348244904,0.5349606606,0.5510431179,0.7243229402,0.7622172844,0.7295191623
-hospital_admissions_1W,0.2115394616,0.212422525,0.2142321087,0.2188375845,0.2122697207,0.2152673571,0.214606831,0.2139370313,0.2126255133,0.212284724,0.2122781935,0.2190619932,0.2933695345,0.2933695345,0.30397943
-jena_weather_10T,0.2751553475,0.257587004,0.2777656166,0.2483462442,0.2988471952,0.3021136379,0.3021136379,0.3908659499,0.7879570897,0.7879570897,0.3862366249,0.3075604132,0.340848519,0.7879570897,0.5317361675
-jena_weather_1D,0.2763651402,0.2713017484,0.2731164291,0.2763100538,0.2843381079,0.2784405042,0.2784405042,0.306889223,0.3410053076,0.3394734252,0.3844678975,0.3648304911,0.3843897356,0.4190868366,0.4042778883
-jena_weather_1H,0.2537129335,0.2603537007,0.2506694068,0.2467585944,0.2825195241,0.2519024358,0.2519024358,0.435202554,0.3278975237,0.9374862075,0.3521687292,0.2954772817,0.328573375,0.7711870382,0.3343243943
-kdd_cup_2022_10T,1.3604878279,1.5299117744,1.5299117744,1.5299117744,2.9485943079,1.5299117744,1.5299117744,1.5299117744,3.3046866596,3.3046866596,2.0494638503,2.1184663236,2.0376436353,3.3046866596,2.1939117908
-kdd_cup_2022_1D,0.7152167839,0.7140720218000001,0.722069484,0.709543103,0.729861784,0.7286467254,0.7228399217,0.7455375254000001,0.7985714674000001,0.7844091415000001,0.8128879607,0.8038047969000001,0.8071428537,0.9081870615,0.8271189928
-kdd_cup_2022_30T,1.5203947999,1.9992301464,1.5899849832,1.6237983048,2.7372743011000003,1.3630170584,2.6893893838,1.8708190978,2.1525859416,2.579102248,2.3230794907,2.3053818822,2.2917796373,3.122066617,2.3595300138
-m5_1D,0.7030550556,0.7110159993,0.7024515271,0.7110159993,0.9158941507,0.7110159993,0.7110159993,0.735691011,0.9158941507,0.7716780305000001,0.7714367509000001,0.7779017687,1.0240883827,0.9158941507,1.0368541479
-m5_1M,0.4288781907,0.4248805046,0.4305847585,0.459651649,0.4364556372,0.4363167882,0.4455042779,0.4508921802,0.4417713284,0.4600670636,0.4605289102,0.491009295,0.4776364863,0.5107533932,0.5485711098
-m5_1W,0.4283166904,0.4334180355,0.4280506968,0.4278151095,0.4357982576,0.4286454916,0.4334180355,0.4258472919,0.4386759996,0.4387526214,0.4468327463,0.4475453794,0.5041812062000001,0.5041812062000001,0.5192105174
-proenfo_gfc12,0.069590554,0.09096132,0.0953878213,0.09096132,0.0878337689,0.09096132,0.09096132,0.0814341474,0.140745189,0.1193260785,0.2331060618,0.1359507203,0.2325648576,0.1285183787,0.2455491483
-proenfo_gfc14,0.0263798704,0.0454557415,0.0447395099,0.0454557415,0.0314071138,0.0454557415,0.0454557415,0.022570387,0.0540108977,0.0571345754,0.0646636074,0.0579787859,0.1831386365,0.0586917939,0.1959836841
-proenfo_gfc17,0.0395739348,0.0744532838,0.0764463827,0.0744532838,0.0562544549,0.0744532838,0.0744532838,0.0343229823,0.0960090132,0.0943354612,0.1663142737,0.0931363594,0.1911468029,0.1077746021,0.2018542446
-redset_15T,0.2581138326,0.3049023062,0.2957181528,0.3032550395,0.2824990153,0.3051173747,0.3266223073,0.3414731026,0.3900802583,0.3900802583,0.3900802583,0.4040436536,0.5721419543,0.3900802583,0.5907099247
-redset_1H,0.2086091326,0.2327233687,0.2140746087,0.2279421866,0.2258856788,0.2229073554,0.2425440878,0.263667053,0.302437371,0.3273749292,2.3069740623,0.371760726,0.4976614714,0.3300818771,0.5004897475
-redset_5T,0.329381554,0.3443454772,0.3807104856,0.343882215,0.3484145552,0.3707561105,0.4300963342,0.3967622221,0.6020359665,0.6915958703,0.4487639129,0.6252421260000001,0.6784450889,0.4487639129,0.7538361549
-restaurant,0.3583806779,0.3569885604,0.3583980985,0.3731744513,0.3642114922,0.3649469204,0.3649469204,0.3637035079,0.3710609339,0.3996725455,0.4009865783,0.3923323192,0.612521477,0.483283326,0.6468708888
-rohlik_orders_1D,0.0560522973,0.0590882786,0.0571725398,0.0646083735,0.0655876726,0.0552303962,0.0613666862,0.0667062812,0.0628061324,0.0740682058,0.0657169782,0.0664489299,0.1082820654,0.0827216394,0.1096319526
-rohlik_orders_1W,0.0503461548,0.0541592546,0.0520526886,0.0591418616,0.0652046457,0.0612039004,0.0569869973,0.0675320886,0.0573217526,0.0584325351,0.0581583686,0.0573223703,0.058363314,0.058363314,0.059100195
-rohlik_sales_1D,0.2762769232,0.3586171567,0.3783946335,0.3974789381,0.4345725775,0.3820689023,0.3783308864,0.3645052612,0.4056582451,0.4094604254,0.4184724987,0.4130674899,0.4717368782,0.4345725775,0.4772062898
-rohlik_sales_1W,0.2291194974,0.2667129934,0.2736291289,0.2812094092,0.2151686251,0.2871065438,0.2846268117,0.292871207,0.2905908525,0.3070147634,0.3002878428,0.294593662,0.311866194,0.311866194,0.3224963248
-rossmann_1D,0.1197795045,0.2085952148,0.2251284003,0.2320613816,0.0979018956,0.2214855403,0.2176495418,0.2092144758,0.2277583107,0.2223706722,0.2360617861,0.2557922274,0.5480500698,0.2692451894,0.5516847163
-rossmann_1W,0.0964419945,0.1802897658,0.1696977001,0.1733398307,0.0791731263,0.1759210136,0.1760291811,0.1854728833,0.1783457696,0.1835633125,0.1836160459,0.1812564228,0.2192445789,0.2192445789,0.2424932998
-solar_1D,0.2379390135,0.2471472979,0.2452487931,0.2500299245,0.2466564849,0.2569396086,0.2532424137,0.2471724987,0.2494917773,0.2527682468,0.2511778109,0.2619624853,0.3013429433,0.3093768284,0.3458185181
-solar_1W,0.200119924,0.246641323,0.2531014979,0.3023860455,0.1849420816,0.3419925272,0.2132549584,0.1854887605,0.3008096814,0.2914025486,0.2775774002,0.3495942652,0.326290369,0.326290369,0.4388745129
-solar_with_weather_15T,1.1523838522,1.4700251039,1.4235610306,1.1480220269,1.1661535196,1.3761328127,1.2911253296,1.5058858633,1.311486863,1.311486863,1.4215377569,1.5023058228,1.0179969072,1.311486863,1.2097884297
-solar_with_weather_1H,1.2584228755,1.2011471927,1.5260583486,1.4068397004,0.9096449066,1.4828350302,1.3260020718,1.4480908126,1.2681774691,1.2902403221,1.1464893281,1.5474270582,1.1464484423,1.2338736704,1.1473927319
-uci_air_quality_1D,0.2703591673,0.3069281131,0.2942162712,0.3233137009,0.3105711883,0.2915518175,0.2842696743,0.2892992957,0.2860204957,0.3229408102,0.2790713324,0.2964460064,0.4314649024,0.3624341339,0.456071114
-uci_air_quality_1H,0.3364187018,0.371518901,0.3697669104,0.3658213586,0.3857780203,0.3903881013,0.3758005321,0.400704702,0.4116057828,0.4518040374,4.0641790986,0.4167998955,0.5250781342,0.4562693149,0.5444705039000001
-uk_covid_nation_1D/cumulative,0.0188431325,0.0172808705,0.0159650212,0.0158421656,0.0419449611,0.0173290129,0.0245629952,0.0455631685,0.0214682838,0.0188173242,0.0182502112,0.047922572,0.0579707756,0.0695790831,0.0458026743
-uk_covid_nation_1D/new,0.4026392659,0.3887864605,0.3817302555,0.3457811862,0.4174416304,0.3626234081,0.4166112363,0.4168794766,0.4527084805,0.4697780043,0.4591069408,0.4808448859,0.453881491,0.4987584807,0.4637164548
-uk_covid_nation_1W/cumulative,0.0279646563,0.0420784587,0.0336664002,0.0338043142,0.0386651377,0.0277593429,0.0386007642,0.0525751226,0.0229528998,0.0670678648,0.0234671999,0.0519616026,0.0820604023,0.0820604023,0.0507871248
-uk_covid_nation_1W/new,0.7566532683,0.4691022187,0.6047020033,0.7679864317,0.626670666,0.5119306892000001,0.533506915,0.4364076927,0.4829665609,0.7762918919,0.4576220214,0.4545178637,0.4544002153,0.4544002153,0.4722695798
-uk_covid_utla_1D/new,0.4765254823,0.4222944811,0.4611622334,0.4977396607,0.4566554457,0.4184653059,0.4370788723,0.4043421954,0.5653157011000001,0.6831767932,0.5764029175000001,0.5472069114,0.560081014,0.5015514418,0.5699051917
-uk_covid_utla_1W/cumulative,0.1985057108,0.2217276141,0.2228221811,0.1818175469,0.1957054086,0.2224105477,0.1935101479,0.2817648932,0.1562370956,0.1529182278,0.1736827634,0.2025926664,0.2501822181,0.2501822181,0.198870188
-us_consumption_1M,0.0221474791,0.0262938315,0.0229767126,0.0234064611,0.0282917617,0.0248397756,0.025038723,0.0353930782,0.0240289312,0.0266722746,0.0232927346,0.0304996581,0.0367178954,0.0583924714,0.0302986122
-us_consumption_1Q,0.0334895582,0.0319971864,0.0341675981,0.0322923365,0.0508262731,0.0323032217,0.0322679118,0.0549728539,0.0338116094,0.0334090083,0.0345600061,0.0455343083,0.0568597171,0.0723187622,0.0433424644
-us_consumption_1Y,0.0613212118,0.0577691134,0.0570256105,0.0712195709,0.0673417844,0.1083728828,0.0879293952,0.1102996588,0.0638795553,0.0521022394,0.0765756212,0.1074392479,0.1702565216,0.1702565216,0.1056817938
-walmart,0.0933870797,0.1015809998,0.1053567082,0.1384944916,0.0943299681,0.1315481663,0.1172761619,0.1211136207,0.1773376018,0.1595972031,0.2950883508,0.1852148771,0.1967352033,0.1967352033,0.2281249762
-world_co2_emissions,0.0894456842,0.0879381941,0.0871799563,0.0830718834,0.0868360951,0.093244922,0.0897831822,0.1067606712,0.081172869,0.0819489691,0.0843222712,0.0831107938,0.0984961833,0.0984961833,0.0830490989
-world_life_expectancy,0.01166582,0.0112725816,0.0107911893,0.0150144563,0.0108183488,0.0176806053,0.0130603154,0.0145865259,0.0126706732,0.0130623952,0.0126002091,0.0137058759,0.0171300128,0.0171300128,0.0147433012
-world_tourism,0.1209655751,0.1209704466,0.1137896851,0.1073285565,0.0676485132,0.114122387,0.1171618253,0.1553527489,0.0681912079,0.073036734,0.0937603042,0.0556104314,0.1106580384,0.1106580384,0.0549742542
diff --git a/tables/pivot_WAPE_baseline_imputed.csv b/tables/pivot_WAPE_baseline_imputed.csv
deleted file mode 100644
index cd82880cc8f95b5ef7b3d567841f6f81c16e4631..0000000000000000000000000000000000000000
--- a/tables/pivot_WAPE_baseline_imputed.csv
+++ /dev/null
@@ -1,101 +0,0 @@
-Task name,Chronos-2,TimesFM-2.5,TiRex,Toto-1.0,TabPFN-TS,Moirai-2.0,Chronos-Bolt,Sundial-Base,Stat. Ensemble,AutoARIMA,AutoETS,AutoTheta,Naive,Seasonal Naive,Drift
-ETT_15T,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-ETT_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ETT_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ETT_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-LOOP_SEATTLE_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-LOOP_SEATTLE_1H,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-LOOP_SEATTLE_5T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-M_DENSE_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-M_DENSE_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-SZ_TAXI_15T,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-SZ_TAXI_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-australian_tourism,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-bizitobs_l2c_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-bizitobs_l2c_5T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1062,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1209,False,False,False,False,False,False,False,False,False,False,True,False,False,False,False
-boomlet_1225,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1230,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1282,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1487,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1631,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-boomlet_1676,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-boomlet_1855,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1975,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_2187,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_285,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_619,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_772,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_963,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ecdc_ili,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-entsoe_15T,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-entsoe_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-entsoe_30T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_be,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_de,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_fr,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_np,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_pjm,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ercot_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ercot_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ercot_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ercot_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_stores_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_stores_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_stores_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_transactions_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_transactions_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_transactions_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-fred_md_2025/cee,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-fred_md_2025/macro,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-fred_qd_2025/cee,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-fred_qd_2025/macro,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-gvar,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hermes,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hierarchical_sales_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hierarchical_sales_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hospital,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hospital_admissions_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hospital_admissions_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-jena_weather_10T,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-jena_weather_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-jena_weather_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-kdd_cup_2022_10T,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-kdd_cup_2022_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-kdd_cup_2022_30T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-m5_1D,False,False,False,False,True,False,False,False,True,False,False,False,False,False,False
-m5_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-m5_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-proenfo_gfc12,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-proenfo_gfc14,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-proenfo_gfc17,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-redset_15T,False,False,False,False,False,False,False,False,True,True,True,False,False,False,False
-redset_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-redset_5T,False,False,False,False,False,False,False,False,False,False,True,False,False,False,False
-restaurant,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rohlik_orders_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rohlik_orders_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rohlik_sales_1D,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-rohlik_sales_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rossmann_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rossmann_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-solar_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-solar_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-solar_with_weather_15T,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-solar_with_weather_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uci_air_quality_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uci_air_quality_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_nation_1D/cumulative,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_nation_1D/new,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_nation_1W/cumulative,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_nation_1W/new,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_utla_1D/new,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_utla_1W/cumulative,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-us_consumption_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-us_consumption_1Q,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-us_consumption_1Y,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-walmart,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-world_co2_emissions,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-world_life_expectancy,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-world_tourism,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
diff --git a/tables/pivot_WAPE_leakage_imputed.csv b/tables/pivot_WAPE_leakage_imputed.csv
deleted file mode 100644
index da1b1aa0898ccbbae8471bf6c8f15076ffff7bcc..0000000000000000000000000000000000000000
--- a/tables/pivot_WAPE_leakage_imputed.csv
+++ /dev/null
@@ -1,101 +0,0 @@
-Task name,Chronos-2,TimesFM-2.5,TiRex,Toto-1.0,TabPFN-TS,Moirai-2.0,Chronos-Bolt,Sundial-Base,Stat. Ensemble,AutoARIMA,AutoETS,AutoTheta,Naive,Seasonal Naive,Drift
-ETT_15T,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-ETT_1D,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-ETT_1H,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-ETT_1W,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-LOOP_SEATTLE_1D,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-LOOP_SEATTLE_1H,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-LOOP_SEATTLE_5T,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-M_DENSE_1D,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-M_DENSE_1H,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-SZ_TAXI_15T,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-SZ_TAXI_1H,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-australian_tourism,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-bizitobs_l2c_1H,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-bizitobs_l2c_5T,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-boomlet_1062,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1209,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1225,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1230,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1282,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1487,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1631,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1676,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1855,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1975,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_2187,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_285,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_619,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_772,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_963,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ecdc_ili,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-entsoe_15T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-entsoe_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-entsoe_30T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_be,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_de,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_fr,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_np,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_pjm,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ercot_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ercot_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ercot_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ercot_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_stores_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_stores_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_stores_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_transactions_1D,False,True,False,True,False,True,False,False,False,False,False,False,False,False,False
-favorita_transactions_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_transactions_1W,False,True,False,False,False,False,False,False,False,False,False,False,False,False,False
-fred_md_2025/cee,False,True,False,True,False,True,False,False,False,False,False,False,False,False,False
-fred_md_2025/macro,False,True,False,True,False,True,False,False,False,False,False,False,False,False,False
-fred_qd_2025/cee,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-fred_qd_2025/macro,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-gvar,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hermes,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hierarchical_sales_1D,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-hierarchical_sales_1W,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-hospital,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-hospital_admissions_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hospital_admissions_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-jena_weather_10T,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-jena_weather_1D,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-jena_weather_1H,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-kdd_cup_2022_10T,False,True,True,True,False,True,False,True,False,False,False,False,False,False,False
-kdd_cup_2022_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-kdd_cup_2022_30T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-m5_1D,False,True,False,True,False,True,False,False,False,False,False,False,False,False,False
-m5_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-m5_1W,False,True,False,False,False,False,False,False,False,False,False,False,False,False,False
-proenfo_gfc12,False,True,False,True,False,True,False,False,False,False,False,False,False,False,False
-proenfo_gfc14,False,True,False,True,False,True,False,False,False,False,False,False,False,False,False
-proenfo_gfc17,False,True,False,True,False,True,False,False,False,False,False,False,False,False,False
-redset_15T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-redset_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-redset_5T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-restaurant,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-rohlik_orders_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rohlik_orders_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rohlik_sales_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rohlik_sales_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rossmann_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rossmann_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-solar_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-solar_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-solar_with_weather_15T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-solar_with_weather_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uci_air_quality_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uci_air_quality_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_nation_1D/cumulative,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_nation_1D/new,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_nation_1W/cumulative,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_nation_1W/new,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_utla_1D/new,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_utla_1W/cumulative,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-us_consumption_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-us_consumption_1Q,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-us_consumption_1Y,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-walmart,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-world_co2_emissions,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-world_life_expectancy,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-world_tourism,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
diff --git a/tables/pivot_WQL.csv b/tables/pivot_WQL.csv
deleted file mode 100644
index 114dff774c08cc00eeeb3cfb98c4e88fdc2db92c..0000000000000000000000000000000000000000
--- a/tables/pivot_WQL.csv
+++ /dev/null
@@ -1,101 +0,0 @@
-Task name,Chronos-2,TiRex,TimesFM-2.5,Toto-1.0,TabPFN-TS,Moirai-2.0,Chronos-Bolt,Sundial-Base,Stat. Ensemble,AutoARIMA,AutoETS,AutoTheta,Seasonal Naive,Naive,Drift
-ETT_15T,0.088140917,0.0914609728,0.0925313491,0.0951691601,0.0966499793,0.0933383153,0.0933383153,0.0969683943,0.1224205307,0.1224205307,0.1889663006,0.170235374,0.1224205307,0.2051287363,0.2108337564
-ETT_1D,0.2599714581,0.2612366718,0.267888696,0.2741924035,0.3179643477,0.2669855109,0.2669855109,0.3129149392,0.3227852613,0.3320927513,0.3649904644,0.360480833,0.3642035745,0.3538102937,0.3621092269
-ETT_1H,0.1929432618,0.1923900276,0.1916135933,0.189981304,0.2034494101,0.2059476241,0.2059476241,0.2146782131,0.2620350459,0.2275419988,0.3554423083,0.387905148,0.2597090183,0.4903424451,0.5136644933
-ETT_1W,0.4180629794,0.3834384084,0.3998766685,0.3901701003,0.4148319078,0.3737931634,0.3737931634,0.4643316617,0.4495446321,0.4761461158,0.4577441806,0.4986518854,0.4614224698,0.4614224698,0.4961494694
-LOOP_SEATTLE_1D,0.0294338099,0.029926259,0.0292182088,0.0313094796,0.0295572487,0.0304002738,0.0304002738,0.0326217509,0.0310410872,0.0306907047,0.0311914855,0.0325479384,0.0397058571,0.0919262659,0.0978699313
-LOOP_SEATTLE_1H,0.0547949407,0.0562291392,0.0529133781,0.0599067065,0.0580208445,0.0662523771,0.0662523771,0.0664487294,0.1307515175,0.1307515175,0.2388070951,0.2528752457,0.1307515175,0.3038598558,0.3206568541
-LOOP_SEATTLE_5T,0.0574848175,0.0594513843,0.0643709018,0.0606719844,0.0689450513,0.0781392419,0.0781392419,0.0714930823,0.1151931596,0.1111745205,0.1270606325,0.121969972,0.081199984,0.1936404655,0.210202567
-M_DENSE_1D,0.0712116931,0.0821914373,0.0773717212,0.0906527349,0.0776412798,0.0817335467,0.0817335467,0.0844361527,0.1131422312,0.1051447846,0.1323504645,0.1459052349,0.1367572058,0.2323397334,0.2363624963
-M_DENSE_1H,0.1198308475,0.1208851977,0.1143436056,0.1267713853,0.1296769427,0.1209575592,0.1209575592,0.1339606641,0.2346087824,0.2211301613,12.8518608164,0.7918015547,0.2731296131,0.84829413,0.8946267050000001
-SZ_TAXI_15T,0.1878149403,0.1889248146,0.1894354422,0.1918294193,0.2040341404,0.197437778,0.197437778,0.2118998785,0.2672484294,0.2672484294,0.9991056751,0.2434722417,0.2672484294,0.6619538384,0.6804962505000001
-SZ_TAXI_1H,0.1329118955,0.1368741884,0.1394973218,0.1399772683,0.1666049443,0.1447212932,0.1447212932,0.1764986928,0.2449234495,0.2187159408,4510502977.541462,0.3559208311,0.2910650923,0.9157567452,1.0097515601
-australian_tourism,0.0714093581,0.0861105624,0.0761527549,0.1044141415,0.07310177,0.1053900171,0.1140447009,0.0836038879,0.0747720206,0.0866216851,0.0760110551,0.0823354804,0.0905870679,0.1922018184,0.2141353268
-bizitobs_l2c_1H,0.2574968709,0.3395892762,0.3062390652,0.4180692521,0.3020415377,0.3259227696,0.3259227696,0.4028991374,1.2739406784,1.4044947577,1.4288888475,1.3542131559,2.0969368333,1.3379066541,1.3508241876
-bizitobs_l2c_5T,0.3972980474,1.2724528657,0.7904916189000001,1.0846777557,0.6797159368,1.2750077013,1.2750077013,0.5857720953000001,1.5128526941,1.8771775481,1.6113720868,1.6069322946,2.2877704895,1.4507804453,1.731649134
-boomlet_1062,0.4575715706,0.462540047,0.4710064002,0.4560339911,0.4854876351,0.4872201343,0.5409239931000001,0.5396810790000001,0.7822110511,0.5907259586,1.0658179181,1.085539266,0.7418110944,3.1996986673,3.4646472151
-boomlet_1209,0.2624618736,0.2759885511,0.2609844697,0.2511164388,0.3699793008,0.2879466627,0.301826322,0.2937933689,1.0148176093,0.4535022053,0.5015055777,1.1157526247,0.5015055777,1.328999921,1.4420052382000002
-boomlet_1225,0.0982049927,0.0990409314,0.1000748977,0.0968533979,0.1144239787,0.1024577962,0.1066372427,0.1172112941,0.1451941336,0.12260998,0.1651551358,0.1711256418,0.3809038981,0.3809038981,0.3876340759
-boomlet_1230,0.2619779044,0.2653064283,0.2547608466,0.2477353188,0.3987332881,0.2744689053,0.3010213735,0.2814650284,0.9994018454,0.4477425115,228079607857629.03,1.1951987922,0.5006062673,1.7490874961,1.895555107
-boomlet_1282,0.285764271,0.2813823066,0.2769507583,0.2786303196,0.292132349,0.2943955518,0.3174313196,0.3125554342,0.49773322,0.3750317971,0.62613098,0.6672579187000001,1.0473420209,1.0473420209,1.0675288199
-boomlet_1487,0.1664420374,0.1679334305,0.1621616582,0.1572610369,0.2936465116,0.179562264,0.190011281,0.1963999731,0.2664583485,0.2570055801,0.2835559204,0.3266562805,0.3287160259,2.1936503487,2.3761204352
-boomlet_1631,0.2500221983,0.2578011825,0.2521962154,0.2530865122,0.294595714,0.2594328079,0.2712471357,0.2762733263,0.3678343488,0.3678343488,0.3219452018,0.3246702609,0.3678343488,0.5939295732000001,0.6115095201
-boomlet_1676,0.2538630455,0.2548401001,0.2519960915,0.2495295993,0.2853155601,0.2579772293,0.2757684538,0.274422727,0.3899388202,0.3899388202,0.3561141453,0.3689668234,0.3899388202,0.5376397046,0.5530190574
-boomlet_1855,0.1371847144,0.1348268939,0.1418942616,0.1355059408,0.1913295293,0.139558043,0.1402605794,0.1563253928,0.2389634823,0.2316298817,0.2553622581,0.2591897672,0.3053456375,0.5272950774,0.5309525567
-boomlet_1975,0.0754861445,0.1095269694,0.0946619153,0.0726927455,0.1155713746,0.1195154441,0.1030843609,0.1103445012,0.3109341662,0.3101025558,0.3508947927,0.3645838608,0.490065287,0.3511931898,0.3522290761
-boomlet_2187,0.2318940214,0.2304085287,0.2575487452,0.24435445,0.2994495011,0.2578882698,0.2524757438,0.2800640842,0.4312238249,0.4412020452,0.4456954551,0.4740037125,0.5699897289,1.0418096521,1.049295268
-boomlet_285,0.1346407886,0.148143136,0.1683399577,0.1331450908,0.1553438735,0.1889532567,0.2234209762,0.2244579194,0.3030251372,0.2917086037,0.3012758228,0.3165758913,1.2032068551,1.2032068551,1.2258270453
-boomlet_619,0.2302330542,0.2471279568,0.2458341339,0.2162579975,0.2349216897,0.2356420104,0.3764453393,0.2649462131,0.6585898854000001,0.4527380943,0.7635945062,0.6993259862,0.9678549923,0.9678549923,0.9877621571
-boomlet_772,0.133101379,0.136682574,0.1358824185,0.1307594429,0.1546550252,0.1437870275,0.155831971,0.1611776721,0.4436068427,0.3102148884,233223016.4792193,0.5422949313000001,0.9858607218,0.9858607218,1.0040136572
-boomlet_963,0.3166849574,0.3257730396,0.3291269599,0.3152013005,0.368648075,0.3420300574,0.3596501239,0.3456713575,0.6331985559000001,0.5019102045,0.7424657093,0.716591367,0.811345873,0.811345873,0.8256079501
-ecdc_ili,0.3096012701,0.3706244122,0.3434282741,0.3944662068,0.3232828815,0.3850819865,0.4167010575,0.4694310556,0.5427352164,0.5348657716,0.5818744542000001,0.5760490118,0.5547015104,0.5547015104,0.5751070381
-entsoe_15T,0.0332921944,0.03370606,0.0334792124,0.0413516905,0.0335205629,0.0343344442,0.0362665583,0.0499695365,0.0566124331,0.0566124331,0.313985467,0.04302748,0.0566124331,0.1154915649,0.1262425683
-entsoe_1H,0.0261903902,0.0293722588,0.029016943,0.0302241335,0.0272967255,0.033285571,0.0281751907,0.050980506,0.0660357719,0.0666871832,0.1446894285,0.0693891454,0.0798215745,0.144830171,0.1529602098
-entsoe_30T,0.0290675118,0.0314140317,0.0388367365,0.0301774471,0.0321818804,0.0318440586,0.0321248654,0.0485585461,0.0612238614,0.0731621073,0.1815717143,0.0571609073,0.0725922166,0.1142494542,0.1132384606
-epf_be,0.0901568527,0.0962218885,0.0904647786,0.1057693667,0.0932975438,0.0968269743,0.106932535,0.116974555,0.2109061816,0.1868416274,0.2658805243,0.2582438044,0.2012625857,0.5357212884,0.5396597512
-epf_de,0.2407177006,0.468452292,0.4775486473,0.5515425934,0.2426255873,0.4585770885,0.4643713196,0.5102784096,0.4882154408,0.5432797572,0.5287818089,0.6490481061000001,0.5919144005,0.5286529239000001,0.5344012453
-epf_fr,0.0548184758,0.063925129,0.0640304463,0.0682821872,0.0491162423,0.0646047834,0.0684544774,0.0719692742,0.1676570118,0.171487674,0.1386675645,0.2296495476,0.1818024008,0.5500836774,0.5542629353
-epf_np,0.0297236562,0.0438147562,0.0519221,0.0471320493,0.0293296573,0.0419786745,0.0445199614,0.0428252373,0.05738593,0.0636813178,0.086372811,0.0578512541,0.0691889058,0.0868798682,0.0869585173
-epf_pjm,0.0667749027,0.071403604,0.0757086151,0.0799833604,0.0739926826,0.0766169612,0.0739331273,0.084093308,0.0862614181,0.0855296797,0.1606961463,0.1068456977,0.0908421958,0.1641666584,0.1656245552
-ercot_1D,0.059742223,0.0583644776,0.0590120341,0.0621409451,0.0688811199,0.0637608291,0.0620146905,0.0665392831,0.0936050684,0.0865494548,0.1027502478,0.1055339552,0.1044921679,0.1043182678,0.1051661229
-ercot_1H,0.0517757176,0.0542294904,0.0584985426,0.0555864688,0.0615615188,0.0563341027,0.0597259069,0.0625128045,0.0642267414,0.0597358018,0.1494485063,0.0646341807,0.0682466944,0.1331050238,0.1354763369
-ercot_1M,0.0374032877,0.0419160577,0.0380629909,0.0530588211,0.0407906509,0.0509930124,0.0398626935,0.0434627402,0.0375336712,0.0388325707,0.0371511279,0.0470765052,0.0427842586,0.2106942527,0.2307212042
-ercot_1W,0.0461530362,0.0457429263,0.0465659059,0.0515355854,0.0531508617,0.0502061941,0.0467287195,0.0583864951,0.1138242996,0.1129826874,0.1134717335,0.1163159858,0.1143459151,0.1143459151,0.1147730701
-favorita_stores_1D,0.1111436042,0.1242660249,0.1184216613,0.1439165317,0.1204039869,0.1278709711,0.1418629323,0.1353609503,0.1606265395,0.1647292421,0.1672181851,0.1778642628,0.2375760789,0.4079240646,0.4110111744
-favorita_stores_1M,0.1214689688,0.1421527991,0.1508910378,0.1391907522,0.0943255732,0.1725604577,0.1852146109,0.2222006124,0.1265354908,0.1314480379,0.1328922997,0.1244588255,0.1715121001,0.1701131599,0.1843808726
-favorita_stores_1W,0.1088586482,0.1134128786,0.109472936,0.1223103152,0.1011036417,0.1243048273,0.1268154753,0.1312294599,0.1336292959,0.1331314369,0.1429768358,0.1407957933,0.1608274596,0.1608274596,0.1626164075
-favorita_transactions_1D,0.0493905059,0.067704191,0.0735763953,0.0735763953,0.0603391606,0.0735763953,0.0735763953,0.0710714949,0.094900864,0.1055051904,0.0944759338,0.0991455646,0.1403339153,0.2372471038,0.2388998485
-favorita_transactions_1M,0.0604582892,0.0683964364,0.0642577109,0.0770716759,0.0718016091,0.0756335151,0.0799691906,0.0834713904,0.0705845865,0.0776326578,0.0709936943,0.0829960463,0.0855815678,0.1052862092,0.1152703332
-favorita_transactions_1W,0.0471234517,0.049259837,0.0528246684,0.0575771001,0.0575076503,0.0569446098,0.0528246684,0.0632163955,0.0648065086,0.0648478224,0.0694461916,0.0703094331,0.0783787891,0.0783787891,0.080280481
-fred_md_2025/cee,0.0668234172,0.0670834958,0.0750783838,0.0750783838,0.0743757483,0.0750783838,0.0750783838,0.0954701869,0.1051946757,0.133660425,0.0757646768,0.1182489158,0.2073879582,0.1174362958,0.1155920484
-fred_md_2025/macro,0.0658449,0.0651736736,0.0689005701,0.0689005701,0.0703198143,0.0689005701,0.0689005701,0.0758142866,0.0780002055,0.0859787221,0.0754502178,0.0815239103,0.119592083,0.0816199937,0.0813235213
-fred_qd_2025/cee,0.13493629,0.1205702323,0.1290291477,0.1111966207,0.1232875729,0.1271824649,0.1238446163,0.1631968012,0.1373877839,0.1474873424,0.1365938852,0.1482369083,0.194192155,0.1537726616,0.1492650928
-fred_qd_2025/macro,0.0877492891,0.0847291191,0.0852353396,0.0836177008,0.0926080385,0.0863520335,0.0870314598,0.1012011908,0.0918310561,0.0955504799,0.0949233782,0.0954220424,0.1198022215,0.0963745296,0.0950284899
-gvar,0.0149820687,0.0150792847,0.0152665936,0.0149166365,0.0179419087,0.015061142,0.015482776,0.0185296964,0.0162937715,0.0169170494,0.0159433726,0.0166324554,0.0212211567,0.0176762713,0.0174836229
-hermes,0.00225818,0.0024187939,0.0022928048,0.0036102677,0.0026219625,0.0026712263,0.0025240351,0.0031453384,0.0061269301,0.0050407278,0.0073879456,0.0068258834,0.0087083111,0.0087083111,0.0090940295
-hierarchical_sales_1D,0.5714809959,0.5556084899,0.5615462267,0.5599444088000001,0.5928670205000001,0.5634020932,0.5634020932,0.647815962,0.8177303567,0.6915383974,0.9358165942,0.9689367577,1.1222145629,1.6764214744,1.6911406182
-hierarchical_sales_1W,0.3648561995,0.3675267983,0.36900549,0.3702396077,0.3741749103,0.3762527696,0.3762527696,0.4228486488,0.465201591,0.4672185482,7.8275973261,0.4883602498,0.9260072924,0.9260072924,0.9465583798
-hospital,0.0748078224,0.0726720337,0.0714240645,0.0782312026,0.0744330876,0.075323756,0.075323756,0.0900986355,0.0749195627,0.0845424144,0.0759570393,0.0813819141,0.0783920641,0.1042062258,0.1105393325
-hospital_admissions_1D,0.4112482571,0.4117757474,0.4124642645,0.4120033633,0.4170562141,0.4120897736,0.4125280894,0.4526293478,0.41312756,0.4121681663,0.4122712942,0.4263733391,0.6361459769000001,0.9837276521,0.9916738218
-hospital_admissions_1W,0.1624167729,0.1647817222,0.1632100946,0.1680866908,0.163762699,0.1651659256,0.1652841678,0.1802484199,0.1630497452,0.1631143081,0.1628325575,0.168270042,0.2969374559,0.2969374559,0.3078008055
-jena_weather_10T,0.2528507588,0.2661828374,0.2127668736,0.2353999499,0.2551716964,0.2625552838,0.2625552838,0.3371179261,1.7057621919,1.7057621919,3.1495387185,3.5724878985,1.7057621919,3.6828586054,3.8552910899
-jena_weather_1D,0.2257062563,0.2210204491,0.218506197,0.2246469289,0.2320364869,0.2254046561,0.2254046561,0.2665635899,0.3084284928,0.3017046194,0.3511726073,0.352949988,0.4719762386,0.6992484433,0.7361988018000001
-jena_weather_1H,0.2250019598,0.2168159034,0.2233014541,0.2068719624,0.2343045768,0.234099159,0.234099159,0.4350680693,1.0549343053,0.8256929905,1.4084504179,1.6859107034,1.2878361856,1.6601789319,1.6730314795
-kdd_cup_2022_10T,1.2012688912,1.3753457151,1.3753457151,1.3753457151,2.3282104591,1.3753457151,1.3753457151,1.3753457151,3.4658735242,3.4658735242,2.5986419348,2.5543058657,3.4658735242,2.6760920983,2.9246115818
-kdd_cup_2022_1D,0.5599962195,0.556621323,0.5527344226,0.5570149360000001,0.5680073145,0.5630864114,0.5631888802,0.6469029607,0.5920639476,0.5843812529,0.6089510673,0.5966451508,0.75069981,0.9265198159,0.948426295
-kdd_cup_2022_30T,1.3117733464,1.3401124353,1.6757596515,1.3756596821,2.2207570053,1.2046794654,2.2656435299,1.6183676077,2.2310513851,2.1850967479,2.6468743604,2.5972049691,3.2580293089,2.5790907336,2.6373925567
-m5_1D,0.5553520672,0.5522750547,0.5619946767,0.5619946767,0.8588793502000001,0.5619946767,0.5619946767,0.6369837787,0.8588793502000001,0.611489809,0.6156373922,0.6265285781000001,0.8588793502000001,1.352981474,1.3656864863
-m5_1M,0.3477280433,0.3446529974,0.3370295405,0.3648378977,0.3466619129,0.3456589364,0.3566383823,0.3886462021,0.3701215676,0.380094291,0.4320692413,0.4195249159,0.4285745193,0.4471596243,0.5002848742
-m5_1W,0.3375480209,0.3359465585,0.3409590155,0.3368808055,0.3436698517,0.3361267514,0.3409590155,0.3622685986,0.3617147564,0.3580006782,0.3728147004,0.3767071031,0.5198944018,0.5198944018,0.5321822364000001
-proenfo_gfc12,0.0555966972,0.0771150803,0.077263494,0.077263494,0.0702222225,0.077263494,0.077263494,0.0732963269,0.1181658339,0.0987456528,0.2072982242,0.1250899583,0.1088404134,0.2075379042,0.2175193024
-proenfo_gfc14,0.0210605929,0.0353901819,0.0375513457,0.0375513457,0.0252054415,0.0375513457,0.0375513457,0.0204786531,0.0444124312,0.0464290142,0.0544938011,0.0519159577,0.0529491741,0.158759622,0.1683589627
-proenfo_gfc17,0.0315349159,0.0597007945,0.0608284875,0.0608284875,0.0440642892,0.0608284875,0.0608284875,0.0315794369,0.0769991028,0.0761960672,0.146648178,0.0769725348,0.0897222269,0.1691034077,0.1777795871
-redset_15T,0.2174028756,0.2431114555,0.2501147518,0.2510706717,0.2325884637,0.2504748238,0.2713077355,0.2914044606,0.4607365658,0.4607365658,0.4607365658,0.940375013,0.4607365658,1.565727146,1.6075485006
-redset_1H,0.1754538486,0.1792595698,0.1953408446,0.1912104253,0.1873583276,0.1892621749,0.2027229088,0.2287683337,0.3644260201,0.347358315,3.3022819464,0.471399676,0.4120467256,0.8881015738,0.8935980201
-redset_5T,0.2706931879,0.3109114114,0.288140782,0.2789818321,0.289831124,0.3116496574,0.3706331476,0.3372367613,0.9331343204,0.6814341656,0.5026322375,1.1479851264,0.5026322375,2.8198686088,3.0482376442
-restaurant,0.2820261405,0.282683528,0.2808265082,0.2932229182,0.286941911,0.2874369433,0.2874369433,0.3121784735,0.2987534022,0.3174475777,0.4313426382,0.3228884373,0.4263793897,0.7194392994000001,0.7547545082
-rohlik_orders_1D,0.0453576139,0.046778087,0.0473405217,0.0531957347,0.0585028628,0.0454924381,0.0495487283,0.0570594271,0.0551848097,0.0603755941,0.0637016666,0.0607226711,0.0730389024,0.1384185633,0.141017357
-rohlik_orders_1W,0.0419834037,0.0425926735,0.0430425121,0.0489199152,0.049953361,0.0500948995,0.047050427,0.0608989622,0.0465205009,0.0471291762,0.046928104,0.0464560362,0.0498648091,0.0498648091,0.0497673655
-rohlik_sales_1D,0.2203668339,0.3154378947,0.2983877224,0.3351760018,0.3727953997,0.3202051989,0.3139840107,0.3250144355,0.3425447103,0.3459201995,0.3543382966,0.3563233504,0.3727953997,0.4099413728,0.4141182186
-rohlik_sales_1W,0.1860678419,0.2252347071,0.2196835891,0.2348251568,0.1697896851,0.2364913465,0.2336631822,0.2594374504,0.2595910509,0.2670259076,4.0491052559,0.2655509054,0.3323396817,0.3323396817,0.3393924276
-rossmann_1D,0.0954525644,0.1837160416,0.171116383,0.1931728074,0.0772288962,0.1799313223,0.178806336,0.1802362487,0.1969163908,0.1908416644,0.2028079674,0.291009868,0.3139894604,0.93885619,0.9579696488
-rossmann_1W,0.080244381,0.1304017962,0.1350575869,0.1345092339,0.0659741153,0.1342178268,0.1317076013,0.1572071227,0.135127457,0.1410069966,0.1401558708,0.1385267381,0.2508975252,0.2508975252,0.2680805063
-solar_1D,0.1855480723,0.1929553199,0.1938342095,0.1955625549,0.1919496514,0.2003849004,0.1990286403,0.2094179217,0.2041438251,0.2053532934,0.2049319678,0.2116725603,0.2794918566,0.4319792148,0.4569554917
-solar_1W,0.1513635002,0.1885658631,0.1848997811,0.2335483112,0.1459644443,0.2786290198,0.1573930974,0.1567824467,0.2181202588,0.2154878912,0.2063617654,0.2389863753,0.241539109,0.241539109,0.3053960241
-solar_with_weather_15T,0.9550527662,1.2067686983,1.2404817956,0.9998316485,0.9712352474,1.1204703544,1.1300785408,1.3507714502,1.4073798197,1.4073798197,1.9572357231,3.2872524251,1.4073798197,1.6964307303,1.7761051768
-solar_with_weather_1H,0.9780600605,1.2498913502,0.9695951652,1.2191318813,0.7960101453,1.2285296788,1.0189950233,1.3598337832,1.1487515083,1.2702665577,1.3928226357,2.6714879984,1.3170887607,1.3916210721,1.3968565452
-uci_air_quality_1D,0.2146017853,0.2321704936,0.2425060369,0.2553475038,0.239766452,0.2299092189,0.2228595882,0.2497182101,0.2303977966,0.2530270906,0.2425004358,0.2579293608,0.2922307509,0.3990393174,0.4166124807
-uci_air_quality_1H,0.2626699164,0.2890236922,0.2903775779,0.2863033352,0.3066820684,0.3062706804,0.3020104526,0.3368853083,0.5268864008,0.3923535075,20468.2757052641,0.6724046824000001,0.460867968,0.8360828268,0.8759093056
-uk_covid_nation_1D/cumulative,0.0161921461,0.0138342964,0.0153292336,0.0125938684,0.0316628726,0.0145084122,0.0190395107,0.0397848581,0.0188346391,0.0173381483,0.0163459748,0.0435228041,0.0616683882,0.0540829702,0.0420838658
-uk_covid_nation_1D/new,0.3207938336,0.3109536889,0.3156210831,0.2838323856,0.3652919167,0.295667223,0.3374595917,0.3704647201,0.6131520742000001,0.6717556157,0.7010568349,0.6249699219,0.7590347607,0.6807093543,0.6959726061
-uk_covid_nation_1W/cumulative,0.0231629073,0.0306531397,0.0334625898,0.0259156466,0.0313019374,0.0235252689,0.0308278174,0.0470469389,0.0198408228,0.0621980203,0.0195175599,0.0457146098,0.0708838512,0.0708838512,0.0450304907
-uk_covid_nation_1W/new,0.5773892559,0.5056475261,0.3916377081,0.5874941513,0.5181874025000001,0.4243048101,0.4123778016,0.346954435,0.4963902021,0.7570660296,0.4600308825,0.4631006396,0.4524501242,0.4524501242,0.4739863292
-uk_covid_utla_1D/new,0.3910187444,0.3797951228,0.3533112754,0.4097196009,0.3768120784,0.3538288145,0.3616969038,0.3594274377,0.5001590872,0.6134348659000001,0.5094112038,0.476165342,0.4420318364,0.5157896779,0.5265475783
-uk_covid_utla_1W/cumulative,0.171083851,0.2003527874,0.1901138083,0.1555521636,0.16972636,0.195409151,0.1670758111,0.2660261673,0.138335546,0.1351972799,0.1685579648,0.186827715,0.2340614394,0.2340614394,0.1835390955
-us_consumption_1M,0.0197271574,0.0197402218,0.0226701155,0.0205041485,0.0243746544,0.0218430056,0.0218589731,0.032429082,0.0214320964,0.0239150894,0.0201648123,0.0272716281,0.0497079002,0.032661543,0.0266511556
-us_consumption_1Q,0.0274404827,0.0279758108,0.026686332,0.0270793373,0.039451329,0.0274257255,0.0277102453,0.050684032,0.0294259535,0.030008464,0.0292799577,0.0412327495,0.0619774434,0.0509220091,0.0386050624
-us_consumption_1Y,0.0498855623,0.0438966964,0.0465564099,0.0546159459,0.0536317719,0.0851402532,0.0656167649,0.0997271328,0.0515666785,0.0428692104,0.0592817405,0.0967727372,0.1514273794,0.1514273794,0.0943820837
-walmart,0.0739271753,0.0849769317,0.0803039051,0.113539905,0.0751515146,0.1057545178,0.0950021434,0.1036346439,0.1643578174,0.1319843981,119300400139.46916,0.1996789224,0.3075011099,0.3075011099,0.3407542314
-world_co2_emissions,0.0729773107,0.0707450544,0.0751862129,0.0712556895,0.0717195922,0.076153015,0.0727688426,0.0955702861,0.0701479592,0.0705282623,0.0887646329,0.0742405541,0.0832284265,0.0832284265,0.073077502
-world_life_expectancy,0.0095948732,0.0089847076,0.0097525655,0.0120911181,0.0093362704,0.0144690768,0.0108645301,0.0129798805,0.010866463,0.0112841979,0.0107918452,0.0118279018,0.0143077928,0.0143077928,0.0130987043
-world_tourism,0.0908975711,0.0849997606,0.0984825726,0.0868200211,0.0601786476,0.0894951758,0.0889419278,0.1403522964,0.0552036802,0.0578924108,0.0724923711,0.0479228397,0.0866853455,0.0866853455,0.0439170643
diff --git a/tables/pivot_WQL_baseline_imputed.csv b/tables/pivot_WQL_baseline_imputed.csv
deleted file mode 100644
index be7f304946dd4724a769bc4a48cfe85800a571d5..0000000000000000000000000000000000000000
--- a/tables/pivot_WQL_baseline_imputed.csv
+++ /dev/null
@@ -1,101 +0,0 @@
-Task name,Chronos-2,TiRex,TimesFM-2.5,Toto-1.0,TabPFN-TS,Moirai-2.0,Chronos-Bolt,Sundial-Base,Stat. Ensemble,AutoARIMA,AutoETS,AutoTheta,Seasonal Naive,Naive,Drift
-ETT_15T,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-ETT_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ETT_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ETT_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-LOOP_SEATTLE_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-LOOP_SEATTLE_1H,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-LOOP_SEATTLE_5T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-M_DENSE_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-M_DENSE_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-SZ_TAXI_15T,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-SZ_TAXI_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-australian_tourism,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-bizitobs_l2c_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-bizitobs_l2c_5T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1062,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1209,False,False,False,False,False,False,False,False,False,False,True,False,False,False,False
-boomlet_1225,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1230,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1282,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1487,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1631,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-boomlet_1676,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-boomlet_1855,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1975,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_2187,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_285,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_619,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_772,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_963,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ecdc_ili,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-entsoe_15T,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-entsoe_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-entsoe_30T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_be,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_de,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_fr,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_np,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_pjm,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ercot_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ercot_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ercot_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ercot_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_stores_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_stores_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_stores_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_transactions_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_transactions_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_transactions_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-fred_md_2025/cee,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-fred_md_2025/macro,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-fred_qd_2025/cee,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-fred_qd_2025/macro,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-gvar,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hermes,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hierarchical_sales_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hierarchical_sales_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hospital,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hospital_admissions_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hospital_admissions_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-jena_weather_10T,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-jena_weather_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-jena_weather_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-kdd_cup_2022_10T,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-kdd_cup_2022_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-kdd_cup_2022_30T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-m5_1D,False,False,False,False,True,False,False,False,True,False,False,False,False,False,False
-m5_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-m5_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-proenfo_gfc12,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-proenfo_gfc14,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-proenfo_gfc17,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-redset_15T,False,False,False,False,False,False,False,False,True,True,True,False,False,False,False
-redset_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-redset_5T,False,False,False,False,False,False,False,False,False,False,True,False,False,False,False
-restaurant,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rohlik_orders_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rohlik_orders_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rohlik_sales_1D,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False
-rohlik_sales_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rossmann_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rossmann_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-solar_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-solar_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-solar_with_weather_15T,False,False,False,False,False,False,False,False,True,True,False,False,False,False,False
-solar_with_weather_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uci_air_quality_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uci_air_quality_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_nation_1D/cumulative,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_nation_1D/new,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_nation_1W/cumulative,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_nation_1W/new,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_utla_1D/new,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_utla_1W/cumulative,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-us_consumption_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-us_consumption_1Q,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-us_consumption_1Y,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-walmart,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-world_co2_emissions,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-world_life_expectancy,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-world_tourism,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
diff --git a/tables/pivot_WQL_leakage_imputed.csv b/tables/pivot_WQL_leakage_imputed.csv
deleted file mode 100644
index 7531fb0ed79d9411c997316ec05ecb01a15689d2..0000000000000000000000000000000000000000
--- a/tables/pivot_WQL_leakage_imputed.csv
+++ /dev/null
@@ -1,101 +0,0 @@
-Task name,Chronos-2,TiRex,TimesFM-2.5,Toto-1.0,TabPFN-TS,Moirai-2.0,Chronos-Bolt,Sundial-Base,Stat. Ensemble,AutoARIMA,AutoETS,AutoTheta,Seasonal Naive,Naive,Drift
-ETT_15T,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-ETT_1D,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-ETT_1H,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-ETT_1W,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-LOOP_SEATTLE_1D,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-LOOP_SEATTLE_1H,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-LOOP_SEATTLE_5T,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-M_DENSE_1D,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-M_DENSE_1H,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-SZ_TAXI_15T,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-SZ_TAXI_1H,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-australian_tourism,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-bizitobs_l2c_1H,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-bizitobs_l2c_5T,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-boomlet_1062,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1209,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1225,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1230,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1282,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1487,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1631,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1676,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1855,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_1975,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_2187,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_285,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_619,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_772,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-boomlet_963,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ecdc_ili,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-entsoe_15T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-entsoe_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-entsoe_30T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_be,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_de,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_fr,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_np,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-epf_pjm,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ercot_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ercot_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ercot_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-ercot_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_stores_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_stores_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_stores_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_transactions_1D,False,False,True,True,False,True,False,False,False,False,False,False,False,False,False
-favorita_transactions_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-favorita_transactions_1W,False,False,True,False,False,False,False,False,False,False,False,False,False,False,False
-fred_md_2025/cee,False,False,True,True,False,True,False,False,False,False,False,False,False,False,False
-fred_md_2025/macro,False,False,True,True,False,True,False,False,False,False,False,False,False,False,False
-fred_qd_2025/cee,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-fred_qd_2025/macro,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-gvar,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hermes,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hierarchical_sales_1D,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-hierarchical_sales_1W,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-hospital,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-hospital_admissions_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-hospital_admissions_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-jena_weather_10T,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-jena_weather_1D,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-jena_weather_1H,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-kdd_cup_2022_10T,False,True,True,True,False,True,False,True,False,False,False,False,False,False,False
-kdd_cup_2022_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-kdd_cup_2022_30T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-m5_1D,False,False,True,True,False,True,False,False,False,False,False,False,False,False,False
-m5_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-m5_1W,False,False,True,False,False,False,False,False,False,False,False,False,False,False,False
-proenfo_gfc12,False,False,True,True,False,True,False,False,False,False,False,False,False,False,False
-proenfo_gfc14,False,False,True,True,False,True,False,False,False,False,False,False,False,False,False
-proenfo_gfc17,False,False,True,True,False,True,False,False,False,False,False,False,False,False,False
-redset_15T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-redset_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-redset_5T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-restaurant,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False
-rohlik_orders_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rohlik_orders_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rohlik_sales_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rohlik_sales_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rossmann_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-rossmann_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-solar_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-solar_1W,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-solar_with_weather_15T,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-solar_with_weather_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uci_air_quality_1D,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uci_air_quality_1H,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_nation_1D/cumulative,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_nation_1D/new,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_nation_1W/cumulative,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_nation_1W/new,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_utla_1D/new,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-uk_covid_utla_1W/cumulative,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-us_consumption_1M,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-us_consumption_1Q,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-us_consumption_1Y,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-walmart,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-world_co2_emissions,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-world_life_expectancy,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
-world_tourism,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False
diff --git a/tables/summaries.csv b/tables/summaries.csv
deleted file mode 100644
index b7c63090eef735ed2c25d52ad7b12f2fa62b2a55..0000000000000000000000000000000000000000
--- a/tables/summaries.csv
+++ /dev/null
@@ -1,1475 +0,0 @@
-model_name,dataset_path,dataset_config,horizon,num_windows,initial_cutoff,window_step_size,min_context_length,max_context_length,seasonality,eval_metric,extra_metrics,quantile_levels,id_column,timestamp_column,target,generate_univariate_targets_from,known_dynamic_columns,past_dynamic_columns,static_columns,task_name,test_error,training_time_s,inference_time_s,dataset_fingerprint,trained_on_this_dataset,fev_version,SQL,MASE,WAPE,WQL,framework_version,device_map,torch_dtype,num_forecasts
-AutoARIMA,autogluon/fev_datasets,ETT_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1D,1.2587593653,0.0,94.30531113,ff06ef09d043bd73,False,0.7.0,1.2587593653,1.4311893424,0.3554786793,0.3320927513,2.0.1,,,280
-AutoARIMA,autogluon/fev_datasets,ETT_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1H,1.052404926,0.0,4252.341582475,1051fcbf7ab489b5,False,0.7.0,1.052404926,1.2616150196,0.2729976766,0.2275419988,2.0.1,,,280
-AutoARIMA,autogluon/fev_datasets,ETT_1W,13,5,-65,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1W,2.4423112635,0.0,3.075158716,f7babcd132f54bf3,False,0.7.0,2.4423112635,2.7471493707,0.5033163548,0.4761461158,2.0.1,,,70
-AutoARIMA,autogluon/fev_datasets,LOOP_SEATTLE_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_1D,0.8099517857,0.0,690.761802885,02d7b9f04d1c3187,False,0.7.0,0.8099517857,0.9888675362,0.0375884525,0.0306907047,2.0.1,,,3230
-AutoARIMA,autogluon/fev_datasets,LOOP_SEATTLE_5T,288,10,-2880,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_5T,1.0012742792,0.0,201.616476622,c2739a4b195beef3,False,0.7.0,1.0012742792,0.9670797236,0.1080897018,0.1111745205,2.0.1,,,3230
-AutoARIMA,autogluon/fev_datasets,M_DENSE_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],M_DENSE_1D,0.9701754768,0.0,191.520785417,12417cabd3e820d7,False,0.7.0,0.9701754768,1.168959753,0.1260855269,0.1051447846,2.0.1,,,300
-AutoARIMA,autogluon/fev_datasets,M_DENSE_1H,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],M_DENSE_1H,1.0625833478,0.0,2922.979243606,e973593b94c21fa6,False,0.7.0,1.0625833478,1.1833753219,0.2454276025,0.2211301613,2.0.1,,,300
-AutoARIMA,autogluon/fev_datasets,SZ_TAXI_1H,168,2,-336,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],SZ_TAXI_1H,0.6584161139,0.0,874.88661334,7c28d9c08a8a99d2,False,0.7.0,0.6584161139,0.6365009349,0.2079726383,0.2187159408,2.0.1,,,312
-AutoARIMA,autogluon/fev_datasets,australian_tourism,8,2,-16,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],australian_tourism,0.8009680433,0.0,6.64264725,e3e704ef830bb1f4,False,0.7.0,0.8009680433,1.0124394981,0.1101633608,0.0866216851,2.0.1,,,178
-AutoARIMA,autogluon/fev_datasets,bizitobs_l2c_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_2', 'target_3', 'target_4', 'target_5', 'target_6']",,[],[],[],bizitobs_l2c_1H,0.6185436377,0.0,2104.226476309,fd3fb3349ee15a22,False,0.7.0,0.6185436377,0.7748607972,1.7735276449,1.4044947577,2.0.1,,,140
-AutoARIMA,autogluon/fev_datasets,bizitobs_l2c_5T,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_2', 'target_3', 'target_4', 'target_5', 'target_6']",,[],[],[],bizitobs_l2c_5T,0.8247104427,0.0,28.344385256,9cb515b57514a9ab,False,0.7.0,0.8247104427,0.9163295742,1.5979523685,1.8771775481,2.0.1,,,140
-AutoARIMA,autogluon/fev_datasets,boomlet_1062,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1062,0.7541477798,0.0,78.962797638,44381d6f431f8c90,False,0.7.0,0.7541477798,0.9510023935,0.7457671713,0.5907259586,2.0.1,,,420
-AutoARIMA,autogluon/fev_datasets,boomlet_1209,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1209,1.1085996591,0.0,182.019183642,1466ee197c499055,False,0.7.0,1.1085996591,1.0378800323,0.4278108916,0.4535022053,2.0.1,,,1060
-AutoARIMA,autogluon/fev_datasets,boomlet_1225,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1225,0.2348969847,0.0,115.979745526,5d9eb3c2d9389376,False,0.7.0,0.2348969847,0.2751876371,0.1446868773,0.12260998,2.0.1,,,980
-AutoARIMA,autogluon/fev_datasets,boomlet_1230,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1230,1.8500253092,0.0,82.644585949,034f57f6576437cc,False,0.7.0,1.8500253092,1.5864985932,0.3998710697,0.4477425115,2.0.1,,,460
-AutoARIMA,autogluon/fev_datasets,boomlet_1282,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1282,0.5565242655,0.0,111.306468927,de65600e18e27fe8,False,0.7.0,0.5565242655,0.5924898465,0.4049750815,0.3750317971,2.0.1,,,700
-AutoARIMA,autogluon/fev_datasets,boomlet_1487,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1487,0.6560424612,0.0,120.467266416,17003e37fda85cdd,False,0.7.0,0.6560424612,0.6561515279,0.259043758,0.2570055801,2.0.1,,,1080
-AutoARIMA,autogluon/fev_datasets,boomlet_1855,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1855,1.0829482214,0.0,7481.14661185,ca3cf5b18a145f72,False,0.7.0,1.0829482214,0.7334421170000001,0.2241676514,0.2316298817,2.0.1,,,1040
-AutoARIMA,autogluon/fev_datasets,boomlet_1975,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_8', 'target_9']",,[],[],[],boomlet_1975,0.5505765392,0.0,7285.458450497,3d8d0f68506b1995,False,0.7.0,0.5505765392,0.6455594326,0.3661623288,0.3101025558,2.0.1,,,1500
-AutoARIMA,autogluon/fev_datasets,boomlet_2187,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_75', 'target_76', 'target_77', 'target_78', 'target_79', 'target_8', 'target_80', 'target_81', 'target_82', 'target_83', 'target_84', 'target_85', 'target_86', 'target_87', 'target_88', 'target_89', 'target_9', 'target_90', 'target_91', 'target_92', 'target_93', 'target_94', 'target_95', 'target_96', 'target_97', 'target_98', 'target_99']",,[],[],[],boomlet_2187,1.3028566624,0.0,16731.911940308,c3fe1a491401b248,False,0.7.0,1.3028566624,1.2812206603,0.4429809169,0.4412020452,2.0.1,,,2000
-AutoARIMA,autogluon/fev_datasets,boomlet_285,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_8', 'target_9']",,[],[],[],boomlet_285,1.1887776805,0.0,153.256182222,3dfa571029207f1f,False,0.7.0,1.1887776805,0.7883015466000001,0.34433789,0.2917086037,2.0.1,,,1500
-AutoARIMA,autogluon/fev_datasets,boomlet_619,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_619,0.5544648012,0.0,118.751464044,2d514811bddfc52d,False,0.7.0,0.5544648012,0.7170247042,0.5880218188,0.4527380943,2.0.1,,,1040
-AutoARIMA,autogluon/fev_datasets,boomlet_772,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_772,0.7834129974,0.0,217.342811366,66ce5fbc5ad575a2,False,0.7.0,0.7834129974,0.5361147759,0.2378165958,0.3102148884,2.0.1,,,1340
-AutoARIMA,autogluon/fev_datasets,boomlet_963,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_963,1.1056032467,0.0,102.22344786,bd1c23c0fd1a748e,False,0.7.0,1.1056032467,1.1099255146,0.5164873201,0.5019102045,2.0.1,,,560
-AutoARIMA,autogluon/fev_datasets,ecdc_ili,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ecdc_ili,3.6414550365,0.0,13.853262378,0c0a84fa1b54ac63,False,0.7.0,3.6414550365,4.1963805493,0.5880377501,0.5348657716,2.0.1,,,240
-AutoARIMA,autogluon/fev_datasets,entsoe_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_1H,0.8725110581000001,0.0,4197.306491146,0cb6316a70bf9d47,False,0.7.0,0.8725110581000001,1.1176425426,0.0854086541,0.0666871832,2.0.1,,,120
-AutoARIMA,autogluon/fev_datasets,entsoe_30T,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_30T,0.980742171,0.0,19242.071616258,6ff7f68ac7fbd564,False,0.7.0,0.980742171,1.2299298482,0.090934383,0.0731621073,2.0.1,,,120
-AutoARIMA,autogluon/fev_datasets,epf_be,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Generation forecast', 'System load forecast']",[],[],epf_be,1.0560628345,0.0,1342.527721244,50acce5fc8987a4f,False,0.7.0,1.0560628345,1.0947820348,0.1986222906,0.1868416274,2.0.1,,,20
-AutoARIMA,autogluon/fev_datasets,epf_de,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Ampirion Load Forecast', 'PV+Wind Forecast']",[],[],epf_de,1.2777053882,0.0,1147.623217557,491dc89fd5b322b5,False,0.7.0,1.2777053882,1.6231053542,0.6818832021,0.5432797572,2.0.1,,,20
-AutoARIMA,autogluon/fev_datasets,epf_fr,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Generation forecast', 'System load forecast']",[],[],epf_fr,1.1580732451,0.0,1327.243902334,bc5a57cd5727d527,False,0.7.0,1.1580732451,0.988839379,0.1532071637,0.171487674,2.0.1,,,20
-AutoARIMA,autogluon/fev_datasets,epf_np,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Grid load forecast', 'Wind power forecast']",[],[],epf_np,1.3932103761,0.0,871.977242621,80b01220b34be222,False,0.7.0,1.3932103761,1.7096191588,0.078622775,0.0636813178,2.0.1,,,20
-AutoARIMA,autogluon/fev_datasets,epf_pjm,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['System load forecast', 'Zonal COMED load foecast']",[],[],epf_pjm,0.48187052,0.0,1124.325121808,04be360a47b231a4,False,0.7.0,0.48187052,0.5572886801,0.098476214,0.0855296797,2.0.1,,,20
-AutoARIMA,autogluon/fev_datasets,ercot_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1D,1.1018625405,0.0,426.251692795,d1c9de98a43d4097,False,0.7.0,1.1018625405,1.3979692163,0.1103588376,0.0865494548,2.0.1,,,160
-AutoARIMA,autogluon/fev_datasets,ercot_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1H,1.1754444345,0.0,3916.512700563,95b91121d95f89c8,False,0.7.0,1.1754444345,1.4621684481,0.0749658542,0.0597358018,2.0.1,,,160
-AutoARIMA,autogluon/fev_datasets,ercot_1M,12,15,-180,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1M,0.7879913849,0.0,42.660384593,167e0223cbbc1b69,False,0.7.0,0.7879913849,0.9971198091,0.0493777886,0.0388325707,2.0.1,,,120
-AutoARIMA,autogluon/fev_datasets,ercot_1W,13,20,-260,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1W,2.089948711,0.0,29.921444681,091a619858bdabc9,False,0.7.0,2.089948711,2.6323348127,0.1429765524,0.1129826874,2.0.1,,,160
-AutoARIMA,autogluon/fev_datasets,favorita_stores_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'onpromotion']",['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1D,1.2216416053,0.0,17195.284497683,3c676e1d0f771bf4,False,0.7.0,1.2216416053,1.4187797295,0.1934442326,0.1647292421,2.0.1,,,15790
-AutoARIMA,autogluon/fev_datasets,favorita_stores_1M,12,2,-24,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,['onpromotion'],['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1M,2.0381596319,0.0,115.500663902,7c94de5b6e2859ff,False,0.7.0,2.0381596319,2.207495882,0.1385348588,0.1314480379,2.0.1,,,3158
-AutoARIMA,autogluon/fev_datasets,favorita_stores_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,['onpromotion'],['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1W,2.2969051079,0.0,536.836586719,aae27c565b10fe7f,False,0.7.0,2.2969051079,2.580066785,0.1500959687,0.1331314369,2.0.1,,,15790
-AutoARIMA,autogluon/fev_datasets,favorita_transactions_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,['holiday'],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1D,1.562168577,0.0,736.01180423,af6c7be9c6bf8910,False,0.7.0,1.562168577,1.7409399844,0.1204928338,0.1055051904,2.0.1,,,510
-AutoARIMA,autogluon/fev_datasets,favorita_transactions_1M,12,2,-24,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,[],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1M,1.2777968435,0.0,3.372701049,a9ebe0fd05a285b6,False,0.7.0,1.2777968435,1.4642003185,0.0833974167,0.0776326578,2.0.1,,,102
-AutoARIMA,autogluon/fev_datasets,favorita_transactions_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,[],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1W,1.6323137052,0.0,21.807732356,dcf0217a3f159ec8,False,0.7.0,1.6323137052,1.7908498043,0.0730921635,0.0648478224,2.0.1,,,510
-AutoARIMA,autogluon/fev_datasets,fred_md_2025,12,20,-240,12,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['CPIAUCSL', 'FEDFUNDS', 'PAYEMS']",,[],"['M2REAL', 'NONBORRES', 'PPICMM', 'TOTRESNS']",[],fred_md_2025/cee,5.8791415649,0.0,117.973159651,764e9294023ee081,False,0.7.0,5.8791415649,6.3656916747,0.101570566,0.133660425,2.0.1,,,60
-AutoARIMA,autogluon/fev_datasets,fred_md_2025,12,20,-240,12,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['AAA', 'AWHMAN', 'BAA', 'BUSINVx', 'CPIAUCSL', 'CPIMEDSL', 'CUMFNS', 'DMANEMP', 'EXUSUKx', 'FEDFUNDS', 'GS1', 'GS10', 'GS5', 'HOUST', 'INDPRO', 'INVEST', 'IPBUSEQ', 'IPCONGD', 'IPDCONGD', 'IPDMAT', 'IPFINAL', 'IPMANSICS', 'IPMAT', 'IPNCONGD', 'IPNMAT', 'M2REAL', 'MANEMP', 'NDMANEMP', 'NONBORRES', 'PAYEMS', 'PERMIT', 'PPICMM', 'S&P 500', 'SRVPRD', 'TB3MS', 'TB6MS', 'TOTRESNS', 'UEMP15T26', 'UEMP27OV', 'UEMP5TO14', 'UEMPLT5', 'UEMPMEAN', 'UMCSENTx', 'UNRATE', 'USCONS', 'USFIRE', 'USGOOD', 'USGOVT', 'USTPU', 'USTRADE', 'VIXCLSx']",,[],[],[],fred_md_2025/macro,6.5438633054,0.0,878.711920651,764e9294023ee081,False,0.7.0,6.5438633054,7.2903875617,0.0913136788,0.0859787221,2.0.1,,,1020
-AutoARIMA,autogluon/fev_datasets,fred_qd_2025,8,20,-160,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['CPIAUCSL', 'FEDFUNDS', 'PAYEMS']",,[],"['M2REAL', 'NONBORRES', 'PPICMM', 'TOTRESNS']",[],fred_qd_2025/cee,1.9543398085,0.0,21.291007384,d257091c861020bf,False,0.7.0,1.9543398085,2.3066503643000003,0.1628828034,0.1474873424,2.0.1,,,60
-AutoARIMA,autogluon/fev_datasets,fred_qd_2025,8,20,-160,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['AAA', 'AWHMAN', 'BAA', 'BUSINVx', 'CPIAUCSL', 'CPIMEDSL', 'CUMFNS', 'DMANEMP', 'EXUSUKx', 'FEDFUNDS', 'GS1', 'GS10', 'GS5', 'HOUST', 'INDPRO', 'INVEST', 'IPBUSEQ', 'IPCONGD', 'IPDCONGD', 'IPDMAT', 'IPFINAL', 'IPMANSICS', 'IPMAT', 'IPNCONGD', 'IPNMAT', 'M2REAL', 'MANEMP', 'NDMANEMP', 'NONBORRES', 'PAYEMS', 'PERMIT', 'PPICMM', 'S&P 500', 'SRVPRD', 'TB3MS', 'TB6MS', 'TOTRESNS', 'UEMP15T26', 'UEMP27OV', 'UEMP5TO14', 'UEMPLT5', 'UEMPMEAN', 'UMCSENTx', 'UNRATE', 'USCONS', 'USFIRE', 'USGOOD', 'USGOVT', 'USTPU', 'USTRADE', 'VIXCLSx']",,[],[],[],fred_qd_2025/macro,3.8675028627,0.0,90.574618967,d257091c861020bf,False,0.7.0,3.8675028627,4.4837099549,0.1150225402,0.0955504799,2.0.1,,,1020
-AutoARIMA,autogluon/fev_datasets,gvar,8,10,-80,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['Dp', 'ep', 'eq', 'lr', 'r', 'y']",,[],"['pmat', 'pmetal', 'poil']",[],gvar,0.6171744519,0.0,82.133739048,e60f8e1e38f9acca,False,0.7.0,0.6171744519,0.7032889301,0.0184923184,0.0169170494,2.0.1,,,1980
-AutoARIMA,autogluon/fev_datasets,hermes,52,1,-52,52,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['external'],[],"['category', 'country']",hermes,1.2129200308,0.0,312.872378212,f87501b2bd02803b,False,0.7.0,1.2129200308,1.5317415273,0.0063903024,0.0050407278,2.0.1,,,10000
-AutoARIMA,autogluon/fev_datasets,hierarchical_sales_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hierarchical_sales_1D,0.6445167344,0.0,1228.374473327,0ecbb4076fd5ba78,False,0.7.0,0.6445167344,0.7735716427,0.80726372,0.6915383974,2.0.1,,,1180
-AutoARIMA,autogluon/fev_datasets,hierarchical_sales_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hierarchical_sales_1W,0.7472607405,0.0,35.817762028,691bd281f0ad7adc,False,0.7.0,0.7472607405,0.9125112599,0.5603942513,0.4672185482,2.0.1,,,1180
-AutoARIMA,autogluon/fev_datasets,hospital,12,4,-48,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital,0.7310321414000001,0.0,148.071234637,9c6e8721c2eca10b,False,0.7.0,0.7310321414000001,0.9191221959,0.1056054849,0.0845424144,2.0.1,,,3068
-AutoARIMA,autogluon/fev_datasets,hospital_admissions_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital_admissions_1D,0.5556445831,0.0,48.648875075,51b7fbd3926341eb,False,0.7.0,0.5556445831,0.7209334531,0.5348244904,0.4121681663,2.0.1,,,160
-AutoARIMA,autogluon/fev_datasets,hospital_admissions_1W,13,16,-208,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital_admissions_1W,0.5793359333,0.0,7.840773902,bff3ae304070efd9,False,0.7.0,0.5793359333,0.7540567649000001,0.212284724,0.1631143081,2.0.1,,,128
-AutoARIMA,autogluon/fev_datasets,jena_weather_1D,28,11,-308,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_1D,1.3052392106,0.0,37.711262169,81a9d748210aa612,False,0.7.0,1.3052392106,1.5277037002,0.3394734252,0.3017046194,2.0.1,,,231
-AutoARIMA,autogluon/fev_datasets,jena_weather_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_1H,0.4369650923,0.0,4211.501263962,8eb1d310607e8fee,False,0.7.0,0.4369650923,0.5091821891,0.9374862075,0.8256929905,2.0.1,,,420
-AutoARIMA,autogluon/fev_datasets,kdd_cup_2022_1D,14,10,-140,14,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_1D,0.720047667,0.0,124.40719599,67f17ff257220281,False,0.7.0,0.720047667,0.9552154519,0.7844091415000001,0.5843812529,2.0.1,,,1340
-AutoARIMA,autogluon/fev_datasets,kdd_cup_2022_30T,96,10,-960,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_30T,0.6406027358,0.0,16920.933841976,257e85b44bdb8154,False,0.7.0,0.6406027358,0.7706658108000001,2.579102248,2.1850967479,2.0.1,,,1340
-AutoARIMA,autogluon/fev_datasets,m5_1D,28,1,-28,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1D,0.8516619783,0.0,22112.949187839,0d8bfe3780a2c494,False,0.7.0,0.8516619783,1.0630838856,0.7716780305000001,0.611489809,2.0.1,,,30490
-AutoARIMA,autogluon/fev_datasets,m5_1M,12,1,-12,12,6,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1M,1.0455375252,0.0,966.452455677,78d200c01b7350ff,False,0.7.0,1.0455375252,1.2131357033,0.4600670636,0.380094291,2.0.1,,,29364
-AutoARIMA,autogluon/fev_datasets,m5_1W,13,1,-13,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1W,0.9366737298,0.0,929.992797437,60d0a43fd09b5dcc,False,0.7.0,0.9366737298,1.1567620351,0.4387526214,0.3580006782,2.0.1,,,30490
-AutoARIMA,autogluon/fev_datasets,proenfo_gfc12,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc12,1.1408344793,0.0,1178.840724847,e39dc59e1a6af0e2,False,0.7.0,1.1408344793,1.3848285732,0.1193260785,0.0987456528,2.0.1,,,110
-AutoARIMA,autogluon/fev_datasets,proenfo_gfc14,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc14,0.947126445,0.0,1781.279978721,90428df2dbce525e,False,0.7.0,0.947126445,1.1681324943,0.0571345754,0.0464290142,2.0.1,,,20
-AutoARIMA,autogluon/fev_datasets,proenfo_gfc17,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc17,1.1149783841,0.0,3695.573905165,f8bf8da06e500162,False,0.7.0,1.1149783841,1.3821477017,0.0943354612,0.0761960672,2.0.1,,,160
-AutoARIMA,autogluon/fev_datasets,redset_1H,24,10,-240,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_1H,1.8772582072,0.0,10543.767496636,a7542f5bcc8cf4ab,False,0.7.0,1.8772582072,1.8532418262,0.3273749292,0.347358315,2.0.1,,,1380
-AutoARIMA,autogluon/fev_datasets,redset_5T,288,10,-2880,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_5T,1.9052087686,0.0,119.853956664,4776bd88b54d8a04,False,0.7.0,1.9052087686,2.0719155469,0.6915958703,0.6814341656,2.0.1,,,1180
-AutoARIMA,autogluon/fev_datasets,restaurant,28,8,-224,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],"['air_area_name', 'air_genre_name', 'latitude', 'longitude']",restaurant,0.7558027757,0.0,1134.490098835,3863ed9dabc164dc,False,0.7.0,0.7558027757,0.9400606666,0.3996725455,0.3174475777,2.0.1,,,6502
-AutoARIMA,autogluon/fev_datasets,rohlik_orders_1D,61,5,2023-05-01T00:00:00,61,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,orders,,"['holiday', 'school_holidays', 'shops_closed', 'winter_school_holidays']","['blackout', 'frankfurt_shutdown', 'mini_shutdown', 'mov_change', 'precipitation', 'shutdown', 'snow', 'user_activity_1', 'user_activity_2']",[],rohlik_orders_1D,1.2661753782,0.0,66.487592684,8334ba19a7f5e7a1,False,0.7.0,1.2661753782,1.5623634243,0.0740682058,0.0603755941,2.0.1,,,35
-AutoARIMA,autogluon/fev_datasets,rohlik_orders_1W,8,5,2023-05-01T00:00:00,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,orders,,"['holiday', 'school_holidays', 'shops_closed', 'winter_school_holidays']","['blackout', 'frankfurt_shutdown', 'mini_shutdown', 'mov_change', 'precipitation', 'shutdown', 'snow', 'user_activity_1', 'user_activity_2']",[],rohlik_orders_1W,1.4146777164,0.0,2.656755436,63260348a6b49874,False,0.7.0,1.4146777164,1.7324467216,0.0584325351,0.0471291762,2.0.1,,,35
-AutoARIMA,autogluon/fev_datasets,rohlik_sales_1D,14,1,2023-12-15T00:00:00,14,14,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'school_holidays', 'sell_price_main', 'shops_closed', 'total_orders', 'type_0_discount', 'type_1_discount', 'type_2_discount', 'type_3_discount', 'type_4_discount', 'type_5_discount', 'type_6_discount', 'winter_school_holidays']",['availability'],"['L1_category_name_en', 'L2_category_name_en', 'L3_category_name_en', 'L4_category_name_en', 'name', 'product_unique_id', 'warehouse']",rohlik_sales_1D,1.2758180745,0.0,3046.015454526,22fd3891c3b685ce,False,0.7.0,1.2758180745,1.5092369137,0.4094604254,0.3459201995,2.0.1,,,4116
-AutoARIMA,autogluon/fev_datasets,rohlik_sales_1W,8,1,2023-12-15T00:00:00,8,8,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'school_holidays', 'sell_price_main', 'shops_closed', 'total_orders', 'type_0_discount', 'type_1_discount', 'type_2_discount', 'type_3_discount', 'type_4_discount', 'type_5_discount', 'type_6_discount', 'winter_school_holidays']",['availability'],"['L1_category_name_en', 'L2_category_name_en', 'L3_category_name_en', 'L4_category_name_en', 'name', 'product_unique_id', 'warehouse']",rohlik_sales_1W,1.8024970943,0.0,103.758532165,516398d9cb76a18f,False,0.7.0,1.8024970943,2.03785374,0.3070147634,0.2670259076,2.0.1,,,3942
-AutoARIMA,autogluon/fev_datasets,rossmann_1D,48,10,-480,48,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Sales,,"['DayOfWeek', 'Open', 'Promo', 'SchoolHoliday', 'StateHoliday']",['Customers'],"['Assortment', 'CompetitionDistance', 'CompetitionOpenSinceMonth', 'CompetitionOpenSinceYear', 'Promo2', 'Promo2SinceWeek', 'Promo2SinceYear', 'PromoInterval', 'Store', 'StoreType']",rossmann_1D,0.5619283369,0.0,10627.105200672,7c1cf165ce5e0f8b,False,0.7.0,0.5619283369,0.6544020781000001,0.2223706722,0.1908416644,2.0.1,,,11150
-AutoARIMA,autogluon/fev_datasets,rossmann_1W,13,8,-104,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Sales,,"['Open', 'Promo', 'SchoolHoliday', 'StateHoliday']",['Customers'],"['Assortment', 'CompetitionDistance', 'CompetitionOpenSinceMonth', 'CompetitionOpenSinceYear', 'Promo2', 'Promo2SinceWeek', 'Promo2SinceYear', 'PromoInterval', 'Store', 'StoreType']",rossmann_1W,0.5212168044000001,0.0,289.813093582,cf54ffb87953c85f,False,0.7.0,0.5212168044000001,0.6688824183000001,0.1835633125,0.1410069966,2.0.1,,,8920
-AutoARIMA,autogluon/fev_datasets,solar_1D,28,10,-280,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],solar_1D,0.6575818024,0.0,114.870392584,4a9fb28f2a62f798,False,0.7.0,0.6575818024,0.8072395918,0.2527682468,0.2053532934,2.0.1,,,1370
-AutoARIMA,autogluon/fev_datasets,solar_1W,13,1,-13,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],solar_1W,1.2798883181,0.0,2.782619612,856de5fa702db186,False,0.7.0,1.2798883181,1.7335090246,0.2914025486,0.2154878912,2.0.1,,,137
-AutoARIMA,autogluon/fev_datasets,solar_with_weather_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['day_length', 'humidity', 'pressure', 'rain_1h', 'snow_1h', 'temp', 'wind_speed']","['clouds_all', 'global_horizontal_irradiance']",[],solar_with_weather_1H,1.1314165351,0.0,1403.454239512,a5ce88d03879a959,False,0.7.0,1.1314165351,1.1133137476,1.2902403221,1.2702665577,2.0.1,,,20
-AutoARIMA,autogluon/fev_datasets,uci_air_quality_1D,28,11,-308,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['C6H6(GT)', 'CO(GT)', 'NO2(GT)', 'NOx(GT)']",,"['AH', 'RH', 'T']",[],[],uci_air_quality_1D,1.2403312496,0.0,32.861939457,1acb95a018b86a63,False,0.7.0,1.2403312496,1.5585347706,0.3229408102,0.2530270906,2.0.1,,,44
-AutoARIMA,autogluon/fev_datasets,uci_air_quality_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['C6H6(GT)', 'CO(GT)', 'NO2(GT)', 'NOx(GT)']",,"['AH', 'RH', 'T']",[],[],uci_air_quality_1H,1.1923767477,0.0,2783.117943474,187086c23269b305,False,0.7.0,1.1923767477,1.3697649929,0.4518040374,0.3923535075,2.0.1,,,80
-AutoARIMA,autogluon/fev_datasets,uk_covid_nation_1D,28,20,-560,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['cumulative_admissions', 'cumulative_cases', 'cumulative_deaths']",,[],"['cumulative_vaccinated_1', 'cumulative_vaccinated_2', 'cumulative_vaccinated_3', 'hospital_cases', 'icu_ventilator_occupancy']",[],uk_covid_nation_1D/cumulative,8.6773500345,0.0,260.38815524,cb76ab66e8a2acda,False,0.7.0,8.6773500345,9.559789598,0.0188173242,0.0173381483,2.0.1,,,240
-AutoARIMA,autogluon/fev_datasets,uk_covid_nation_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['new_admissions', 'new_cases', 'new_deaths']",,[],"['hospital_cases', 'icu_ventilator_occupancy', 'new_vaccinated_1', 'new_vaccinated_2', 'new_vaccinated_3']",[],uk_covid_nation_1D/new,3.8389323119,0.0,433.022499744,cb76ab66e8a2acda,False,0.7.0,3.8389323119,4.1917555777,0.4697780043,0.6717556157,2.0.1,,,240
-AutoARIMA,autogluon/fev_datasets,uk_covid_nation_1W,8,4,-32,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['cumulative_admissions', 'cumulative_cases', 'cumulative_deaths']",,[],"['cumulative_vaccinated_1', 'cumulative_vaccinated_2', 'cumulative_vaccinated_3', 'hospital_cases', 'icu_ventilator_occupancy']",[],uk_covid_nation_1W/cumulative,9.8478063402,0.0,3.415178002,0398b1ae44b0e1ae,False,0.7.0,9.8478063402,10.5120021053,0.0670678648,0.0621980203,2.0.1,,,48
-AutoARIMA,autogluon/fev_datasets,uk_covid_nation_1W,8,4,-32,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['new_admissions', 'new_cases', 'new_deaths']",,[],"['hospital_cases', 'icu_ventilator_occupancy', 'new_vaccinated_1', 'new_vaccinated_2', 'new_vaccinated_3']",[],uk_covid_nation_1W/new,12.6543213595,0.0,4.17761105,0398b1ae44b0e1ae,False,0.7.0,12.6543213595,13.5408520302,0.7762918919,0.7570660296,2.0.1,,,48
-AutoARIMA,autogluon/fev_datasets,uk_covid_utla_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,new_cases,,[],[],[],uk_covid_utla_1D/new,7.407131023,0.0,2769.024997587,a8353cbb69d9d419,False,0.7.0,7.407131023,8.1828726428,0.6831767932,0.6134348659000001,2.0.1,,,2140
-AutoARIMA,autogluon/fev_datasets,uk_covid_utla_1W,13,5,-65,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,cumulative_cases,,[],[],[],uk_covid_utla_1W/cumulative,13.9770561849,0.0,21.679232538,e882978eeee0c5e3,False,0.7.0,13.9770561849,15.7434113202,0.1529182278,0.1351972799,2.0.1,,,1070
-AutoARIMA,autogluon/fev_datasets,us_consumption_1M,12,10,-120,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1M,1.598443305,0.0,403.13799447,6f0b0899ba9d50bb,False,0.7.0,1.598443305,1.8263458048,0.0266722746,0.0239150894,2.0.1,,,310
-AutoARIMA,autogluon/fev_datasets,us_consumption_1Q,8,10,-80,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1Q,2.0470332513,0.0,31.932005483,34ddaf654b836be3,False,0.7.0,2.0470332513,2.3510275878,0.0334090083,0.030008464,2.0.1,,,310
-AutoARIMA,autogluon/fev_datasets,us_consumption_1Y,5,10,-50,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1Y,3.6882837957,0.0,9.603950358,69d8accb103bbb77,False,0.7.0,3.6882837957,4.2587442225,0.0521022394,0.0428692104,2.0.1,,,310
-AutoARIMA,autogluon/fev_datasets,walmart,39,1,-39,39,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['CPI', 'Fuel_Price', 'IsHoliday', 'MarkDown1', 'MarkDown2', 'MarkDown3', 'MarkDown4', 'MarkDown5', 'Temperature', 'Unemployment']",[],"['Dept', 'Size', 'Store', 'Type']",walmart,1.0205417736,0.0,93.543700065,f84328c62c91aaf5,False,0.7.0,1.0205417736,1.2473824838,0.1595972031,0.1319843981,2.0.1,,,2936
-AutoARIMA,autogluon/fev_datasets,world_co2_emissions,5,9,-45,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_co2_emissions,2.8223304034,0.0,29.734956324,66fdc0a9c269539c,False,0.7.0,2.8223304034,3.3062345239,0.0819489691,0.0705282623,2.0.1,,,1719
-AutoARIMA,autogluon/fev_datasets,world_life_expectancy,5,10,-50,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_life_expectancy,1.2829496791,0.0,36.606345378,63f326fa372ad29a,False,0.7.0,1.2829496791,1.4974247187,0.0130623952,0.0112841979,2.0.1,,,2370
-AutoARIMA,autogluon/fev_datasets,world_tourism,5,2,-10,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_tourism,2.6184635789,0.0,5.398917424,f03e22f4082953f7,False,0.7.0,2.6184635789,3.0968725539,0.073036734,0.0578924108,2.0.1,,,356
-AutoETS,autogluon/fev_datasets,ETT_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_15T,1.2626027246,0.0,52.495604418,9f6541408f56392f,False,0.7.0,1.2626027246,1.4293457361000002,0.2089927338,0.1889663006,2.0.1,,,280
-AutoETS,autogluon/fev_datasets,ETT_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1D,1.3559628802,0.0,13.158388112,ff06ef09d043bd73,False,0.7.0,1.3559628802,1.437554375,0.3392487691,0.3649904644,2.0.1,,,280
-AutoETS,autogluon/fev_datasets,ETT_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1H,1.7645010362,0.0,28.081650125,1051fcbf7ab489b5,False,0.7.0,1.7645010362,1.6020946418,0.3240313299,0.3554423083,2.0.1,,,280
-AutoETS,autogluon/fev_datasets,ETT_1W,13,5,-65,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1W,2.39380306,0.0,1.334376986,f7babcd132f54bf3,False,0.7.0,2.39380306,2.6393182441,0.455156821,0.4577441806,2.0.1,,,70
-AutoETS,autogluon/fev_datasets,LOOP_SEATTLE_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_1D,0.8246251865,0.0,69.311446834,02d7b9f04d1c3187,False,0.7.0,0.8246251865,1.0016712996,0.0379914595,0.0311914855,2.0.1,,,3230
-AutoETS,autogluon/fev_datasets,LOOP_SEATTLE_1H,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_1H,2.6385256214,0.0,328.110136957,08811ee17f93df42,False,0.7.0,2.6385256214,1.6371768899,0.1460618883,0.2388070951,2.0.1,,,3230
-AutoETS,autogluon/fev_datasets,LOOP_SEATTLE_5T,288,10,-2880,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_5T,1.1550368249,0.0,31.425212523,c2739a4b195beef3,False,0.7.0,1.1550368249,0.9723147042,0.1085262727,0.1270606325,2.0.1,,,3230
-AutoETS,autogluon/fev_datasets,M_DENSE_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],M_DENSE_1D,1.0734765679,0.0,17.819089889,12417cabd3e820d7,False,0.7.0,1.0734765679,1.0868806507,0.1300925907,0.1323504645,2.0.1,,,300
-AutoETS,autogluon/fev_datasets,M_DENSE_1H,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],M_DENSE_1H,59.0195299046,0.0,42.529356238,e973593b94c21fa6,False,0.7.0,59.0195299046,1.4834949349,0.3140071735,12.8518608164,2.0.1,,,300
-AutoETS,autogluon/fev_datasets,SZ_TAXI_15T,96,10,-960,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],SZ_TAXI_15T,2.3550253131,0.0,346.628630095,3e6f0d3380ac07cc,False,0.7.0,2.3550253131,0.6812952229,0.3189420968,0.9991056751,2.0.1,,,1560
-AutoETS,autogluon/fev_datasets,SZ_TAXI_1H,168,2,-336,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],SZ_TAXI_1H,12313683383.147636,0.0,23.272527927,7c28d9c08a8a99d2,False,0.7.0,12313683383.147636,1.6334537315,0.6624499261,4510502977.541462,2.0.1,,,312
-AutoETS,autogluon/fev_datasets,australian_tourism,8,2,-16,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],australian_tourism,0.7615891772000001,0.0,1.054651359,e3e704ef830bb1f4,False,0.7.0,0.7615891772000001,0.9667110204,0.0970393047,0.0760110551,2.0.1,,,178
-AutoETS,autogluon/fev_datasets,bizitobs_l2c_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_2', 'target_3', 'target_4', 'target_5', 'target_6']",,[],[],[],bizitobs_l2c_1H,0.7179372865,0.0,10.078020204,fd3fb3349ee15a22,False,0.7.0,0.7179372865,0.8231641016,1.2847489447,1.4288888475,2.0.1,,,140
-AutoETS,autogluon/fev_datasets,bizitobs_l2c_5T,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_2', 'target_3', 'target_4', 'target_5', 'target_6']",,[],[],[],bizitobs_l2c_5T,0.7310899228000001,0.0,4.997574,9cb515b57514a9ab,False,0.7.0,0.7310899228000001,0.8137418066000001,1.3366881806,1.6113720868,2.0.1,,,140
-AutoETS,autogluon/fev_datasets,boomlet_1062,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1062,1.3088562197,0.0,12.095712459,44381d6f431f8c90,False,0.7.0,1.3088562197,1.0502749806,0.8238335352,1.0658179181,2.0.1,,,420
-AutoETS,autogluon/fev_datasets,boomlet_1225,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1225,0.3176935124,0.0,13.407523856,5d9eb3c2d9389376,False,0.7.0,0.3176935124,0.3006939878,0.1598025897,0.1651551358,2.0.1,,,980
-AutoETS,autogluon/fev_datasets,boomlet_1230,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1230,393376667139840.8,0.0,8.961195276,034f57f6576437cc,False,0.7.0,393376667139840.8,1.7204862029,0.4274646386,228079607857629.03,2.0.1,,,460
-AutoETS,autogluon/fev_datasets,boomlet_1282,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1282,0.9135627329,0.0,11.723102549,de65600e18e27fe8,False,0.7.0,0.9135627329,0.6889630667000001,0.4705070178,0.62613098,2.0.1,,,700
-AutoETS,autogluon/fev_datasets,boomlet_1487,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1487,0.7236915730000001,0.0,13.149321025,17003e37fda85cdd,False,0.7.0,0.7236915730000001,0.6618622173,0.2614417874,0.2835559204,2.0.1,,,1080
-AutoETS,autogluon/fev_datasets,boomlet_1631,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1631,0.7214099148,0.0,43.166462416,f5255f15ed8188ab,False,0.7.0,0.7214099148,0.7850787279,0.3481223856,0.3219452018,2.0.1,,,800
-AutoETS,autogluon/fev_datasets,boomlet_1676,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_75', 'target_76', 'target_77', 'target_78', 'target_79', 'target_8', 'target_80', 'target_81', 'target_82', 'target_83', 'target_84', 'target_85', 'target_86', 'target_87', 'target_88', 'target_89', 'target_9', 'target_90', 'target_91', 'target_92', 'target_93', 'target_94', 'target_95', 'target_96', 'target_97', 'target_98', 'target_99']",,[],[],[],boomlet_1676,0.7563535779,0.0,111.183273925,20768bc9d5e316c5,False,0.7.0,0.7563535779,0.7609898935,0.3539671682,0.3561141453,2.0.1,,,2000
-AutoETS,autogluon/fev_datasets,boomlet_1855,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1855,1.1848850765,0.0,73.132634925,ca3cf5b18a145f72,False,0.7.0,1.1848850765,0.7732640618000001,0.2190390133,0.2553622581,2.0.1,,,1040
-AutoETS,autogluon/fev_datasets,boomlet_1975,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_8', 'target_9']",,[],[],[],boomlet_1975,0.6113593807000001,0.0,59.605476855,3d8d0f68506b1995,False,0.7.0,0.6113593807000001,0.6992926357,0.4015633572,0.3508947927,2.0.1,,,1500
-AutoETS,autogluon/fev_datasets,boomlet_2187,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_75', 'target_76', 'target_77', 'target_78', 'target_79', 'target_8', 'target_80', 'target_81', 'target_82', 'target_83', 'target_84', 'target_85', 'target_86', 'target_87', 'target_88', 'target_89', 'target_9', 'target_90', 'target_91', 'target_92', 'target_93', 'target_94', 'target_95', 'target_96', 'target_97', 'target_98', 'target_99']",,[],[],[],boomlet_2187,1.3069851719,0.0,140.474422036,c3fe1a491401b248,False,0.7.0,1.3069851719,1.2537471952,0.4339327821,0.4456954551,2.0.1,,,2000
-AutoETS,autogluon/fev_datasets,boomlet_285,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_8', 'target_9']",,[],[],[],boomlet_285,1.2033358677,0.0,21.181784713,3dfa571029207f1f,False,0.7.0,1.2033358677,0.8132574193000001,0.3622854223,0.3012758228,2.0.1,,,1500
-AutoETS,autogluon/fev_datasets,boomlet_619,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_619,0.8944230183,0.0,16.178717735,2d514811bddfc52d,False,0.7.0,0.8944230183,1.0937660371,0.9528967892,0.7635945062,2.0.1,,,1040
-AutoETS,autogluon/fev_datasets,boomlet_772,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_772,531470228.16674185,0.0,18.937826994,66ce5fbc5ad575a2,False,0.7.0,531470228.16674185,0.6702469495000001,0.3077275646,233223016.4792193,2.0.1,,,1340
-AutoETS,autogluon/fev_datasets,boomlet_963,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_963,1.6089011238,0.0,10.186456825,bd1c23c0fd1a748e,False,0.7.0,1.6089011238,1.2932431478,0.5458354699,0.7424657093,2.0.1,,,560
-AutoETS,autogluon/fev_datasets,ecdc_ili,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ecdc_ili,4.0788004388,0.0,3.535110851,0c0a84fa1b54ac63,False,0.7.0,4.0788004388,4.5974303581,0.6168868512,0.5818744542000001,2.0.1,,,240
-AutoETS,autogluon/fev_datasets,entsoe_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_15T,3.0289340615,0.0,29.7637142,34c503cb4346b380,False,0.7.0,3.0289340615,4.0070290526,0.4080646552,0.313985467,2.0.1,,,120
-AutoETS,autogluon/fev_datasets,entsoe_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_1H,1.9050298297,0.0,19.689147394,0cb6316a70bf9d47,False,0.7.0,1.9050298297,2.0475241128,0.1569610283,0.1446894285,2.0.1,,,120
-AutoETS,autogluon/fev_datasets,entsoe_30T,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_30T,2.492761432,0.0,23.729306584,6ff7f68ac7fbd564,False,0.7.0,2.492761432,3.2738378374,0.241174338,0.1815717143,2.0.1,,,120
-AutoETS,autogluon/fev_datasets,epf_be,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Generation forecast', 'System load forecast']",[],[],epf_be,1.5343230451,0.0,25.953623468,50acce5fc8987a4f,False,0.7.0,1.5343230451,1.3929299519,0.2487520538,0.2658805243,2.0.1,,,20
-AutoETS,autogluon/fev_datasets,epf_de,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Ampirion Load Forecast', 'PV+Wind Forecast']",[],[],epf_de,1.4013079444,0.0,5.153272617,491dc89fd5b322b5,False,0.7.0,1.4013079444,1.741711499,0.6107009687,0.5287818089,2.0.1,,,20
-AutoETS,autogluon/fev_datasets,epf_fr,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Generation forecast', 'System load forecast']",[],[],epf_fr,0.8989034107,0.0,20.418935341,bc5a57cd5727d527,False,0.7.0,0.8989034107,0.9665291295,0.1492719604,0.1386675645,2.0.1,,,20
-AutoETS,autogluon/fev_datasets,epf_np,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Grid load forecast', 'Wind power forecast']",[],[],epf_np,1.9332061254,0.0,15.393191693,80b01220b34be222,False,0.7.0,1.9332061254,2.3244018164,0.1040808285,0.086372811,2.0.1,,,20
-AutoETS,autogluon/fev_datasets,epf_pjm,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['System load forecast', 'Zonal COMED load foecast']",[],[],epf_pjm,0.9138786189,0.0,15.700970652,04be360a47b231a4,False,0.7.0,0.9138786189,0.9847286701,0.1716884077,0.1606961463,2.0.1,,,20
-AutoETS,autogluon/fev_datasets,ercot_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1D,1.3820413333,0.0,18.472128865,d1c9de98a43d4097,False,0.7.0,1.3820413333,1.5952697559,0.117865942,0.1027502478,2.0.1,,,160
-AutoETS,autogluon/fev_datasets,ercot_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1H,2.6755880612,0.0,20.511184956,95b91121d95f89c8,False,0.7.0,2.6755880612,3.196839145,0.1808560818,0.1494485063,2.0.1,,,160
-AutoETS,autogluon/fev_datasets,ercot_1M,12,15,-180,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1M,0.7564464177,0.0,4.983157618,167e0223cbbc1b69,False,0.7.0,0.7564464177,0.9527701547,0.0470737303,0.0371511279,2.0.1,,,120
-AutoETS,autogluon/fev_datasets,ercot_1W,13,20,-260,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1W,2.0679213662,0.0,5.549338302,091a619858bdabc9,False,0.7.0,2.0679213662,2.6788985082,0.1469057526,0.1134717335,2.0.1,,,160
-AutoETS,autogluon/fev_datasets,favorita_stores_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'onpromotion']",['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1D,1.2378827412,0.0,424.040701153,3c676e1d0f771bf4,False,0.7.0,1.2378827412,1.3798606395,0.1871851772,0.1672181851,2.0.1,,,15790
-AutoETS,autogluon/fev_datasets,favorita_stores_1M,12,2,-24,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,['onpromotion'],['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1M,1.9424462204,0.0,10.807672979,7c94de5b6e2859ff,False,0.7.0,1.9424462204,2.1221172271,0.1568281725,0.1328922997,2.0.1,,,3158
-AutoETS,autogluon/fev_datasets,favorita_stores_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,['onpromotion'],['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1W,2.3568206927,0.0,17.004582018,aae27c565b10fe7f,False,0.7.0,2.3568206927,2.5164520445000003,0.148442591,0.1429768358,2.0.1,,,15790
-AutoETS,autogluon/fev_datasets,favorita_transactions_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,['holiday'],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1D,1.1813088433,0.0,17.986316198,af6c7be9c6bf8910,False,0.7.0,1.1813088433,1.2765051213,0.1010010868,0.0944759338,2.0.1,,,510
-AutoETS,autogluon/fev_datasets,favorita_transactions_1M,12,2,-24,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,[],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1M,1.1787496733,0.0,1.034619884,a9ebe0fd05a285b6,False,0.7.0,1.1787496733,1.3424992981,0.075680572,0.0709936943,2.0.1,,,102
-AutoETS,autogluon/fev_datasets,favorita_transactions_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,[],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1W,1.6473855473,0.0,3.965018593,dcf0217a3f159ec8,False,0.7.0,1.6473855473,1.6826500128,0.0708877588,0.0694461916,2.0.1,,,510
-AutoETS,autogluon/fev_datasets,fred_md_2025,12,20,-240,12,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['CPIAUCSL', 'FEDFUNDS', 'PAYEMS']",,[],"['M2REAL', 'NONBORRES', 'PPICMM', 'TOTRESNS']",[],fred_md_2025/cee,3.642884743,0.0,23.232510057,764e9294023ee081,False,0.7.0,3.642884743,4.1316582891,0.0874256578,0.0757646768,2.0.1,,,60
-AutoETS,autogluon/fev_datasets,fred_md_2025,12,20,-240,12,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['AAA', 'AWHMAN', 'BAA', 'BUSINVx', 'CPIAUCSL', 'CPIMEDSL', 'CUMFNS', 'DMANEMP', 'EXUSUKx', 'FEDFUNDS', 'GS1', 'GS10', 'GS5', 'HOUST', 'INDPRO', 'INVEST', 'IPBUSEQ', 'IPCONGD', 'IPDCONGD', 'IPDMAT', 'IPFINAL', 'IPMANSICS', 'IPMAT', 'IPNCONGD', 'IPNMAT', 'M2REAL', 'MANEMP', 'NDMANEMP', 'NONBORRES', 'PAYEMS', 'PERMIT', 'PPICMM', 'S&P 500', 'SRVPRD', 'TB3MS', 'TB6MS', 'TOTRESNS', 'UEMP15T26', 'UEMP27OV', 'UEMP5TO14', 'UEMPLT5', 'UEMPMEAN', 'UMCSENTx', 'UNRATE', 'USCONS', 'USFIRE', 'USGOOD', 'USGOVT', 'USTPU', 'USTRADE', 'VIXCLSx']",,[],[],[],fred_md_2025/macro,5.7936387412,0.0,80.9701586,764e9294023ee081,False,0.7.0,5.7936387412,6.5541834396,0.0855845023,0.0754502178,2.0.1,,,1020
-AutoETS,autogluon/fev_datasets,fred_qd_2025,8,20,-160,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['CPIAUCSL', 'FEDFUNDS', 'PAYEMS']",,[],"['M2REAL', 'NONBORRES', 'PPICMM', 'TOTRESNS']",[],fred_qd_2025/cee,2.1232724277,0.0,5.49086676,d257091c861020bf,False,0.7.0,2.1232724277,2.4969928698,0.163525425,0.1365938852,2.0.1,,,60
-AutoETS,autogluon/fev_datasets,fred_qd_2025,8,20,-160,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['AAA', 'AWHMAN', 'BAA', 'BUSINVx', 'CPIAUCSL', 'CPIMEDSL', 'CUMFNS', 'DMANEMP', 'EXUSUKx', 'FEDFUNDS', 'GS1', 'GS10', 'GS5', 'HOUST', 'INDPRO', 'INVEST', 'IPBUSEQ', 'IPCONGD', 'IPDCONGD', 'IPDMAT', 'IPFINAL', 'IPMANSICS', 'IPMAT', 'IPNCONGD', 'IPNMAT', 'M2REAL', 'MANEMP', 'NDMANEMP', 'NONBORRES', 'PAYEMS', 'PERMIT', 'PPICMM', 'S&P 500', 'SRVPRD', 'TB3MS', 'TB6MS', 'TOTRESNS', 'UEMP15T26', 'UEMP27OV', 'UEMP5TO14', 'UEMPLT5', 'UEMPMEAN', 'UMCSENTx', 'UNRATE', 'USCONS', 'USFIRE', 'USGOOD', 'USGOVT', 'USTPU', 'USTRADE', 'VIXCLSx']",,[],[],[],fred_qd_2025/macro,3.9044348431,0.0,21.888104336,d257091c861020bf,False,0.7.0,3.9044348431,4.4466602526,0.1130458034,0.0949233782,2.0.1,,,1020
-AutoETS,autogluon/fev_datasets,gvar,8,10,-80,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['Dp', 'ep', 'eq', 'lr', 'r', 'y']",,[],"['pmat', 'pmetal', 'poil']",[],gvar,0.5932241947,0.0,17.290868649,e60f8e1e38f9acca,False,0.7.0,0.5932241947,0.7021303869000001,0.0183902988,0.0159433726,2.0.1,,,1980
-AutoETS,autogluon/fev_datasets,hermes,52,1,-52,52,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['external'],[],"['category', 'country']",hermes,1.6730456492,0.0,15.18554535,f87501b2bd02803b,False,0.7.0,1.6730456492,1.9852238872,0.0088396827,0.0073879456,2.0.1,,,10000
-AutoETS,autogluon/fev_datasets,hierarchical_sales_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hierarchical_sales_1D,0.7933138017,0.0,36.935339954,0ecbb4076fd5ba78,False,0.7.0,0.7933138017,0.8639978187,0.9335796714,0.9358165942,2.0.1,,,1180
-AutoETS,autogluon/fev_datasets,hierarchical_sales_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hierarchical_sales_1W,10.476792269,0.0,5.64879911,691bd281f0ad7adc,False,0.7.0,10.476792269,1.0341883947,0.6528081954,7.8275973261,2.0.1,,,1180
-AutoETS,autogluon/fev_datasets,hospital,12,4,-48,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital,0.7259497104,0.0,20.546021318,9c6e8721c2eca10b,False,0.7.0,0.7259497104,0.9080008209,0.0927931517,0.0759570393,2.0.1,,,3068
-AutoETS,autogluon/fev_datasets,hospital_admissions_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital_admissions_1D,0.5557966863,0.0,12.187805042,51b7fbd3926341eb,False,0.7.0,0.5557966863,0.7211231617,0.5349606606,0.4122712942,2.0.1,,,160
-AutoETS,autogluon/fev_datasets,hospital_admissions_1W,13,16,-208,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital_admissions_1W,0.5783166572,0.0,3.749885468,bff3ae304070efd9,False,0.7.0,0.5783166572,0.7540854723,0.2122781935,0.1628325575,2.0.1,,,128
-AutoETS,autogluon/fev_datasets,jena_weather_10T,144,20,-2880,144,1,,144,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_10T,0.7418250443000001,0.0,173.751313467,311a660faf591409,False,0.7.0,0.7418250443000001,0.6119521222000001,0.3862366249,3.1495387185,2.0.1,,,420
-AutoETS,autogluon/fev_datasets,jena_weather_1D,28,11,-308,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_1D,1.6641987728,0.0,6.906231087,81a9d748210aa612,False,0.7.0,1.6641987728,1.8504210406,0.3844678975,0.3511726073,2.0.1,,,231
-AutoETS,autogluon/fev_datasets,jena_weather_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_1H,0.552924984,0.0,50.50088326,8eb1d310607e8fee,False,0.7.0,0.552924984,0.567832109,0.3521687292,1.4084504179,2.0.1,,,420
-AutoETS,autogluon/fev_datasets,kdd_cup_2022_10T,288,10,-2880,288,1,,144,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_10T,0.7469867514,0.0,103.170802972,e200b7c6bc525a8d,False,0.7.0,0.7469867514,0.7837343985,2.0494638503,2.5986419348,2.0.1,,,1340
-AutoETS,autogluon/fev_datasets,kdd_cup_2022_1D,14,10,-140,14,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_1D,0.7509996402,0.0,18.849272312,67f17ff257220281,False,0.7.0,0.7509996402,0.9888169951,0.8128879607,0.6089510673,2.0.1,,,1340
-AutoETS,autogluon/fev_datasets,kdd_cup_2022_30T,96,10,-960,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_30T,0.7719233326,0.0,58.832429385,257e85b44bdb8154,False,0.7.0,0.7719233326,0.8428842456000001,2.3230794907,2.6468743604,2.0.1,,,1340
-AutoETS,autogluon/fev_datasets,m5_1D,28,1,-28,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1D,0.8527658259,0.0,775.952089086,0d8bfe3780a2c494,False,0.7.0,0.8527658259,1.0632996272,0.7714367509000001,0.6156373922,2.0.1,,,30490
-AutoETS,autogluon/fev_datasets,m5_1M,12,1,-12,12,6,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1M,1.1082320899,0.0,73.195308742,78d200c01b7350ff,False,0.7.0,1.1082320899,1.2139006267,0.4605289102,0.4320692413,2.0.1,,,29364
-AutoETS,autogluon/fev_datasets,m5_1W,13,1,-13,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1W,0.9530783877,0.0,27.758484498,60d0a43fd09b5dcc,False,0.7.0,0.9530783877,1.1672033988,0.4468327463,0.3728147004,2.0.1,,,30490
-AutoETS,autogluon/fev_datasets,proenfo_gfc12,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc12,2.4308618583,0.0,14.727382947,e39dc59e1a6af0e2,False,0.7.0,2.4308618583,2.8114372878,0.2331060618,0.2072982242,2.0.1,,,110
-AutoETS,autogluon/fev_datasets,proenfo_gfc14,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc14,1.1104064418,0.0,14.122439089,90428df2dbce525e,False,0.7.0,1.1104064418,1.3185527521,0.0646636074,0.0544938011,2.0.1,,,20
-AutoETS,autogluon/fev_datasets,proenfo_gfc17,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc17,2.1346457093,0.0,20.459368195,f8bf8da06e500162,False,0.7.0,2.1346457093,2.4127647331,0.1663142737,0.146648178,2.0.1,,,160
-AutoETS,autogluon/fev_datasets,redset_1H,24,10,-240,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_1H,2.3765166001,0.0,124.299631572,a7542f5bcc8cf4ab,False,0.7.0,2.3765166001,2.2287068299,2.3069740623,3.3022819464,2.0.1,,,1380
-AutoETS,autogluon/fev_datasets,restaurant,28,8,-224,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],"['air_area_name', 'air_genre_name', 'latitude', 'longitude']",restaurant,1.0214758859,0.0,140.000936086,3863ed9dabc164dc,False,0.7.0,1.0214758859,0.9391232286,0.4009865783,0.4313426382,2.0.1,,,6502
-AutoETS,autogluon/fev_datasets,rohlik_orders_1D,61,5,2023-05-01T00:00:00,61,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,orders,,"['holiday', 'school_holidays', 'shops_closed', 'winter_school_holidays']","['blackout', 'frankfurt_shutdown', 'mini_shutdown', 'mov_change', 'precipitation', 'shutdown', 'snow', 'user_activity_1', 'user_activity_2']",[],rohlik_orders_1D,1.4469855127,0.0,4.073035946,8334ba19a7f5e7a1,False,0.7.0,1.4469855127,1.4870315996,0.0657169782,0.0637016666,2.0.1,,,35
-AutoETS,autogluon/fev_datasets,rohlik_orders_1W,8,5,2023-05-01T00:00:00,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,orders,,"['holiday', 'school_holidays', 'shops_closed', 'winter_school_holidays']","['blackout', 'frankfurt_shutdown', 'mini_shutdown', 'mov_change', 'precipitation', 'shutdown', 'snow', 'user_activity_1', 'user_activity_2']",[],rohlik_orders_1W,1.4189633182,0.0,0.9563927,63260348a6b49874,False,0.7.0,1.4189633182,1.7583263983,0.0581583686,0.046928104,2.0.1,,,35
-AutoETS,autogluon/fev_datasets,rohlik_sales_1D,14,1,2023-12-15T00:00:00,14,14,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'school_holidays', 'sell_price_main', 'shops_closed', 'total_orders', 'type_0_discount', 'type_1_discount', 'type_2_discount', 'type_3_discount', 'type_4_discount', 'type_5_discount', 'type_6_discount', 'winter_school_holidays']",['availability'],"['L1_category_name_en', 'L2_category_name_en', 'L3_category_name_en', 'L4_category_name_en', 'name', 'product_unique_id', 'warehouse']",rohlik_sales_1D,1.2661606689,0.0,199.369083794,22fd3891c3b685ce,False,0.7.0,1.2661606689,1.4985533338,0.4184724987,0.3543382966,2.0.1,,,4116
-AutoETS,autogluon/fev_datasets,rohlik_sales_1W,8,1,2023-12-15T00:00:00,8,8,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'school_holidays', 'sell_price_main', 'shops_closed', 'total_orders', 'type_0_discount', 'type_1_discount', 'type_2_discount', 'type_3_discount', 'type_4_discount', 'type_5_discount', 'type_6_discount', 'winter_school_holidays']",['availability'],"['L1_category_name_en', 'L2_category_name_en', 'L3_category_name_en', 'L4_category_name_en', 'name', 'product_unique_id', 'warehouse']",rohlik_sales_1W,14.4532204201,0.0,3.555123276,516398d9cb76a18f,False,0.7.0,14.4532204201,1.8899729917,0.3002878428,4.0491052559,2.0.1,,,3942
-AutoETS,autogluon/fev_datasets,rossmann_1D,48,10,-480,48,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Sales,,"['DayOfWeek', 'Open', 'Promo', 'SchoolHoliday', 'StateHoliday']",['Customers'],"['Assortment', 'CompetitionDistance', 'CompetitionOpenSinceMonth', 'CompetitionOpenSinceYear', 'Promo2', 'Promo2SinceWeek', 'Promo2SinceYear', 'PromoInterval', 'Store', 'StoreType']",rossmann_1D,0.5936917112,0.0,263.823993042,7c1cf165ce5e0f8b,False,0.7.0,0.5936917112,0.6912520753,0.2360617861,0.2028079674,2.0.1,,,11150
-AutoETS,autogluon/fev_datasets,rossmann_1W,13,8,-104,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Sales,,"['Open', 'Promo', 'SchoolHoliday', 'StateHoliday']",['Customers'],"['Assortment', 'CompetitionDistance', 'CompetitionOpenSinceMonth', 'CompetitionOpenSinceYear', 'Promo2', 'Promo2SinceWeek', 'Promo2SinceYear', 'PromoInterval', 'Store', 'StoreType']",rossmann_1W,0.5175490828,0.0,10.581593382,cf54ffb87953c85f,False,0.7.0,0.5175490828,0.6684782378,0.1836160459,0.1401558708,2.0.1,,,8920
-AutoETS,autogluon/fev_datasets,solar_1D,28,10,-280,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],solar_1D,0.6558359500000001,0.0,25.740123118,4a9fb28f2a62f798,False,0.7.0,0.6558359500000001,0.8017773736,0.2511778109,0.2049319678,2.0.1,,,1370
-AutoETS,autogluon/fev_datasets,solar_1W,13,1,-13,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],solar_1W,1.2121746876,0.0,0.413304265,856de5fa702db186,False,0.7.0,1.2121746876,1.6267514936,0.2775774002,0.2063617654,2.0.1,,,137
-AutoETS,autogluon/fev_datasets,solar_with_weather_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['day_length', 'humidity', 'pressure', 'rain_1h', 'snow_1h', 'temp', 'wind_speed']","['clouds_all', 'global_horizontal_irradiance']",[],solar_with_weather_15T,2.5289087933000003,0.0,10.158603406,61e547dc95d83f5d,False,0.7.0,2.5289087933000003,2.4161932928,1.4215377569,1.9572357231,2.0.1,,,20
-AutoETS,autogluon/fev_datasets,solar_with_weather_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['day_length', 'humidity', 'pressure', 'rain_1h', 'snow_1h', 'temp', 'wind_speed']","['clouds_all', 'global_horizontal_irradiance']",[],solar_with_weather_1H,2.1818023268,0.0,4.856573672,a5ce88d03879a959,False,0.7.0,2.1818023268,2.2682380188,1.1464893281,1.3928226357,2.0.1,,,20
-AutoETS,autogluon/fev_datasets,uci_air_quality_1D,28,11,-308,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['C6H6(GT)', 'CO(GT)', 'NO2(GT)', 'NOx(GT)']",,"['AH', 'RH', 'T']",[],[],uci_air_quality_1D,1.1812884821,0.0,3.50945838,1acb95a018b86a63,False,0.7.0,1.1812884821,1.3629041949,0.2790713324,0.2425004358,2.0.1,,,44
-AutoETS,autogluon/fev_datasets,uci_air_quality_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['C6H6(GT)', 'CO(GT)', 'NO2(GT)', 'NOx(GT)']",,"['AH', 'RH', 'T']",[],[],uci_air_quality_1H,41026.9886208021,0.0,49.118323081,187086c23269b305,False,0.7.0,41026.9886208021,10.6979097385,4.0641790986,20468.2757052641,2.0.1,,,80
-AutoETS,autogluon/fev_datasets,uk_covid_nation_1D,28,20,-560,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['cumulative_admissions', 'cumulative_cases', 'cumulative_deaths']",,[],"['cumulative_vaccinated_1', 'cumulative_vaccinated_2', 'cumulative_vaccinated_3', 'hospital_cases', 'icu_ventilator_occupancy']",[],uk_covid_nation_1D/cumulative,7.1837995535,0.0,16.301516562,cb76ab66e8a2acda,False,0.7.0,7.1837995535,8.1052795609,0.0182502112,0.0163459748,2.0.1,,,240
-AutoETS,autogluon/fev_datasets,uk_covid_nation_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['new_admissions', 'new_cases', 'new_deaths']",,[],"['hospital_cases', 'icu_ventilator_occupancy', 'new_vaccinated_1', 'new_vaccinated_2', 'new_vaccinated_3']",[],uk_covid_nation_1D/new,2.7409717093,0.0,9.575121306,cb76ab66e8a2acda,False,0.7.0,2.7409717093,3.0620508133,0.4591069408,0.7010568349,2.0.1,,,240
-AutoETS,autogluon/fev_datasets,uk_covid_nation_1W,8,4,-32,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['cumulative_admissions', 'cumulative_cases', 'cumulative_deaths']",,[],"['cumulative_vaccinated_1', 'cumulative_vaccinated_2', 'cumulative_vaccinated_3', 'hospital_cases', 'icu_ventilator_occupancy']",[],uk_covid_nation_1W/cumulative,2.3989565537,0.0,1.204474561,0398b1ae44b0e1ae,False,0.7.0,2.3989565537,2.8531029011,0.0234671999,0.0195175599,2.0.1,,,48
-AutoETS,autogluon/fev_datasets,uk_covid_nation_1W,8,4,-32,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['new_admissions', 'new_cases', 'new_deaths']",,[],"['hospital_cases', 'icu_ventilator_occupancy', 'new_vaccinated_1', 'new_vaccinated_2', 'new_vaccinated_3']",[],uk_covid_nation_1W/new,5.0239734103,0.0,1.291585898,0398b1ae44b0e1ae,False,0.7.0,5.0239734103,6.0384476605,0.4576220214,0.4600308825,2.0.1,,,48
-AutoETS,autogluon/fev_datasets,uk_covid_utla_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,new_cases,,[],[],[],uk_covid_utla_1D/new,5.622786154,0.0,37.365963321,a8353cbb69d9d419,False,0.7.0,5.622786154,6.304086527,0.5764029175000001,0.5094112038,2.0.1,,,2140
-AutoETS,autogluon/fev_datasets,uk_covid_utla_1W,13,5,-65,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,cumulative_cases,,[],[],[],uk_covid_utla_1W/cumulative,16.3125415616,0.0,4.247754274,e882978eeee0c5e3,False,0.7.0,16.3125415616,17.1124689005,0.1736827634,0.1685579648,2.0.1,,,1070
-AutoETS,autogluon/fev_datasets,us_consumption_1M,12,10,-120,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1M,1.4452749249,0.0,24.829017171,6f0b0899ba9d50bb,False,0.7.0,1.4452749249,1.7093004134,0.0232927346,0.0201648123,2.0.1,,,310
-AutoETS,autogluon/fev_datasets,us_consumption_1Q,8,10,-80,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1Q,1.8861010469,0.0,8.861036959,34ddaf654b836be3,False,0.7.0,1.8861010469,2.2553091192,0.0345600061,0.0292799577,2.0.1,,,310
-AutoETS,autogluon/fev_datasets,us_consumption_1Y,5,10,-50,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1Y,4.0805825682,0.0,3.667418419,69d8accb103bbb77,False,0.7.0,4.0805825682,4.7574382247,0.0765756212,0.0592817405,2.0.1,,,310
-AutoETS,autogluon/fev_datasets,walmart,39,1,-39,39,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['CPI', 'Fuel_Price', 'IsHoliday', 'MarkDown1', 'MarkDown2', 'MarkDown3', 'MarkDown4', 'MarkDown5', 'Temperature', 'Unemployment']",[],"['Dept', 'Size', 'Store', 'Type']",walmart,21704350706303.93,0.0,3.198010096,f84328c62c91aaf5,False,0.7.0,21704350706303.93,1.7226801126,0.2950883508,119300400139.46916,2.0.1,,,2936
-AutoETS,autogluon/fev_datasets,world_co2_emissions,5,9,-45,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_co2_emissions,7.7240531151,0.0,3.785459779,66fdc0a9c269539c,False,0.7.0,7.7240531151,3.2990698517,0.0843222712,0.0887646329,2.0.1,,,1719
-AutoETS,autogluon/fev_datasets,world_life_expectancy,5,10,-50,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_life_expectancy,1.3015724131,0.0,4.918357091,63f326fa372ad29a,False,0.7.0,1.3015724131,1.5355990211,0.0126002091,0.0107918452,2.0.1,,,2370
-AutoETS,autogluon/fev_datasets,world_tourism,5,2,-10,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_tourism,2.8819679863000003,0.0,0.7199118520000001,f03e22f4082953f7,False,0.7.0,2.8819679863000003,3.4851749726,0.0937603042,0.0724923711,2.0.1,,,356
-AutoTheta,autogluon/fev_datasets,ETT_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_15T,1.0985228656,0.0,19.757810718,9f6541408f56392f,False,0.7.0,1.0985228656,0.8021815222,0.1327521257,0.170235374,2.0.1,,,280
-AutoTheta,autogluon/fev_datasets,ETT_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1D,1.3789083105,0.0,7.020742432,ff06ef09d043bd73,False,0.7.0,1.3789083105,1.4485203425,0.3405146034,0.360480833,2.0.1,,,280
-AutoTheta,autogluon/fev_datasets,ETT_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1H,2.0612851578,0.0,14.346829925,1051fcbf7ab489b5,False,0.7.0,2.0612851578,1.284690664,0.2708169587,0.387905148,2.0.1,,,280
-AutoTheta,autogluon/fev_datasets,ETT_1W,13,5,-65,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1W,2.603472326,0.0,1.339511256,f7babcd132f54bf3,False,0.7.0,2.603472326,2.8368188855,0.4891462862,0.4986518854,2.0.1,,,70
-AutoTheta,autogluon/fev_datasets,LOOP_SEATTLE_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_1D,0.8528499579000001,0.0,33.646223851,02d7b9f04d1c3187,False,0.7.0,0.8528499579000001,1.0222727765,0.0389688019,0.0325479384,2.0.1,,,3230
-AutoTheta,autogluon/fev_datasets,LOOP_SEATTLE_1H,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_1H,2.8320370482,0.0,66.504141303,08811ee17f93df42,False,0.7.0,2.8320370482,1.1797622806,0.1024438366,0.2528752457,2.0.1,,,3230
-AutoTheta,autogluon/fev_datasets,LOOP_SEATTLE_5T,288,10,-2880,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_5T,1.1098659427,0.0,175.773219738,c2739a4b195beef3,False,0.7.0,1.1098659427,0.9937342132,0.1108838413,0.121969972,2.0.1,,,3230
-AutoTheta,autogluon/fev_datasets,M_DENSE_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],M_DENSE_1D,1.1434781616,0.0,7.770231326,12417cabd3e820d7,False,0.7.0,1.1434781616,1.0771913138,0.1322432969,0.1459052349,2.0.1,,,300
-AutoTheta,autogluon/fev_datasets,M_DENSE_1H,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],M_DENSE_1H,3.0980400553,0.0,14.257300872,e973593b94c21fa6,False,0.7.0,3.0980400553,1.4265921364,0.2921647772,0.7918015547,2.0.1,,,300
-AutoTheta,autogluon/fev_datasets,SZ_TAXI_15T,96,10,-960,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],SZ_TAXI_15T,0.5126750232,0.0,64.369114129,3e6f0d3380ac07cc,False,0.7.0,0.5126750232,0.5704736672,0.2728340209,0.2434722417,2.0.1,,,1560
-AutoTheta,autogluon/fev_datasets,SZ_TAXI_1H,168,2,-336,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],SZ_TAXI_1H,0.983741696,0.0,4.544872141,7c28d9c08a8a99d2,False,0.7.0,0.983741696,0.7816119684,0.2595272139,0.3559208311,2.0.1,,,312
-AutoTheta,autogluon/fev_datasets,australian_tourism,8,2,-16,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],australian_tourism,0.8129699438,0.0,0.810851831,e3e704ef830bb1f4,False,0.7.0,0.8129699438,1.0449349521,0.1052965894,0.0823354804,2.0.1,,,178
-AutoTheta,autogluon/fev_datasets,bizitobs_l2c_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_2', 'target_3', 'target_4', 'target_5', 'target_6']",,[],[],[],bizitobs_l2c_1H,0.6824779096,0.0,5.972344792,fd3fb3349ee15a22,False,0.7.0,0.6824779096,0.7957254005000001,1.3980487641,1.3542131559,2.0.1,,,140
-AutoTheta,autogluon/fev_datasets,bizitobs_l2c_5T,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_2', 'target_3', 'target_4', 'target_5', 'target_6']",,[],[],[],bizitobs_l2c_5T,0.7495634618,0.0,6.99455121,9cb515b57514a9ab,False,0.7.0,0.7495634618,0.8740253941,1.6561117344,1.6069322946,2.0.1,,,140
-AutoTheta,autogluon/fev_datasets,boomlet_1062,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1062,1.3443713412,0.0,20.690467776,44381d6f431f8c90,False,0.7.0,1.3443713412,1.0704423896,0.8386591385000001,1.085539266,2.0.1,,,420
-AutoTheta,autogluon/fev_datasets,boomlet_1209,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1209,2.7292377595,0.0,23.139276257,1466ee197c499055,False,0.7.0,2.7292377595,1.1056064071,0.456201244,1.1157526247,2.0.1,,,1060
-AutoTheta,autogluon/fev_datasets,boomlet_1225,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1225,0.3296940654,0.0,54.739283896,5d9eb3c2d9389376,False,0.7.0,0.3296940654,0.3003114491,0.1596047961,0.1711256418,2.0.1,,,980
-AutoTheta,autogluon/fev_datasets,boomlet_1230,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1230,3.9779653374,0.0,23.077679705,034f57f6576437cc,False,0.7.0,3.9779653374,1.5854205097,0.4040077124,1.1951987922,2.0.1,,,460
-AutoTheta,autogluon/fev_datasets,boomlet_1282,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1282,0.9716916511,0.0,48.563522735,de65600e18e27fe8,False,0.7.0,0.9716916511,0.6909553164000001,0.471762625,0.6672579187000001,2.0.1,,,700
-AutoTheta,autogluon/fev_datasets,boomlet_1487,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1487,0.8366025999000001,0.0,38.325773039,17003e37fda85cdd,False,0.7.0,0.8366025999000001,0.6861485358,0.270651306,0.3266562805,2.0.1,,,1080
-AutoTheta,autogluon/fev_datasets,boomlet_1631,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1631,0.7282739185,0.0,25.136253635,f5255f15ed8188ab,False,0.7.0,0.7282739185,0.7886354003,0.3499573969,0.3246702609,2.0.1,,,800
-AutoTheta,autogluon/fev_datasets,boomlet_1676,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_75', 'target_76', 'target_77', 'target_78', 'target_79', 'target_8', 'target_80', 'target_81', 'target_82', 'target_83', 'target_84', 'target_85', 'target_86', 'target_87', 'target_88', 'target_89', 'target_9', 'target_90', 'target_91', 'target_92', 'target_93', 'target_94', 'target_95', 'target_96', 'target_97', 'target_98', 'target_99']",,[],[],[],boomlet_1676,0.7835312638,0.0,66.467907881,20768bc9d5e316c5,False,0.7.0,0.7835312638,0.7772233453,0.3605949771,0.3689668234,2.0.1,,,2000
-AutoTheta,autogluon/fev_datasets,boomlet_1855,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1855,1.204414213,0.0,44.147499066,ca3cf5b18a145f72,False,0.7.0,1.204414213,0.7479719187,0.2310231853,0.2591897672,2.0.1,,,1040
-AutoTheta,autogluon/fev_datasets,boomlet_1975,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_8', 'target_9']",,[],[],[],boomlet_1975,0.6292227757000001,0.0,26.577296455,3d8d0f68506b1995,False,0.7.0,0.6292227757000001,0.5697333157000001,0.3240569453,0.3645838608,2.0.1,,,1500
-AutoTheta,autogluon/fev_datasets,boomlet_2187,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_75', 'target_76', 'target_77', 'target_78', 'target_79', 'target_8', 'target_80', 'target_81', 'target_82', 'target_83', 'target_84', 'target_85', 'target_86', 'target_87', 'target_88', 'target_89', 'target_9', 'target_90', 'target_91', 'target_92', 'target_93', 'target_94', 'target_95', 'target_96', 'target_97', 'target_98', 'target_99']",,[],[],[],boomlet_2187,1.389411779,0.0,68.140518065,c3fe1a491401b248,False,0.7.0,1.389411779,1.2716040444,0.441407778,0.4740037125,2.0.1,,,2000
-AutoTheta,autogluon/fev_datasets,boomlet_285,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_8', 'target_9']",,[],[],[],boomlet_285,1.3318503729,0.0,37.733115875,3dfa571029207f1f,False,0.7.0,1.3318503729,0.7305756426000001,0.3717445356,0.3165758913,2.0.1,,,1500
-AutoTheta,autogluon/fev_datasets,boomlet_619,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_619,0.8352158487,0.0,22.155099945,2d514811bddfc52d,False,0.7.0,0.8352158487,1.0200015813,0.8820872245,0.6993259862,2.0.1,,,1040
-AutoTheta,autogluon/fev_datasets,boomlet_772,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_772,1.4390517121,0.0,49.752985414,66ce5fbc5ad575a2,False,0.7.0,1.4390517121,0.6163309557000001,0.2834336899,0.5422949313000001,2.0.1,,,1340
-AutoTheta,autogluon/fev_datasets,boomlet_963,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_963,1.4536844039,0.0,17.082664727,bd1c23c0fd1a748e,False,0.7.0,1.4536844039,1.1004605986,0.5049570994,0.716591367,2.0.1,,,560
-AutoTheta,autogluon/fev_datasets,ecdc_ili,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ecdc_ili,3.8437922843,0.0,3.597034584,0c0a84fa1b54ac63,False,0.7.0,3.8437922843,4.2528905756,0.5694230199,0.5760490118,2.0.1,,,240
-AutoTheta,autogluon/fev_datasets,entsoe_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_15T,0.5794334285,0.0,8.175039881,34c503cb4346b380,False,0.7.0,0.5794334285,0.7298063048,0.0539835229,0.04302748,2.0.1,,,120
-AutoTheta,autogluon/fev_datasets,entsoe_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_1H,0.9723015525,0.0,9.86522695,0cb6316a70bf9d47,False,0.7.0,0.9723015525,1.1626008244,0.0836396273,0.0693891454,2.0.1,,,120
-AutoTheta,autogluon/fev_datasets,entsoe_30T,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_30T,0.7996836131,0.0,8.773509415,6ff7f68ac7fbd564,False,0.7.0,0.7996836131,1.0040370692,0.0721444593,0.0571609073,2.0.1,,,120
-AutoTheta,autogluon/fev_datasets,epf_be,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Generation forecast', 'System load forecast']",[],[],epf_be,1.4843337008000002,0.0,4.052144202,50acce5fc8987a4f,False,0.7.0,1.4843337008000002,1.0193650689,0.1881915066,0.2582438044,2.0.1,,,20
-AutoTheta,autogluon/fev_datasets,epf_de,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Ampirion Load Forecast', 'PV+Wind Forecast']",[],[],epf_de,1.4943830235,0.0,1.4522195,491dc89fd5b322b5,False,0.7.0,1.4943830235,1.407198376,0.6459928796000001,0.6490481061000001,2.0.1,,,20
-AutoTheta,autogluon/fev_datasets,epf_fr,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Generation forecast', 'System load forecast']",[],[],epf_fr,1.5911735884,0.0,4.241378194,bc5a57cd5727d527,False,0.7.0,1.5911735884,0.8447495724,0.1293735383,0.2296495476,2.0.1,,,20
-AutoTheta,autogluon/fev_datasets,epf_np,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Grid load forecast', 'Wind power forecast']",[],[],epf_np,1.2812041765,0.0,1.410720192,80b01220b34be222,False,0.7.0,1.2812041765,1.514020593,0.0688152587,0.0578512541,2.0.1,,,20
-AutoTheta,autogluon/fev_datasets,epf_pjm,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['System load forecast', 'Zonal COMED load foecast']",[],[],epf_pjm,0.6031844165,0.0,1.430002319,04be360a47b231a4,False,0.7.0,0.6031844165,0.6832480189,0.1198625589,0.1068456977,2.0.1,,,20
-AutoTheta,autogluon/fev_datasets,ercot_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1D,1.4186958416,0.0,9.469445659,d1c9de98a43d4097,False,0.7.0,1.4186958416,1.5801931826,0.1169790924,0.1055339552,2.0.1,,,160
-AutoTheta,autogluon/fev_datasets,ercot_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1H,1.2749705934,0.0,8.370239174,95b91121d95f89c8,False,0.7.0,1.2749705934,1.5835893744,0.081462577,0.0646341807,2.0.1,,,160
-AutoTheta,autogluon/fev_datasets,ercot_1M,12,15,-180,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1M,0.9653005355,0.0,3.713059389,167e0223cbbc1b69,False,0.7.0,0.9653005355,1.2051001185,0.0593784221,0.0470765052,2.0.1,,,120
-AutoTheta,autogluon/fev_datasets,ercot_1W,13,20,-260,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1W,2.1282361494,0.0,11.984929096,091a619858bdabc9,False,0.7.0,2.1282361494,2.66207578,0.1458645716,0.1163159858,2.0.1,,,160
-AutoTheta,autogluon/fev_datasets,favorita_stores_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'onpromotion']",['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1D,1.2731528133,0.0,784.588849778,3c676e1d0f771bf4,False,0.7.0,1.2731528133,1.3758675565,0.1834860831,0.1778642628,2.0.1,,,15790
-AutoTheta,autogluon/fev_datasets,favorita_stores_1M,12,2,-24,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,['onpromotion'],['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1M,1.9416452953,0.0,3.06092775,7c94de5b6e2859ff,False,0.7.0,1.9416452953,2.1335008012,0.1535032243,0.1244588255,2.0.1,,,3158
-AutoTheta,autogluon/fev_datasets,favorita_stores_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,['onpromotion'],['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1W,2.3159830026,0.0,43.819227892,aae27c565b10fe7f,False,0.7.0,2.3159830026,2.4768022229,0.1443628684,0.1407957933,2.0.1,,,15790
-AutoTheta,autogluon/fev_datasets,favorita_transactions_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,['holiday'],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1D,1.2463370552,0.0,67.022452779,af6c7be9c6bf8910,False,0.7.0,1.2463370552,1.2511063806,0.0961165557,0.0991455646,2.0.1,,,510
-AutoTheta,autogluon/fev_datasets,favorita_transactions_1M,12,2,-24,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,[],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1M,1.2743467248,0.0,0.8116229330000001,a9ebe0fd05a285b6,False,0.7.0,1.2743467248,1.4898451778,0.0943706955,0.0829960463,2.0.1,,,102
-AutoTheta,autogluon/fev_datasets,favorita_transactions_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,[],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1W,1.7020928499,0.0,7.358726534,dcf0217a3f159ec8,False,0.7.0,1.7020928499,1.7230820362,0.0703343528,0.0703094331,2.0.1,,,510
-AutoTheta,autogluon/fev_datasets,fred_md_2025,12,20,-240,12,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['CPIAUCSL', 'FEDFUNDS', 'PAYEMS']",,[],"['M2REAL', 'NONBORRES', 'PPICMM', 'TOTRESNS']",[],fred_md_2025/cee,4.3189751514,0.0,3.836460797,764e9294023ee081,False,0.7.0,4.3189751514,4.7268175598,0.0903405098,0.1182489158,2.0.1,,,60
-AutoTheta,autogluon/fev_datasets,fred_md_2025,12,20,-240,12,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['AAA', 'AWHMAN', 'BAA', 'BUSINVx', 'CPIAUCSL', 'CPIMEDSL', 'CUMFNS', 'DMANEMP', 'EXUSUKx', 'FEDFUNDS', 'GS1', 'GS10', 'GS5', 'HOUST', 'INDPRO', 'INVEST', 'IPBUSEQ', 'IPCONGD', 'IPDCONGD', 'IPDMAT', 'IPFINAL', 'IPMANSICS', 'IPMAT', 'IPNCONGD', 'IPNMAT', 'M2REAL', 'MANEMP', 'NDMANEMP', 'NONBORRES', 'PAYEMS', 'PERMIT', 'PPICMM', 'S&P 500', 'SRVPRD', 'TB3MS', 'TB6MS', 'TOTRESNS', 'UEMP15T26', 'UEMP27OV', 'UEMP5TO14', 'UEMPLT5', 'UEMPMEAN', 'UMCSENTx', 'UNRATE', 'USCONS', 'USFIRE', 'USGOOD', 'USGOVT', 'USTPU', 'USTRADE', 'VIXCLSx']",,[],[],[],fred_md_2025/macro,6.0124726904,0.0,16.490719562,764e9294023ee081,False,0.7.0,6.0124726904,6.7085954414,0.086868012,0.0815239103,2.0.1,,,1020
-AutoTheta,autogluon/fev_datasets,fred_qd_2025,8,20,-160,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['CPIAUCSL', 'FEDFUNDS', 'PAYEMS']",,[],"['M2REAL', 'NONBORRES', 'PPICMM', 'TOTRESNS']",[],fred_qd_2025/cee,2.2176909101,0.0,2.12091114,d257091c861020bf,False,0.7.0,2.2176909101,2.5784767122,0.1604369975,0.1482369083,2.0.1,,,60
-AutoTheta,autogluon/fev_datasets,fred_qd_2025,8,20,-160,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['AAA', 'AWHMAN', 'BAA', 'BUSINVx', 'CPIAUCSL', 'CPIMEDSL', 'CUMFNS', 'DMANEMP', 'EXUSUKx', 'FEDFUNDS', 'GS1', 'GS10', 'GS5', 'HOUST', 'INDPRO', 'INVEST', 'IPBUSEQ', 'IPCONGD', 'IPDCONGD', 'IPDMAT', 'IPFINAL', 'IPMANSICS', 'IPMAT', 'IPNCONGD', 'IPNMAT', 'M2REAL', 'MANEMP', 'NDMANEMP', 'NONBORRES', 'PAYEMS', 'PERMIT', 'PPICMM', 'S&P 500', 'SRVPRD', 'TB3MS', 'TB6MS', 'TOTRESNS', 'UEMP15T26', 'UEMP27OV', 'UEMP5TO14', 'UEMPLT5', 'UEMPMEAN', 'UMCSENTx', 'UNRATE', 'USCONS', 'USFIRE', 'USGOOD', 'USGOVT', 'USTPU', 'USTRADE', 'VIXCLSx']",,[],[],[],fred_qd_2025/macro,3.8250563211,0.0,7.559951786,d257091c861020bf,False,0.7.0,3.8250563211,4.4089305862,0.1135594273,0.0954220424,2.0.1,,,1020
-AutoTheta,autogluon/fev_datasets,gvar,8,10,-80,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['Dp', 'ep', 'eq', 'lr', 'r', 'y']",,[],"['pmat', 'pmetal', 'poil']",[],gvar,0.616191821,0.0,4.731667279,e60f8e1e38f9acca,False,0.7.0,0.616191821,0.6996326439,0.0183729022,0.0166324554,2.0.1,,,1980
-AutoTheta,autogluon/fev_datasets,hermes,52,1,-52,52,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['external'],[],"['category', 'country']",hermes,1.5539343318,0.0,9.990984067,f87501b2bd02803b,False,0.7.0,1.5539343318,1.8477529328,0.0081041083,0.0068258834,2.0.1,,,10000
-AutoTheta,autogluon/fev_datasets,hierarchical_sales_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hierarchical_sales_1D,0.815310861,0.0,46.334364247,0ecbb4076fd5ba78,False,0.7.0,0.815310861,0.8693462262,0.9374910116,0.9689367577,2.0.1,,,1180
-AutoTheta,autogluon/fev_datasets,hierarchical_sales_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hierarchical_sales_1W,0.7744970082,0.0,7.811036284,691bd281f0ad7adc,False,0.7.0,0.7744970082,0.9154643589,0.5616531372,0.4883602498,2.0.1,,,1180
-AutoTheta,autogluon/fev_datasets,hospital,12,4,-48,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital,0.7401804136,0.0,5.374221504,9c6e8721c2eca10b,False,0.7.0,0.7401804136,0.9215507227,0.0992142502,0.0813819141,2.0.1,,,3068
-AutoTheta,autogluon/fev_datasets,hospital_admissions_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital_admissions_1D,0.5748023874,0.0,8.37668388,51b7fbd3926341eb,False,0.7.0,0.5748023874,0.7428646667000001,0.5510431179,0.4263733391,2.0.1,,,160
-AutoTheta,autogluon/fev_datasets,hospital_admissions_1W,13,16,-208,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital_admissions_1W,0.5976752248,0.0,3.660223144,bff3ae304070efd9,False,0.7.0,0.5976752248,0.7779256247,0.2190619932,0.168270042,2.0.1,,,128
-AutoTheta,autogluon/fev_datasets,jena_weather_10T,144,20,-2880,144,1,,144,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_10T,0.7929160924,0.0,15.634109966,311a660faf591409,False,0.7.0,0.7929160924,0.4933654141,0.3075604132,3.5724878985,2.0.1,,,420
-AutoTheta,autogluon/fev_datasets,jena_weather_1D,28,11,-308,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_1D,1.5312195918,0.0,4.216474385,81a9d748210aa612,False,0.7.0,1.5312195918,1.6406694179,0.3648304911,0.352949988,2.0.1,,,231
-AutoTheta,autogluon/fev_datasets,jena_weather_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_1H,0.5933268886,0.0,14.769169846,8eb1d310607e8fee,False,0.7.0,0.5933268886,0.4846005807,0.2954772817,1.6859107034,2.0.1,,,420
-AutoTheta,autogluon/fev_datasets,kdd_cup_2022_10T,288,10,-2880,288,1,,144,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_10T,0.7782845321,0.0,35.127702792,e200b7c6bc525a8d,False,0.7.0,0.7782845321,0.8117980851000001,2.1184663236,2.5543058657,2.0.1,,,1340
-AutoTheta,autogluon/fev_datasets,kdd_cup_2022_1D,14,10,-140,14,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_1D,0.7391822834,0.0,10.131362893,67f17ff257220281,False,0.7.0,0.7391822834,0.9764039863,0.8038047969000001,0.5966451508,2.0.1,,,1340
-AutoTheta,autogluon/fev_datasets,kdd_cup_2022_30T,96,10,-960,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_30T,0.7653501983000001,0.0,27.150303236,257e85b44bdb8154,False,0.7.0,0.7653501983000001,0.8416018012,2.3053818822,2.5972049691,2.0.1,,,1340
-AutoTheta,autogluon/fev_datasets,m5_1D,28,1,-28,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1D,0.8721490279,0.0,763.6272551,0d8bfe3780a2c494,False,0.7.0,0.8721490279,1.0805686532,0.7779017687,0.6265285781000001,2.0.1,,,30490
-AutoTheta,autogluon/fev_datasets,m5_1M,12,1,-12,12,6,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1M,1.0987392502,0.0,19.650036874,78d200c01b7350ff,False,0.7.0,1.0987392502,1.2589934317,0.491009295,0.4195249159,2.0.1,,,29364
-AutoTheta,autogluon/fev_datasets,m5_1W,13,1,-13,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1W,0.9633961601,0.0,85.610458824,60d0a43fd09b5dcc,False,0.7.0,0.9633961601,1.1697733846,0.4475453794,0.3767071031,2.0.1,,,30490
-AutoTheta,autogluon/fev_datasets,proenfo_gfc12,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc12,1.414921573,0.0,6.908236052,e39dc59e1a6af0e2,False,0.7.0,1.414921573,1.5236522096,0.1359507203,0.1250899583,2.0.1,,,110
-AutoTheta,autogluon/fev_datasets,proenfo_gfc14,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc14,1.0554823676,0.0,1.681859291,90428df2dbce525e,False,0.7.0,1.0554823676,1.185656643,0.0579787859,0.0519159577,2.0.1,,,20
-AutoTheta,autogluon/fev_datasets,proenfo_gfc17,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc17,1.1469535851,0.0,7.015415077,f8bf8da06e500162,False,0.7.0,1.1469535851,1.3687323787,0.0931363594,0.0769725348,2.0.1,,,160
-AutoTheta,autogluon/fev_datasets,redset_15T,96,10,-960,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_15T,10.1219214394,0.0,84.653734861,391e616eee276356,False,0.7.0,10.1219214394,1.597597259,0.4040436536,0.940375013,2.0.1,,,1260
-AutoTheta,autogluon/fev_datasets,redset_1H,24,10,-240,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_1H,4.0716886989,0.0,91.903643195,a7542f5bcc8cf4ab,False,0.7.0,4.0716886989,2.0202444582,0.371760726,0.471399676,2.0.1,,,1380
-AutoTheta,autogluon/fev_datasets,redset_5T,288,10,-2880,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_5T,3.3566436475,0.0,69.756080885,4776bd88b54d8a04,False,0.7.0,3.3566436475,2.3397807513,0.6252421260000001,1.1479851264,2.0.1,,,1180
-AutoTheta,autogluon/fev_datasets,restaurant,28,8,-224,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],"['air_area_name', 'air_genre_name', 'latitude', 'longitude']",restaurant,0.7607880054,0.0,32.034104421,3863ed9dabc164dc,False,0.7.0,0.7607880054,0.9184892419,0.3923323192,0.3228884373,2.0.1,,,6502
-AutoTheta,autogluon/fev_datasets,rohlik_orders_1D,61,5,2023-05-01T00:00:00,61,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,orders,,"['holiday', 'school_holidays', 'shops_closed', 'winter_school_holidays']","['blackout', 'frankfurt_shutdown', 'mini_shutdown', 'mov_change', 'precipitation', 'shutdown', 'snow', 'user_activity_1', 'user_activity_2']",[],rohlik_orders_1D,1.3973344823,0.0,11.789316734,8334ba19a7f5e7a1,False,0.7.0,1.3973344823,1.5185276042,0.0664489299,0.0607226711,2.0.1,,,35
-AutoTheta,autogluon/fev_datasets,rohlik_orders_1W,8,5,2023-05-01T00:00:00,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,orders,,"['holiday', 'school_holidays', 'shops_closed', 'winter_school_holidays']","['blackout', 'frankfurt_shutdown', 'mini_shutdown', 'mov_change', 'precipitation', 'shutdown', 'snow', 'user_activity_1', 'user_activity_2']",[],rohlik_orders_1W,1.3962994461,0.0,1.224844024,63260348a6b49874,False,0.7.0,1.3962994461,1.7121743288,0.0573223703,0.0464560362,2.0.1,,,35
-AutoTheta,autogluon/fev_datasets,rohlik_sales_1D,14,1,2023-12-15T00:00:00,14,14,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'school_holidays', 'sell_price_main', 'shops_closed', 'total_orders', 'type_0_discount', 'type_1_discount', 'type_2_discount', 'type_3_discount', 'type_4_discount', 'type_5_discount', 'type_6_discount', 'winter_school_holidays']",['availability'],"['L1_category_name_en', 'L2_category_name_en', 'L3_category_name_en', 'L4_category_name_en', 'name', 'product_unique_id', 'warehouse']",rohlik_sales_1D,1.2818357414,0.0,130.773139282,22fd3891c3b685ce,False,0.7.0,1.2818357414,1.4939231302,0.4130674899,0.3563233504,2.0.1,,,4116
-AutoTheta,autogluon/fev_datasets,rohlik_sales_1W,8,1,2023-12-15T00:00:00,8,8,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'school_holidays', 'sell_price_main', 'shops_closed', 'total_orders', 'type_0_discount', 'type_1_discount', 'type_2_discount', 'type_3_discount', 'type_4_discount', 'type_5_discount', 'type_6_discount', 'winter_school_holidays']",['availability'],"['L1_category_name_en', 'L2_category_name_en', 'L3_category_name_en', 'L4_category_name_en', 'name', 'product_unique_id', 'warehouse']",rohlik_sales_1W,1.6547436183,0.0,9.744953536,516398d9cb76a18f,False,0.7.0,1.6547436183,1.8363584706,0.294593662,0.2655509054,2.0.1,,,3942
-AutoTheta,autogluon/fev_datasets,rossmann_1D,48,10,-480,48,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Sales,,"['DayOfWeek', 'Open', 'Promo', 'SchoolHoliday', 'StateHoliday']",['Customers'],"['Assortment', 'CompetitionDistance', 'CompetitionOpenSinceMonth', 'CompetitionOpenSinceYear', 'Promo2', 'Promo2SinceWeek', 'Promo2SinceYear', 'PromoInterval', 'Store', 'StoreType']",rossmann_1D,0.8315478225,0.0,603.054202122,7c1cf165ce5e0f8b,False,0.7.0,0.8315478225,0.7447792464,0.2557922274,0.291009868,2.0.1,,,11150
-AutoTheta,autogluon/fev_datasets,rossmann_1W,13,8,-104,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Sales,,"['Open', 'Promo', 'SchoolHoliday', 'StateHoliday']",['Customers'],"['Assortment', 'CompetitionDistance', 'CompetitionOpenSinceMonth', 'CompetitionOpenSinceYear', 'Promo2', 'Promo2SinceWeek', 'Promo2SinceYear', 'PromoInterval', 'Store', 'StoreType']",rossmann_1W,0.5160293344,0.0,24.341015707,cf54ffb87953c85f,False,0.7.0,0.5160293344,0.6643635235,0.1812564228,0.1385267381,2.0.1,,,8920
-AutoTheta,autogluon/fev_datasets,solar_1D,28,10,-280,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],solar_1D,0.6785205054,0.0,8.802713676,4a9fb28f2a62f798,False,0.7.0,0.6785205054,0.8376174094000001,0.2619624853,0.2116725603,2.0.1,,,1370
-AutoTheta,autogluon/fev_datasets,solar_1W,13,1,-13,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],solar_1W,1.4256110648,0.0,0.411495805,856de5fa702db186,False,0.7.0,1.4256110648,2.0936290706,0.3495942652,0.2389863753,2.0.1,,,137
-AutoTheta,autogluon/fev_datasets,solar_with_weather_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['day_length', 'humidity', 'pressure', 'rain_1h', 'snow_1h', 'temp', 'wind_speed']","['clouds_all', 'global_horizontal_irradiance']",[],solar_with_weather_15T,3.5850953026,0.0,8.344362715,61e547dc95d83f5d,False,0.7.0,3.5850953026,1.2728696954,1.5023058228,3.2872524251,2.0.1,,,20
-AutoTheta,autogluon/fev_datasets,solar_with_weather_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['day_length', 'humidity', 'pressure', 'rain_1h', 'snow_1h', 'temp', 'wind_speed']","['clouds_all', 'global_horizontal_irradiance']",[],solar_with_weather_1H,3.3576154004,0.0,3.364026338,a5ce88d03879a959,False,0.7.0,3.3576154004,1.5354303629,1.5474270582,2.6714879984,2.0.1,,,20
-AutoTheta,autogluon/fev_datasets,uci_air_quality_1D,28,11,-308,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['C6H6(GT)', 'CO(GT)', 'NO2(GT)', 'NOx(GT)']",,"['AH', 'RH', 'T']",[],[],uci_air_quality_1D,1.2334025241,0.0,1.931450222,1acb95a018b86a63,False,0.7.0,1.2334025241,1.4428092347,0.2964460064,0.2579293608,2.0.1,,,44
-AutoTheta,autogluon/fev_datasets,uci_air_quality_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['C6H6(GT)', 'CO(GT)', 'NO2(GT)', 'NOx(GT)']",,"['AH', 'RH', 'T']",[],[],uci_air_quality_1H,1.9559568032,0.0,5.7200676690000005,187086c23269b305,False,0.7.0,1.9559568032,1.3457656206,0.4167998955,0.6724046824000001,2.0.1,,,80
-AutoTheta,autogluon/fev_datasets,uk_covid_nation_1D,28,20,-560,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['cumulative_admissions', 'cumulative_cases', 'cumulative_deaths']",,[],"['cumulative_vaccinated_1', 'cumulative_vaccinated_2', 'cumulative_vaccinated_3', 'hospital_cases', 'icu_ventilator_occupancy']",[],uk_covid_nation_1D/cumulative,18.4454679918,0.0,7.279221798,cb76ab66e8a2acda,False,0.7.0,18.4454679918,20.1075262656,0.047922572,0.0435228041,2.0.1,,,240
-AutoTheta,autogluon/fev_datasets,uk_covid_nation_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['new_admissions', 'new_cases', 'new_deaths']",,[],"['hospital_cases', 'icu_ventilator_occupancy', 'new_vaccinated_1', 'new_vaccinated_2', 'new_vaccinated_3']",[],uk_covid_nation_1D/new,2.5298732341,0.0,9.06588511,cb76ab66e8a2acda,False,0.7.0,2.5298732341,2.8839990291,0.4808448859,0.6249699219,2.0.1,,,240
-AutoTheta,autogluon/fev_datasets,uk_covid_nation_1W,8,4,-32,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['cumulative_admissions', 'cumulative_cases', 'cumulative_deaths']",,[],"['cumulative_vaccinated_1', 'cumulative_vaccinated_2', 'cumulative_vaccinated_3', 'hospital_cases', 'icu_ventilator_occupancy']",[],uk_covid_nation_1W/cumulative,5.097376861,0.0,1.015615217,0398b1ae44b0e1ae,False,0.7.0,5.097376861,5.7016692031,0.0519616026,0.0457146098,2.0.1,,,48
-AutoTheta,autogluon/fev_datasets,uk_covid_nation_1W,8,4,-32,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['new_admissions', 'new_cases', 'new_deaths']",,[],"['hospital_cases', 'icu_ventilator_occupancy', 'new_vaccinated_1', 'new_vaccinated_2', 'new_vaccinated_3']",[],uk_covid_nation_1W/new,5.1818506739,0.0,1.093406847,0398b1ae44b0e1ae,False,0.7.0,5.1818506739,5.813977235,0.4545178637,0.4631006396,2.0.1,,,48
-AutoTheta,autogluon/fev_datasets,uk_covid_utla_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,new_cases,,[],[],[],uk_covid_utla_1D/new,5.0552633527,0.0,28.541335111,a8353cbb69d9d419,False,0.7.0,5.0552633527,5.820038846,0.5472069114,0.476165342,2.0.1,,,2140
-AutoTheta,autogluon/fev_datasets,uk_covid_utla_1W,13,5,-65,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,cumulative_cases,,[],[],[],uk_covid_utla_1W/cumulative,20.1018108531,0.0,2.416687945,e882978eeee0c5e3,False,0.7.0,20.1018108531,21.4127050868,0.2025926664,0.186827715,2.0.1,,,1070
-AutoTheta,autogluon/fev_datasets,us_consumption_1M,12,10,-120,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1M,1.704219721,0.0,11.185354677,6f0b0899ba9d50bb,False,0.7.0,1.704219721,1.9291138764,0.0304996581,0.0272716281,2.0.1,,,310
-AutoTheta,autogluon/fev_datasets,us_consumption_1Q,8,10,-80,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1Q,2.3452449672,0.0,4.407387248,34ddaf654b836be3,False,0.7.0,2.3452449672,2.6435650081,0.0455343083,0.0412327495,2.0.1,,,310
-AutoTheta,autogluon/fev_datasets,us_consumption_1Y,5,10,-50,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1Y,5.0841302662,0.0,3.5995976130000003,69d8accb103bbb77,False,0.7.0,5.0841302662,5.619694319,0.1074392479,0.0967727372,2.0.1,,,310
-AutoTheta,autogluon/fev_datasets,walmart,39,1,-39,39,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['CPI', 'Fuel_Price', 'IsHoliday', 'MarkDown1', 'MarkDown2', 'MarkDown3', 'MarkDown4', 'MarkDown5', 'Temperature', 'Unemployment']",[],"['Dept', 'Size', 'Store', 'Type']",walmart,1.4674936934,0.0,8.494516131,f84328c62c91aaf5,False,0.7.0,1.4674936934,1.4178781632000002,0.1852148771,0.1996789224,2.0.1,,,2936
-AutoTheta,autogluon/fev_datasets,world_co2_emissions,5,9,-45,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_co2_emissions,2.8254620295,0.0,4.029324262,66fdc0a9c269539c,False,0.7.0,2.8254620295,3.2294516112,0.0831107938,0.0742405541,2.0.1,,,1719
-AutoTheta,autogluon/fev_datasets,world_life_expectancy,5,10,-50,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_life_expectancy,1.4512016278,0.0,4.704021132,63f326fa372ad29a,False,0.7.0,1.4512016278,1.7124546782,0.0137058759,0.0118279018,2.0.1,,,2370
-AutoTheta,autogluon/fev_datasets,world_tourism,5,2,-10,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_tourism,2.5742928529,0.0,0.9003165280000001,f03e22f4082953f7,False,0.7.0,2.5742928529,2.9312038042,0.0556104314,0.0479228397,2.0.1,,,356
-Chronos-2,autogluon/fev_datasets,ETT_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_15T,0.5458017173,0.0,3.586513707,8cb2ab653e6a502b,False,0.7.0,0.5458017173,0.6948579833,0.1128598566,0.088140917,,cuda,float32,280
-Chronos-2,autogluon/fev_datasets,ETT_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1D,1.1315469549,0.0,0.7686183270000001,087e55aa2b87745b,False,0.7.0,1.1315469549,1.3413765406,0.3210531483,0.2599714581,,cuda,float32,280
-Chronos-2,autogluon/fev_datasets,ETT_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1H,0.8829665685,0.0,3.594042647,305bfc1cf6779b47,False,0.7.0,0.8829665685,1.1259593459,0.2467289659,0.1929432618,,cuda,float32,280
-Chronos-2,autogluon/fev_datasets,ETT_1W,13,5,-65,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1W,2.3200722308,0.0,0.413536269,f285b410fbbb9427,False,0.7.0,2.3200722308,2.6985268972,0.5228870836,0.4180629794,,cuda,float32,70
-Chronos-2,autogluon/fev_datasets,LOOP_SEATTLE_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_1D,0.7791980564000001,0.0,1.931354007,02d7b9f04d1c3187,False,0.7.0,0.7791980564000001,0.9599506578,0.0363369958,0.0294338099,,cuda,float32,3230
-Chronos-2,autogluon/fev_datasets,LOOP_SEATTLE_1H,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_1H,0.6390561899,0.0,37.031710666,08811ee17f93df42,False,0.7.0,0.6390561899,0.7939256021000001,0.0681990332,0.0547949407,,cuda,float32,3230
-Chronos-2,autogluon/fev_datasets,LOOP_SEATTLE_5T,288,10,-2880,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_5T,0.5325340237,0.0,40.187540223,c2739a4b195beef3,False,0.7.0,0.5325340237,0.6812013944,0.0736883423,0.0574848175,,cuda,float32,3230
-Chronos-2,autogluon/fev_datasets,M_DENSE_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],M_DENSE_1D,0.6463243558,0.0,0.554261577,12417cabd3e820d7,False,0.7.0,0.6463243558,0.7721472947,0.083318119,0.0712116931,,cuda,float32,300
-Chronos-2,autogluon/fev_datasets,M_DENSE_1H,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],M_DENSE_1H,0.5854558830000001,0.0,3.7869341,e973593b94c21fa6,False,0.7.0,0.5854558830000001,0.7132003566,0.1462710002,0.1198308475,,cuda,float32,300
-Chronos-2,autogluon/fev_datasets,SZ_TAXI_15T,96,10,-960,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],SZ_TAXI_15T,0.3932968835,0.0,5.6139798370000005,3e6f0d3380ac07cc,False,0.7.0,0.3932968835,0.4999875762,0.2391328625,0.1878149403,,cuda,float32,1560
-Chronos-2,autogluon/fev_datasets,SZ_TAXI_1H,168,2,-336,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],SZ_TAXI_1H,0.3977234578,0.0,0.548545775,7c28d9c08a8a99d2,False,0.7.0,0.3977234578,0.4878765611,0.1627460048,0.1329118955,,cuda,float32,312
-Chronos-2,autogluon/fev_datasets,australian_tourism,8,2,-16,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],australian_tourism,0.6769555487000001,0.0,0.302138557,e3e704ef830bb1f4,False,0.7.0,0.6769555487000001,0.8548582992,0.0905689129,0.0714093581,,cuda,float32,178
-Chronos-2,autogluon/fev_datasets,bizitobs_l2c_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_2', 'target_3', 'target_4', 'target_5', 'target_6']",,[],[],[],bizitobs_l2c_1H,0.3010456253,0.0,0.8303145030000001,fd3fb3349ee15a22,False,0.7.0,0.3010456253,0.3841207818,0.3308650646,0.2574968709,,cuda,float32,140
-Chronos-2,autogluon/fev_datasets,bizitobs_l2c_5T,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_2', 'target_3', 'target_4', 'target_5', 'target_6']",,[],[],[],bizitobs_l2c_5T,0.4108408982,0.0,2.052028418,9cb515b57514a9ab,False,0.7.0,0.4108408982,0.5169197944,0.4957355787,0.3972980474,,cuda,float32,140
-Chronos-2,autogluon/fev_datasets,boomlet_1062,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1062,0.5523284751,0.0,5.359940552,850914278ff7292f,False,0.7.0,0.5523284751,0.6776940987,0.5680818423,0.4575715706,,cuda,float32,420
-Chronos-2,autogluon/fev_datasets,boomlet_1209,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1209,0.6799099954000001,0.0,12.842733295,fc732419f4257b0c,False,0.7.0,0.6799099954000001,0.7987706683,0.3048900987,0.2624618736,,cuda,float32,1060
-Chronos-2,autogluon/fev_datasets,boomlet_1225,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1225,0.1864128972,0.0,11.52890638,e054f8c6bf020ac0,False,0.7.0,0.1864128972,0.2322508868,0.1220172782,0.0982049927,,cuda,float32,980
-Chronos-2,autogluon/fev_datasets,boomlet_1230,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1230,1.201031991,0.0,5.809436434,c41ee8e342ded50d,False,0.7.0,1.201031991,1.3704917157,0.3054680901,0.2619779044,,cuda,float32,460
-Chronos-2,autogluon/fev_datasets,boomlet_1282,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1282,0.4211360586,0.0,8.253764181,b18492522498bc96,False,0.7.0,0.4211360586,0.5228616907,0.3551724804,0.285764271,,cuda,float32,700
-Chronos-2,autogluon/fev_datasets,boomlet_1487,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1487,0.4233194118,0.0,13.181763645,6e70705aa0d5c9b6,False,0.7.0,0.4233194118,0.5106600397000001,0.2009541891,0.1664420374,,cuda,float32,1080
-Chronos-2,autogluon/fev_datasets,boomlet_1631,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1631,0.5718706997,0.0,9.49591573,79eaf83557e2eeb4,False,0.7.0,0.5718706997,0.7130379666000001,0.3118222283,0.2500221983,,cuda,float32,800
-Chronos-2,autogluon/fev_datasets,boomlet_1676,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_75', 'target_76', 'target_77', 'target_78', 'target_79', 'target_8', 'target_80', 'target_81', 'target_82', 'target_83', 'target_84', 'target_85', 'target_86', 'target_87', 'target_88', 'target_89', 'target_9', 'target_90', 'target_91', 'target_92', 'target_93', 'target_94', 'target_95', 'target_96', 'target_97', 'target_98', 'target_99']",,[],[],[],boomlet_1676,0.5686748679,0.0,23.708879005,083dfc140fd4b463,False,0.7.0,0.5686748679,0.7074172167,0.3237391089,0.2538630455,,cuda,float32,2000
-Chronos-2,autogluon/fev_datasets,boomlet_1855,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1855,0.4615736804,0.0,7.179643713,3b655e92786b24dc,False,0.7.0,0.4615736804,0.5381849547,0.1587321378,0.1371847144,,cuda,float32,1040
-Chronos-2,autogluon/fev_datasets,boomlet_1975,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_8', 'target_9']",,[],[],[],boomlet_1975,0.1333320334,0.0,10.208273635,6e1d9424c5ab2214,False,0.7.0,0.1333320334,0.1607432077,0.0905538287,0.0754861445,,cuda,float32,1500
-Chronos-2,autogluon/fev_datasets,boomlet_2187,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_75', 'target_76', 'target_77', 'target_78', 'target_79', 'target_8', 'target_80', 'target_81', 'target_82', 'target_83', 'target_84', 'target_85', 'target_86', 'target_87', 'target_88', 'target_89', 'target_9', 'target_90', 'target_91', 'target_92', 'target_93', 'target_94', 'target_95', 'target_96', 'target_97', 'target_98', 'target_99']",,[],[],[],boomlet_2187,0.7122729535,0.0,13.785526383,c858af6e090b65d2,False,0.7.0,0.7122729535,0.8118519659000001,0.2656522618,0.2318940214,,cuda,float32,2000
-Chronos-2,autogluon/fev_datasets,boomlet_285,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_8', 'target_9']",,[],[],[],boomlet_285,0.2900640673,0.0,17.621426488,51287a29c5959696,False,0.7.0,0.2900640673,0.3587658623,0.1637453323,0.1346407886,,cuda,float32,1500
-Chronos-2,autogluon/fev_datasets,boomlet_619,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_619,0.3232653903,0.0,12.391470646,2d774f07b3096707,False,0.7.0,0.3232653903,0.4234249126,0.2998264354,0.2302330542,,cuda,float32,1040
-Chronos-2,autogluon/fev_datasets,boomlet_772,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_772,0.2827797609,0.0,15.792560741,cf7b0f7fe86838d5,False,0.7.0,0.2827797609,0.331309455,0.1571995002,0.133101379,,cuda,float32,1340
-Chronos-2,autogluon/fev_datasets,boomlet_963,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_963,0.7165952965,0.0,6.770158875,078a1fcb7a454b72,False,0.7.0,0.7165952965,0.8390323132,0.3817032517,0.3166849574,,cuda,float32,560
-Chronos-2,autogluon/fev_datasets,ecdc_ili,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ecdc_ili,2.2713937157,0.0,0.50251728,c812e2dbfb11b987,False,0.7.0,2.2713937157,2.7551221016,0.3759767271,0.3096012701,,cuda,float32,240
-Chronos-2,autogluon/fev_datasets,entsoe_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_15T,0.4539692649,0.0,6.155504059,4e80c208c8b54e76,False,0.7.0,0.4539692649,0.5846139379,0.04219648,0.0332921944,,cuda,float32,120
-Chronos-2,autogluon/fev_datasets,entsoe_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_1H,0.4292730862,0.0,5.979634896,a900217b9207dc1a,False,0.7.0,0.4292730862,0.5379602554,0.0329469333,0.0261903902,,cuda,float32,120
-Chronos-2,autogluon/fev_datasets,entsoe_30T,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_30T,0.4335549531,0.0,5.944519921,7a3623a47fa39853,False,0.7.0,0.4335549531,0.54381558,0.0367303018,0.0290675118,,cuda,float32,120
-Chronos-2,autogluon/fev_datasets,epf_be,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Generation forecast', 'System load forecast']",[],[],epf_be,0.5032959121,0.0,1.082599386,fef9300bbbbc0b06,False,0.7.0,0.5032959121,0.6470253268,0.115556011,0.0901568527,,cuda,float32,20
-Chronos-2,autogluon/fev_datasets,epf_de,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Ampirion Load Forecast', 'PV+Wind Forecast']",[],[],epf_de,0.491116807,0.0,1.081831324,b0b822e47c7608d3,False,0.7.0,0.491116807,0.6042262072,0.291016907,0.2407177006,,cuda,float32,20
-Chronos-2,autogluon/fev_datasets,epf_fr,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Generation forecast', 'System load forecast']",[],[],epf_fr,0.3617711398,0.0,1.083441916,8f5f11f4c654e31f,False,0.7.0,0.3617711398,0.4500649094,0.0680296275,0.0548184758,,cuda,float32,20
-Chronos-2,autogluon/fev_datasets,epf_np,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Grid load forecast', 'Wind power forecast']",[],[],epf_np,0.6581144952,0.0,1.087317323,269b47960e0cd2ad,False,0.7.0,0.6581144952,0.8501928867,0.0381853723,0.0297236562,,cuda,float32,20
-Chronos-2,autogluon/fev_datasets,epf_pjm,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['System load forecast', 'Zonal COMED load foecast']",[],[],epf_pjm,0.3815757864,0.0,1.082211405,7087b94a370e1baa,False,0.7.0,0.3815757864,0.4718977319,0.0821098361,0.0667749027,,cuda,float32,20
-Chronos-2,autogluon/fev_datasets,ercot_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1D,0.8691910278,0.0,1.732711958,2d6981ffddeb4d36,False,0.7.0,0.8691910278,1.1382701719,0.0765202672,0.059742223,,cuda,float32,160
-Chronos-2,autogluon/fev_datasets,ercot_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1H,1.0291210659,0.0,2.206284104,ea7c064764004599,False,0.7.0,1.0291210659,1.3575339606,0.0691227315,0.0517757176,,cuda,float32,160
-Chronos-2,autogluon/fev_datasets,ercot_1M,12,15,-180,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1M,0.7549419478,0.0,0.655916752,3b442c044564a810,False,0.7.0,0.7549419478,0.9503422041,0.0474946219,0.0374032877,,cuda,float32,120
-Chronos-2,autogluon/fev_datasets,ercot_1W,13,20,-260,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1W,0.9664287997,0.0,0.763102481,17d56f9cde303936,False,0.7.0,0.9664287997,1.2194616983,0.0589590463,0.0461530362,,cuda,float32,160
-Chronos-2,autogluon/fev_datasets,favorita_stores_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'onpromotion']",['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1D,0.9164120516,0.0,214.025029556,7c6ded4c862d08bd,False,0.7.0,0.9164120516,1.1401981382,0.1382725313,0.1111436042,,cuda,float32,15790
-Chronos-2,autogluon/fev_datasets,favorita_stores_1M,12,2,-24,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,['onpromotion'],['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1M,1.7943754897000002,0.0,2.739730499,90adf27f0175f9ae,False,0.7.0,1.7943754897000002,1.9751999633,0.1303168371,0.1214689688,,cuda,float32,3158
-Chronos-2,autogluon/fev_datasets,favorita_stores_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,['onpromotion'],['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1W,2.0241017868,0.0,17.016479843,1cf7145738b8996c,False,0.7.0,2.0241017868,2.2987283752,0.1289288979,0.1088586482,,cuda,float32,15790
-Chronos-2,autogluon/fev_datasets,favorita_transactions_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,['holiday'],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1D,0.684612804,0.0,6.027698108,93e47f4edb5bcbe1,False,0.7.0,0.684612804,0.8493705653,0.0611646173,0.0493905059,,cuda,float32,510
-Chronos-2,autogluon/fev_datasets,favorita_transactions_1M,12,2,-24,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,[],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1M,0.9426020865,0.0,0.39258552,6f7b1122146e5d93,False,0.7.0,0.9426020865,1.2531106718,0.0719262234,0.0604582892,,cuda,float32,102
-Chronos-2,autogluon/fev_datasets,favorita_transactions_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,[],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1W,1.2279251974,0.0,0.887638111,19b5577b63233e9d,False,0.7.0,1.2279251974,1.498824744,0.0562127232,0.0471234517,,cuda,float32,510
-Chronos-2,autogluon/fev_datasets,fred_md_2025,12,20,-240,12,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['CPIAUCSL', 'FEDFUNDS', 'PAYEMS']",,[],"['M2REAL', 'NONBORRES', 'PPICMM', 'TOTRESNS']",[],fred_md_2025/cee,3.4681773516,0.0,0.750086279,764e9294023ee081,False,0.7.0,3.4681773516,4.1602404727,0.0808948604,0.0668234172,,cuda,float32,60
-Chronos-2,autogluon/fev_datasets,fred_md_2025,12,20,-240,12,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['AAA', 'AWHMAN', 'BAA', 'BUSINVx', 'CPIAUCSL', 'CPIMEDSL', 'CUMFNS', 'DMANEMP', 'EXUSUKx', 'FEDFUNDS', 'GS1', 'GS10', 'GS5', 'HOUST', 'INDPRO', 'INVEST', 'IPBUSEQ', 'IPCONGD', 'IPDCONGD', 'IPDMAT', 'IPFINAL', 'IPMANSICS', 'IPMAT', 'IPNCONGD', 'IPNMAT', 'M2REAL', 'MANEMP', 'NDMANEMP', 'NONBORRES', 'PAYEMS', 'PERMIT', 'PPICMM', 'S&P 500', 'SRVPRD', 'TB3MS', 'TB6MS', 'TOTRESNS', 'UEMP15T26', 'UEMP27OV', 'UEMP5TO14', 'UEMPLT5', 'UEMPMEAN', 'UMCSENTx', 'UNRATE', 'USCONS', 'USFIRE', 'USGOOD', 'USGOVT', 'USTPU', 'USTRADE', 'VIXCLSx']",,[],[],[],fred_md_2025/macro,5.6801712856,0.0,1.282049092,764e9294023ee081,False,0.7.0,5.6801712856,6.7212231389,0.0797789855,0.0658449,,cuda,float32,1020
-Chronos-2,autogluon/fev_datasets,fred_qd_2025,8,20,-160,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['CPIAUCSL', 'FEDFUNDS', 'PAYEMS']",,[],"['M2REAL', 'NONBORRES', 'PPICMM', 'TOTRESNS']",[],fred_qd_2025/cee,2.1919917498,0.0,0.741199512,d257091c861020bf,False,0.7.0,2.1919917498,2.7861575553,0.1657290639,0.13493629,,cuda,float32,60
-Chronos-2,autogluon/fev_datasets,fred_qd_2025,8,20,-160,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['AAA', 'AWHMAN', 'BAA', 'BUSINVx', 'CPIAUCSL', 'CPIMEDSL', 'CUMFNS', 'DMANEMP', 'EXUSUKx', 'FEDFUNDS', 'GS1', 'GS10', 'GS5', 'HOUST', 'INDPRO', 'INVEST', 'IPBUSEQ', 'IPCONGD', 'IPDCONGD', 'IPDMAT', 'IPFINAL', 'IPMANSICS', 'IPMAT', 'IPNCONGD', 'IPNMAT', 'M2REAL', 'MANEMP', 'NDMANEMP', 'NONBORRES', 'PAYEMS', 'PERMIT', 'PPICMM', 'S&P 500', 'SRVPRD', 'TB3MS', 'TB6MS', 'TOTRESNS', 'UEMP15T26', 'UEMP27OV', 'UEMP5TO14', 'UEMPLT5', 'UEMPMEAN', 'UMCSENTx', 'UNRATE', 'USCONS', 'USFIRE', 'USGOOD', 'USGOVT', 'USTPU', 'USTRADE', 'VIXCLSx']",,[],[],[],fred_qd_2025/macro,3.5367304504,0.0,0.7202757230000001,d257091c861020bf,False,0.7.0,3.5367304504,4.2345766276,0.1070199647,0.0877492891,,cuda,float32,1020
-Chronos-2,autogluon/fev_datasets,gvar,8,10,-80,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['Dp', 'ep', 'eq', 'lr', 'r', 'y']",,[],"['pmat', 'pmetal', 'poil']",[],gvar,0.5781460056000001,0.0,1.129419703,f9353d7e5df197ee,False,0.7.0,0.5781460056000001,0.7105251308,0.0184834703,0.0149820687,,cuda,float32,1980
-Chronos-2,autogluon/fev_datasets,hermes,52,1,-52,52,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['external'],[],"['category', 'country']",hermes,0.6092189134,0.0,10.230260577,e1d9809dc251e19b,False,0.7.0,0.6092189134,0.7761148416,0.0028845992,0.00225818,,cuda,float32,10000
-Chronos-2,autogluon/fev_datasets,hierarchical_sales_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hierarchical_sales_1D,0.5567377231,0.0,3.063961534,0ecbb4076fd5ba78,False,0.7.0,0.5567377231,0.6889480283,0.7004947938,0.5714809959,,cuda,float32,1180
-Chronos-2,autogluon/fev_datasets,hierarchical_sales_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hierarchical_sales_1W,0.6161304379,0.0,0.904692556,691bd281f0ad7adc,False,0.7.0,0.6161304379,0.7539268543000001,0.4327760933,0.3648561995,,cuda,float32,1180
-Chronos-2,autogluon/fev_datasets,hospital,12,4,-48,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital,0.6860471169,0.0,1.182085063,9c6e8721c2eca10b,False,0.7.0,0.6860471169,0.8734575212000001,0.0955333467,0.0748078224,,cuda,float32,3068
-Chronos-2,autogluon/fev_datasets,hospital_admissions_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital_admissions_1D,0.5544475609,0.0,0.7830635300000001,88f43f9f6a96b4f3,False,0.7.0,0.5544475609,0.7170504383,0.5318945219,0.4112482571,,cuda,float32,160
-Chronos-2,autogluon/fev_datasets,hospital_admissions_1W,13,16,-208,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital_admissions_1W,0.5763906233,0.0,0.6688935810000001,70ba34804e0de04d,False,0.7.0,0.5763906233,0.7508052527,0.2115394616,0.1624167729,,cuda,float32,128
-Chronos-2,autogluon/fev_datasets,jena_weather_10T,144,20,-2880,144,1,,144,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_10T,0.3543287448,0.0,5.334178071,311a660faf591409,False,0.7.0,0.3543287448,0.4309090154,0.2751553475,0.2528507588,,cuda,float32,420
-Chronos-2,autogluon/fev_datasets,jena_weather_1D,28,11,-308,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_1D,1.1112540398,0.0,0.505430483,81a9d748210aa612,False,0.7.0,1.1112540398,1.4035573159,0.2763651402,0.2257062563,,cuda,float32,231
-Chronos-2,autogluon/fev_datasets,jena_weather_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_1H,0.3530166989,0.0,5.231668932,8eb1d310607e8fee,False,0.7.0,0.3530166989,0.4373910122,0.2537129335,0.2250019598,,cuda,float32,420
-Chronos-2,autogluon/fev_datasets,kdd_cup_2022_10T,288,10,-2880,288,1,,144,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_10T,0.4250790923,0.0,164.082725564,571bae673e4dccdd,False,0.7.0,0.4250790923,0.5199208546,1.3604878279,1.2012688912,,cuda,float32,1340
-Chronos-2,autogluon/fev_datasets,kdd_cup_2022_1D,14,10,-140,14,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_1D,0.703502155,0.0,4.819452862,739c6625d30e6169,False,0.7.0,0.703502155,0.8993091785,0.7152167839,0.5599962195,,cuda,float32,1340
-Chronos-2,autogluon/fev_datasets,kdd_cup_2022_30T,96,10,-960,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_30T,0.4388772718,0.0,161.575712623,bf18bd35bb0df915,False,0.7.0,0.4388772718,0.5419430891,1.5203947999,1.3117733464,,cuda,float32,1340
-Chronos-2,autogluon/fev_datasets,m5_1D,28,1,-28,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1D,0.7216368132000001,0.0,1335.075510276,f11a35ff7f7adf0e,False,0.7.0,0.7216368132000001,0.8798761359,0.7030550556,0.5553520672,,cuda,float32,30490
-Chronos-2,autogluon/fev_datasets,m5_1M,12,1,-12,12,6,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1M,0.9769838168,0.0,61.000184285,5d40840afc423bdf,False,0.7.0,0.9769838168,1.1638225815,0.4288781907,0.3477280433,,cuda,float32,29364
-Chronos-2,autogluon/fev_datasets,m5_1W,13,1,-13,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1W,0.9001918553,0.0,123.784906545,8d7cc2396f52bcbc,False,0.7.0,0.9001918553,1.1400355515,0.4283166904,0.3375480209,,cuda,float32,30490
-Chronos-2,autogluon/fev_datasets,proenfo_gfc12,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc12,0.6485047492,0.0,2.905235514,7c9ee0786e7de9fc,False,0.7.0,0.6485047492,0.8120010668000001,0.069590554,0.0555966972,,cuda,float32,110
-Chronos-2,autogluon/fev_datasets,proenfo_gfc14,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc14,0.4301437324,0.0,0.856846694,eb4b54a1ec3114bf,False,0.7.0,0.4301437324,0.5386864242,0.0263798704,0.0210605929,,cuda,float32,20
-Chronos-2,autogluon/fev_datasets,proenfo_gfc17,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc17,0.4848892231,0.0,3.996093108,2c63b48ca8f6dd9a,False,0.7.0,0.4848892231,0.6103924746,0.0395739348,0.0315349159,,cuda,float32,160
-Chronos-2,autogluon/fev_datasets,redset_15T,96,10,-960,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_15T,0.7901010349,0.0,15.017539039,391e616eee276356,False,0.7.0,0.7901010349,0.9320904759,0.2581138326,0.2174028756,,cuda,float32,1260
-Chronos-2,autogluon/fev_datasets,redset_1H,24,10,-240,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_1H,1.3653252295,0.0,4.239772629,a7542f5bcc8cf4ab,False,0.7.0,1.3653252295,1.5030009285,0.2086091326,0.1754538486,,cuda,float32,1380
-Chronos-2,autogluon/fev_datasets,redset_5T,288,10,-2880,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_5T,0.6541973572,0.0,14.613528496,4776bd88b54d8a04,False,0.7.0,0.6541973572,0.7864618392,0.329381554,0.2706931879,,cuda,float32,1180
-Chronos-2,autogluon/fev_datasets,restaurant,28,8,-224,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],"['air_area_name', 'air_genre_name', 'latitude', 'longitude']",restaurant,0.6853328207,0.0,4.713149695,cc84996f184fc2f6,False,0.7.0,0.6853328207,0.8599090122,0.3583806779,0.2820261405,,cuda,float32,6502
-Chronos-2,autogluon/fev_datasets,rohlik_orders_1D,61,5,2023-05-01T00:00:00,61,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,orders,,"['holiday', 'school_holidays', 'shops_closed', 'winter_school_holidays']","['blackout', 'frankfurt_shutdown', 'mini_shutdown', 'mov_change', 'precipitation', 'shutdown', 'snow', 'user_activity_1', 'user_activity_2']",[],rohlik_orders_1D,0.9592108487,0.0,0.945095816,1774b84125cff789,False,0.7.0,0.9592108487,1.1869082024,0.0560522973,0.0453576139,,cuda,float32,35
-Chronos-2,autogluon/fev_datasets,rohlik_orders_1W,8,5,2023-05-01T00:00:00,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,orders,,"['holiday', 'school_holidays', 'shops_closed', 'winter_school_holidays']","['blackout', 'frankfurt_shutdown', 'mini_shutdown', 'mov_change', 'precipitation', 'shutdown', 'snow', 'user_activity_1', 'user_activity_2']",[],rohlik_orders_1W,1.2996633839,0.0,0.390706689,bbb0372c6d5883ab,False,0.7.0,1.2996633839,1.5470873451,0.0503461548,0.0419834037,,cuda,float32,35
-Chronos-2,autogluon/fev_datasets,rohlik_sales_1D,14,1,2023-12-15T00:00:00,14,14,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'school_holidays', 'sell_price_main', 'shops_closed', 'total_orders', 'type_0_discount', 'type_1_discount', 'type_2_discount', 'type_3_discount', 'type_4_discount', 'type_5_discount', 'type_6_discount', 'winter_school_holidays']",['availability'],"['L1_category_name_en', 'L2_category_name_en', 'L3_category_name_en', 'L4_category_name_en', 'name', 'product_unique_id', 'warehouse']",rohlik_sales_1D,0.8807894575,0.0,103.754533615,c475daf9af96ed16,False,0.7.0,0.8807894575,1.1015615422,0.2762769232,0.2203668339,,cuda,float32,4116
-Chronos-2,autogluon/fev_datasets,rohlik_sales_1W,8,1,2023-12-15T00:00:00,8,8,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'school_holidays', 'sell_price_main', 'shops_closed', 'total_orders', 'type_0_discount', 'type_1_discount', 'type_2_discount', 'type_3_discount', 'type_4_discount', 'type_5_discount', 'type_6_discount', 'winter_school_holidays']",['availability'],"['L1_category_name_en', 'L2_category_name_en', 'L3_category_name_en', 'L4_category_name_en', 'name', 'product_unique_id', 'warehouse']",rohlik_sales_1W,1.2741411479,0.0,20.656814622,09041d7a8a29c83f,False,0.7.0,1.2741411479,1.559672095,0.2291194974,0.1860678419,,cuda,float32,3942
-Chronos-2,autogluon/fev_datasets,rossmann_1D,48,10,-480,48,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Sales,,"['DayOfWeek', 'Open', 'Promo', 'SchoolHoliday', 'StateHoliday']",['Customers'],"['Assortment', 'CompetitionDistance', 'CompetitionOpenSinceMonth', 'CompetitionOpenSinceYear', 'Promo2', 'Promo2SinceWeek', 'Promo2SinceYear', 'PromoInterval', 'Store', 'StoreType']",rossmann_1D,0.2834680757,0.0,99.619566863,29ae5d8fec87a1fd,False,0.7.0,0.2834680757,0.3557646389,0.1197795045,0.0954525644,,cuda,float32,11150
-Chronos-2,autogluon/fev_datasets,rossmann_1W,13,8,-104,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Sales,,"['Open', 'Promo', 'SchoolHoliday', 'StateHoliday']",['Customers'],"['Assortment', 'CompetitionDistance', 'CompetitionOpenSinceMonth', 'CompetitionOpenSinceYear', 'Promo2', 'Promo2SinceWeek', 'Promo2SinceYear', 'PromoInterval', 'Store', 'StoreType']",rossmann_1W,0.3076934923,0.0,13.481720119,cfc14443664745b2,False,0.7.0,0.3076934923,0.3711869984,0.0964419945,0.080244381,,cuda,float32,8920
-Chronos-2,autogluon/fev_datasets,solar_1D,28,10,-280,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],solar_1D,0.5935714274,0.0,0.97042449,4a9fb28f2a62f798,False,0.7.0,0.5935714274,0.7564704559000001,0.2379390135,0.1855480723,,cuda,float32,1370
-Chronos-2,autogluon/fev_datasets,solar_1W,13,1,-13,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],solar_1W,0.8952785596,0.0,0.300121023,856de5fa702db186,False,0.7.0,0.8952785596,1.1789596563,0.200119924,0.1513635002,,cuda,float32,137
-Chronos-2,autogluon/fev_datasets,solar_with_weather_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['day_length', 'humidity', 'pressure', 'rain_1h', 'snow_1h', 'temp', 'wind_speed']","['clouds_all', 'global_horizontal_irradiance']",[],solar_with_weather_15T,0.6769263050000001,0.0,2.718968781,0b6d5a3c52af6282,False,0.7.0,0.6769263050000001,0.8640995981,1.1523838522,0.9550527662,,cuda,float32,20
-Chronos-2,autogluon/fev_datasets,solar_with_weather_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['day_length', 'humidity', 'pressure', 'rain_1h', 'snow_1h', 'temp', 'wind_speed']","['clouds_all', 'global_horizontal_irradiance']",[],solar_with_weather_1H,0.7672846795,0.0,2.670729875,1ae39ff7d1aba62c,False,0.7.0,0.7672846795,1.0201461351,1.2584228755,0.9780600605,,cuda,float32,20
-Chronos-2,autogluon/fev_datasets,uci_air_quality_1D,28,11,-308,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['C6H6(GT)', 'CO(GT)', 'NO2(GT)', 'NOx(GT)']",,"['AH', 'RH', 'T']",[],[],uci_air_quality_1D,1.0461165946,0.0,0.537146961,2ef57ff0fd03a862,False,0.7.0,1.0461165946,1.3132142732,0.2703591673,0.2146017853,,cuda,float32,44
-Chronos-2,autogluon/fev_datasets,uci_air_quality_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['C6H6(GT)', 'CO(GT)', 'NO2(GT)', 'NOx(GT)']",,"['AH', 'RH', 'T']",[],[],uci_air_quality_1H,0.7983040373,0.0,1.875038402,031d3ed27aba2c43,False,0.7.0,0.7983040373,1.020596853,0.3364187018,0.2626699164,,cuda,float32,80
-Chronos-2,autogluon/fev_datasets,uk_covid_nation_1D,28,20,-560,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['cumulative_admissions', 'cumulative_cases', 'cumulative_deaths']",,[],"['cumulative_vaccinated_1', 'cumulative_vaccinated_2', 'cumulative_vaccinated_3', 'hospital_cases', 'icu_ventilator_occupancy']",[],uk_covid_nation_1D/cumulative,7.8258561455,0.0,0.810235354,dae0212e3fa73904,False,0.7.0,7.8258561455,9.4466999399,0.0188431325,0.0161921461,,cuda,float32,240
-Chronos-2,autogluon/fev_datasets,uk_covid_nation_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['new_admissions', 'new_cases', 'new_deaths']",,[],"['hospital_cases', 'icu_ventilator_occupancy', 'new_vaccinated_1', 'new_vaccinated_2', 'new_vaccinated_3']",[],uk_covid_nation_1D/new,2.0372645497,0.0,0.807997676,dae0212e3fa73904,False,0.7.0,2.0372645497,2.5004449026,0.4026392659,0.3207938336,,cuda,float32,240
-Chronos-2,autogluon/fev_datasets,uk_covid_nation_1W,8,4,-32,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['cumulative_admissions', 'cumulative_cases', 'cumulative_deaths']",,[],"['cumulative_vaccinated_1', 'cumulative_vaccinated_2', 'cumulative_vaccinated_3', 'hospital_cases', 'icu_ventilator_occupancy']",[],uk_covid_nation_1W/cumulative,2.7834425279,0.0,0.34215162,c1544674699f895d,False,0.7.0,2.7834425279,3.5475305311,0.0279646563,0.0231629073,,cuda,float32,48
-Chronos-2,autogluon/fev_datasets,uk_covid_nation_1W,8,4,-32,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['new_admissions', 'new_cases', 'new_deaths']",,[],"['hospital_cases', 'icu_ventilator_occupancy', 'new_vaccinated_1', 'new_vaccinated_2', 'new_vaccinated_3']",[],uk_covid_nation_1W/new,4.9682123605,0.0,0.340204376,c1544674699f895d,False,0.7.0,4.9682123605,6.2817282977,0.7566532683,0.5773892559,,cuda,float32,48
-Chronos-2,autogluon/fev_datasets,uk_covid_utla_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,new_cases,,[],[],[],uk_covid_utla_1D/new,3.7252347533,0.0,2.473749394,2f859aada4961893,False,0.7.0,3.7252347533,4.5459837539,0.4765254823,0.3910187444,,cuda,float32,2140
-Chronos-2,autogluon/fev_datasets,uk_covid_utla_1W,13,5,-65,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,cumulative_cases,,[],[],[],uk_covid_utla_1W/cumulative,17.4422360824,0.0,0.73376937,35d7c01fd444e4fd,False,0.7.0,17.4422360824,19.8762832276,0.1985057108,0.171083851,,cuda,float32,1070
-Chronos-2,autogluon/fev_datasets,us_consumption_1M,12,10,-120,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1M,1.4636824416,0.0,0.60786955,03c47cb66fc4f105,False,0.7.0,1.4636824416,1.7363781866,0.0221474791,0.0197271574,,cuda,float32,310
-Chronos-2,autogluon/fev_datasets,us_consumption_1Q,8,10,-80,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1Q,1.7235145142,0.0,0.5001301850000001,91f975812d53dcb0,False,0.7.0,1.7235145142,2.164693101,0.0334895582,0.0274404827,,cuda,float32,310
-Chronos-2,autogluon/fev_datasets,us_consumption_1Y,5,10,-50,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1Y,3.7304723943,0.0,0.496727998,941764347d4458f0,False,0.7.0,3.7304723943,4.5651596428,0.0613212118,0.0498855623,,cuda,float32,310
-Chronos-2,autogluon/fev_datasets,walmart,39,1,-39,39,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['CPI', 'Fuel_Price', 'IsHoliday', 'MarkDown1', 'MarkDown2', 'MarkDown3', 'MarkDown4', 'MarkDown5', 'Temperature', 'Unemployment']",[],"['Dept', 'Size', 'Store', 'Type']",walmart,0.6478016424,0.0,9.676043143,c55b4fd4c5773129,False,0.7.0,0.6478016424,0.8167399684000001,0.0933870797,0.0739271753,,cuda,float32,2936
-Chronos-2,autogluon/fev_datasets,world_co2_emissions,5,9,-45,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_co2_emissions,2.6702032562,0.0,0.794476625,e202df7b6b66eec1,False,0.7.0,2.6702032562,3.253441165,0.0894456842,0.0729773107,,cuda,float32,1719
-Chronos-2,autogluon/fev_datasets,world_life_expectancy,5,10,-50,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_life_expectancy,1.186574759,0.0,1.095390946,fa80fb81a8121b97,False,0.7.0,1.186574759,1.4501894619,0.01166582,0.0095948732,,cuda,float32,2370
-Chronos-2,autogluon/fev_datasets,world_tourism,5,2,-10,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_tourism,3.0519541233,0.0,0.362146038,0dbaf8acdb03871f,False,0.7.0,3.0519541233,3.7800260773,0.1209655751,0.0908975711,,cuda,float32,356
-Chronos-Bolt,autogluon/fev_datasets,ETT_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_15T,0.5737369405,0.0,1.543872049,9f6541408f56392f,False,0.7.0,0.5737369405,0.7033446670000001,0.1146202493,0.0933383153,,cuda,bfloat16,280
-Chronos-Bolt,autogluon/fev_datasets,ETT_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1D,1.1321824157,0.0,0.966285586,ff06ef09d043bd73,False,0.7.0,1.1321824157,1.3461045465,0.3275848009,0.2669855109,,cuda,bfloat16,280
-Chronos-Bolt,autogluon/fev_datasets,ETT_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1H,0.9435863248,0.0,2.108095705,1051fcbf7ab489b5,False,0.7.0,0.9435863248,1.126722477,0.2464663107,0.2059476241,,cuda,bfloat16,280
-Chronos-Bolt,autogluon/fev_datasets,ETT_1W,13,5,-65,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1W,2.2795034775,0.0,0.48863731,f7babcd132f54bf3,False,0.7.0,2.2795034775,2.6260535479,0.4599850744,0.3737931634,,cuda,bfloat16,70
-Chronos-Bolt,autogluon/fev_datasets,LOOP_SEATTLE_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_1D,0.8051325971000001,0.0,1.011269526,02d7b9f04d1c3187,False,0.7.0,0.8051325971000001,0.9859320366,0.0373221384,0.0304002738,,cuda,bfloat16,3230
-Chronos-Bolt,autogluon/fev_datasets,LOOP_SEATTLE_1H,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_1H,0.7646847805,0.0,10.064288414,08811ee17f93df42,False,0.7.0,0.7646847805,0.9188719391,0.0797934189,0.0662523771,,cuda,bfloat16,3230
-Chronos-Bolt,autogluon/fev_datasets,LOOP_SEATTLE_5T,288,10,-2880,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_5T,0.7101241523,0.0,17.011693471,c2739a4b195beef3,False,0.7.0,0.7101241523,0.8058940043,0.0886344958,0.0781392419,,cuda,bfloat16,3230
-Chronos-Bolt,autogluon/fev_datasets,M_DENSE_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],M_DENSE_1D,0.7589658968,0.0,0.645907619,12417cabd3e820d7,False,0.7.0,0.7589658968,0.9249126529,0.0985291574,0.0817335467,,cuda,bfloat16,300
-Chronos-Bolt,autogluon/fev_datasets,M_DENSE_1H,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],M_DENSE_1H,0.5952543328000001,0.0,1.56669377,e973593b94c21fa6,False,0.7.0,0.5952543328000001,0.7173406545000001,0.1466876373,0.1209575592,,cuda,bfloat16,300
-Chronos-Bolt,autogluon/fev_datasets,SZ_TAXI_15T,96,10,-960,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],SZ_TAXI_15T,0.413175328,0.0,3.382320696,3e6f0d3380ac07cc,False,0.7.0,0.413175328,0.5100343925,0.2437216282,0.197437778,,cuda,bfloat16,1560
-Chronos-Bolt,autogluon/fev_datasets,SZ_TAXI_1H,168,2,-336,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],SZ_TAXI_1H,0.4264135301,0.0,0.608307017,7c28d9c08a8a99d2,False,0.7.0,0.4264135301,0.5054399823,0.1713460237,0.1447212932,,cuda,bfloat16,312
-Chronos-Bolt,autogluon/fev_datasets,australian_tourism,8,2,-16,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],australian_tourism,0.9282641589,0.0,0.398788738,e3e704ef830bb1f4,False,0.7.0,0.9282641589,1.167418807,0.1434193179,0.1140447009,,cuda,bfloat16,178
-Chronos-Bolt,autogluon/fev_datasets,bizitobs_l2c_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_2', 'target_3', 'target_4', 'target_5', 'target_6']",,[],[],[],bizitobs_l2c_1H,0.3419873985,0.0,0.901166637,fd3fb3349ee15a22,False,0.7.0,0.3419873985,0.4308821616,0.4081446098,0.3259227696,,cuda,bfloat16,140
-Chronos-Bolt,autogluon/fev_datasets,bizitobs_l2c_5T,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_2', 'target_3', 'target_4', 'target_5', 'target_6']",,[],[],[],bizitobs_l2c_5T,0.7570014323,0.0,3.131351941,9cb515b57514a9ab,False,0.7.0,0.7570014323,0.8001548681,1.3254390534,1.2750077013,,cuda,bfloat16,140
-Chronos-Bolt,autogluon/fev_datasets,boomlet_1062,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1062,0.6387175665,0.0,3.164868437,44381d6f431f8c90,False,0.7.0,0.6387175665,0.7110111948000001,0.6012691446,0.5409239931000001,,cuda,bfloat16,420
-Chronos-Bolt,autogluon/fev_datasets,boomlet_1209,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1209,0.7840808515000001,0.0,6.646797168,1466ee197c499055,False,0.7.0,0.7840808515000001,0.8460080897000001,0.3271624692,0.301826322,,cuda,bfloat16,1060
-Chronos-Bolt,autogluon/fev_datasets,boomlet_1225,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1225,0.2030750841,0.0,1.413893608,5d9eb3c2d9389376,False,0.7.0,0.2030750841,0.2540221924,0.1331294786,0.1066372427,,cuda,bfloat16,980
-Chronos-Bolt,autogluon/fev_datasets,boomlet_1230,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1230,1.266108854,0.0,3.154659847,034f57f6576437cc,False,0.7.0,1.266108854,1.347504774,0.3241073897,0.3010213735,,cuda,bfloat16,460
-Chronos-Bolt,autogluon/fev_datasets,boomlet_1282,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1282,0.461810646,0.0,1.241743579,de65600e18e27fe8,False,0.7.0,0.461810646,0.5646901456,0.3918061855,0.3174313196,,cuda,bfloat16,700
-Chronos-Bolt,autogluon/fev_datasets,boomlet_1487,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1487,0.4824435432,0.0,6.722739216,17003e37fda85cdd,False,0.7.0,0.4824435432,0.5268262285,0.2074861592,0.190011281,,cuda,bfloat16,1080
-Chronos-Bolt,autogluon/fev_datasets,boomlet_1631,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1631,0.6194052562,0.0,2.239007029,f5255f15ed8188ab,False,0.7.0,0.6194052562,0.7407561889000001,0.3246407648,0.2712471357,,cuda,bfloat16,800
-Chronos-Bolt,autogluon/fev_datasets,boomlet_1676,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_75', 'target_76', 'target_77', 'target_78', 'target_79', 'target_8', 'target_80', 'target_81', 'target_82', 'target_83', 'target_84', 'target_85', 'target_86', 'target_87', 'target_88', 'target_89', 'target_9', 'target_90', 'target_91', 'target_92', 'target_93', 'target_94', 'target_95', 'target_96', 'target_97', 'target_98', 'target_99']",,[],[],[],boomlet_1676,0.6076896737,0.0,4.393347816,20768bc9d5e316c5,False,0.7.0,0.6076896737,0.7192465308,0.3288848916,0.2757684538,,cuda,bfloat16,2000
-Chronos-Bolt,autogluon/fev_datasets,boomlet_1855,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1855,0.4695926826,0.0,1.500956744,ca3cf5b18a145f72,False,0.7.0,0.4695926826,0.5502545471,0.1634840172,0.1402605794,,cuda,bfloat16,1040
-Chronos-Bolt,autogluon/fev_datasets,boomlet_1975,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_8', 'target_9']",,[],[],[],boomlet_1975,0.1793929044,0.0,1.921599249,3d8d0f68506b1995,False,0.7.0,0.1793929044,0.2157351982,0.1244086675,0.1030843609,,cuda,bfloat16,1500
-Chronos-Bolt,autogluon/fev_datasets,boomlet_2187,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_75', 'target_76', 'target_77', 'target_78', 'target_79', 'target_8', 'target_80', 'target_81', 'target_82', 'target_83', 'target_84', 'target_85', 'target_86', 'target_87', 'target_88', 'target_89', 'target_9', 'target_90', 'target_91', 'target_92', 'target_93', 'target_94', 'target_95', 'target_96', 'target_97', 'target_98', 'target_99']",,[],[],[],boomlet_2187,0.7746853019000001,0.0,2.369803146,c3fe1a491401b248,False,0.7.0,0.7746853019000001,0.878419842,0.2890647493,0.2524757438,,cuda,bfloat16,2000
-Chronos-Bolt,autogluon/fev_datasets,boomlet_285,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_8', 'target_9']",,[],[],[],boomlet_285,0.476702899,0.0,1.938218418,3dfa571029207f1f,False,0.7.0,0.476702899,0.5250469024000001,0.2555644857,0.2234209762,,cuda,bfloat16,1500
-Chronos-Bolt,autogluon/fev_datasets,boomlet_619,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_619,0.4708614915,0.0,1.495809546,2d514811bddfc52d,False,0.7.0,0.4708614915,0.5940973904,0.4683247317,0.3764453393,,cuda,bfloat16,1040
-Chronos-Bolt,autogluon/fev_datasets,boomlet_772,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_772,0.3391929948,0.0,1.816961332,66ce5fbc5ad575a2,False,0.7.0,0.3391929948,0.3956163828,0.1845645847,0.155831971,,cuda,bfloat16,1340
-Chronos-Bolt,autogluon/fev_datasets,boomlet_963,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_963,0.7786787266,0.0,1.143769098,bd1c23c0fd1a748e,False,0.7.0,0.7786787266,0.8956312939000001,0.4316260388,0.3596501239,,cuda,bfloat16,560
-Chronos-Bolt,autogluon/fev_datasets,ecdc_ili,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ecdc_ili,2.6531174908,0.0,0.662689497,0c0a84fa1b54ac63,False,0.7.0,2.6531174908,3.1427261211,0.4956143111,0.4167010575,,cuda,bfloat16,240
-Chronos-Bolt,autogluon/fev_datasets,entsoe_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_15T,0.5061680935,0.0,1.5534665360000002,34c503cb4346b380,False,0.7.0,0.5061680935,0.6061735307,0.0428303072,0.0362665583,,cuda,bfloat16,120
-Chronos-Bolt,autogluon/fev_datasets,entsoe_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_1H,0.4574194964,0.0,2.115835176,0cb6316a70bf9d47,False,0.7.0,0.4574194964,0.556447549,0.0341011005,0.0281751907,,cuda,bfloat16,120
-Chronos-Bolt,autogluon/fev_datasets,entsoe_30T,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_30T,0.5294317223,0.0,1.539316652,6ff7f68ac7fbd564,False,0.7.0,0.5294317223,0.6326216104,0.0378308199,0.0321248654,,cuda,bfloat16,120
-Chronos-Bolt,autogluon/fev_datasets,epf_be,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Generation forecast', 'System load forecast']",[],[],epf_be,0.573131006,0.0,0.8917097700000001,50acce5fc8987a4f,False,0.7.0,0.573131006,0.7272945434,0.1357350046,0.106932535,,cuda,bfloat16,20
-Chronos-Bolt,autogluon/fev_datasets,epf_de,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Ampirion Load Forecast', 'PV+Wind Forecast']",[],[],epf_de,1.0208059246,0.0,0.8820109930000001,491dc89fd5b322b5,False,0.7.0,1.0208059246,1.2655265893,0.5606896855,0.4643713196,,cuda,bfloat16,20
-Chronos-Bolt,autogluon/fev_datasets,epf_fr,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Generation forecast', 'System load forecast']",[],[],epf_fr,0.4389128912,0.0,0.893701748,bc5a57cd5727d527,False,0.7.0,0.4389128912,0.5638378752000001,0.0876754681,0.0684544774,,cuda,bfloat16,20
-Chronos-Bolt,autogluon/fev_datasets,epf_np,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Grid load forecast', 'Wind power forecast']",[],[],epf_np,0.971072301,0.0,0.8944492180000001,80b01220b34be222,False,0.7.0,0.971072301,1.2409440197,0.0566988389,0.0445199614,,cuda,bfloat16,20
-Chronos-Bolt,autogluon/fev_datasets,epf_pjm,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['System load forecast', 'Zonal COMED load foecast']",[],[],epf_pjm,0.4216993095,0.0,0.8854791940000001,04be360a47b231a4,False,0.7.0,0.4216993095,0.5357283349,0.0937614741,0.0739331273,,cuda,bfloat16,20
-Chronos-Bolt,autogluon/fev_datasets,ercot_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1D,0.9164572277,0.0,0.952127039,d1c9de98a43d4097,False,0.7.0,0.9164572277,1.150459162,0.0793944309,0.0620146905,,cuda,bfloat16,160
-Chronos-Bolt,autogluon/fev_datasets,ercot_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1H,1.137929015,0.0,2.122735439,95b91121d95f89c8,False,0.7.0,1.137929015,1.3914155571,0.0730120171,0.0597259069,,cuda,bfloat16,160
-Chronos-Bolt,autogluon/fev_datasets,ercot_1M,12,15,-180,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1M,0.7729483605,0.0,0.810258629,167e0223cbbc1b69,False,0.7.0,0.7729483605,0.9921791164,0.0511789478,0.0398626935,,cuda,bfloat16,120
-Chronos-Bolt,autogluon/fev_datasets,ercot_1W,13,20,-260,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1W,0.9613116039,0.0,0.958938539,091a619858bdabc9,False,0.7.0,0.9613116039,1.2261966297,0.0599824842,0.0467287195,,cuda,bfloat16,160
-Chronos-Bolt,autogluon/fev_datasets,favorita_stores_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'onpromotion']",['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1D,1.0322306624,0.0,11.49569944,3c676e1d0f771bf4,False,0.7.0,1.0322306624,1.2688834676,0.1742722556,0.1418629323,,cuda,bfloat16,15790
-Chronos-Bolt,autogluon/fev_datasets,favorita_stores_1M,12,2,-24,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,['onpromotion'],['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1M,2.0865003553,0.0,0.737539076,7c94de5b6e2859ff,False,0.7.0,2.0865003553,2.4178143615,0.263652347,0.1852146109,,cuda,bfloat16,3158
-Chronos-Bolt,autogluon/fev_datasets,favorita_stores_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,['onpromotion'],['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1W,2.1010925554,0.0,2.535701298,aae27c565b10fe7f,False,0.7.0,2.1010925554,2.4748929287,0.1579625078,0.1268154753,,cuda,bfloat16,15790
-Chronos-Bolt,autogluon/fev_datasets,favorita_transactions_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,['holiday'],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1D,0.9750458566,0.0,0.7889856270000001,af6c7be9c6bf8910,False,0.7.0,0.9750458566,1.1514968036,0.0873474585,0.0735763953,,cuda,bfloat16,510
-Chronos-Bolt,autogluon/fev_datasets,favorita_transactions_1M,12,2,-24,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,[],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1M,1.3584690914,0.0,0.398507047,a9ebe0fd05a285b6,False,0.7.0,1.3584690914,1.6365070781000002,0.0940793492,0.0799691906,,cuda,bfloat16,102
-Chronos-Bolt,autogluon/fev_datasets,favorita_transactions_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,[],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1W,1.4283013139,0.0,0.657251684,dcf0217a3f159ec8,False,0.7.0,1.4283013139,1.7479484715,0.0628811317,0.0528246684,,cuda,bfloat16,510
-Chronos-Bolt,autogluon/fev_datasets,fred_md_2025,12,20,-240,12,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['CPIAUCSL', 'FEDFUNDS', 'PAYEMS']",,[],"['M2REAL', 'NONBORRES', 'PPICMM', 'TOTRESNS']",[],fred_md_2025/cee,4.4904404116,0.0,0.907204166,764e9294023ee081,False,0.7.0,4.4904404116,5.4995170613,0.0893563021,0.0750783838,,cuda,bfloat16,60
-Chronos-Bolt,autogluon/fev_datasets,fred_md_2025,12,20,-240,12,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['AAA', 'AWHMAN', 'BAA', 'BUSINVx', 'CPIAUCSL', 'CPIMEDSL', 'CUMFNS', 'DMANEMP', 'EXUSUKx', 'FEDFUNDS', 'GS1', 'GS10', 'GS5', 'HOUST', 'INDPRO', 'INVEST', 'IPBUSEQ', 'IPCONGD', 'IPDCONGD', 'IPDMAT', 'IPFINAL', 'IPMANSICS', 'IPMAT', 'IPNCONGD', 'IPNMAT', 'M2REAL', 'MANEMP', 'NDMANEMP', 'NONBORRES', 'PAYEMS', 'PERMIT', 'PPICMM', 'S&P 500', 'SRVPRD', 'TB3MS', 'TB6MS', 'TOTRESNS', 'UEMP15T26', 'UEMP27OV', 'UEMP5TO14', 'UEMPLT5', 'UEMPMEAN', 'UMCSENTx', 'UNRATE', 'USCONS', 'USFIRE', 'USGOOD', 'USGOVT', 'USTPU', 'USTRADE', 'VIXCLSx']",,[],[],[],fred_md_2025/macro,5.8417533276,0.0,0.901937345,764e9294023ee081,False,0.7.0,5.8417533276,6.8925263969,0.0832975223,0.0689005701,,cuda,bfloat16,1020
-Chronos-Bolt,autogluon/fev_datasets,fred_qd_2025,8,20,-160,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['CPIAUCSL', 'FEDFUNDS', 'PAYEMS']",,[],"['M2REAL', 'NONBORRES', 'PPICMM', 'TOTRESNS']",[],fred_qd_2025/cee,2.3654952138,0.0,0.90162255,d257091c861020bf,False,0.7.0,2.3654952138,2.9552801855,0.1553945123,0.1238446163,,cuda,bfloat16,60
-Chronos-Bolt,autogluon/fev_datasets,fred_qd_2025,8,20,-160,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['AAA', 'AWHMAN', 'BAA', 'BUSINVx', 'CPIAUCSL', 'CPIMEDSL', 'CUMFNS', 'DMANEMP', 'EXUSUKx', 'FEDFUNDS', 'GS1', 'GS10', 'GS5', 'HOUST', 'INDPRO', 'INVEST', 'IPBUSEQ', 'IPCONGD', 'IPDCONGD', 'IPDMAT', 'IPFINAL', 'IPMANSICS', 'IPMAT', 'IPNCONGD', 'IPNMAT', 'M2REAL', 'MANEMP', 'NDMANEMP', 'NONBORRES', 'PAYEMS', 'PERMIT', 'PPICMM', 'S&P 500', 'SRVPRD', 'TB3MS', 'TB6MS', 'TOTRESNS', 'UEMP15T26', 'UEMP27OV', 'UEMP5TO14', 'UEMPLT5', 'UEMPMEAN', 'UMCSENTx', 'UNRATE', 'USCONS', 'USFIRE', 'USGOOD', 'USGOVT', 'USTPU', 'USTRADE', 'VIXCLSx']",,[],[],[],fred_qd_2025/macro,3.6544020032,0.0,0.91876078,d257091c861020bf,False,0.7.0,3.6544020032,4.4204306869,0.1074347071,0.0870314598,,cuda,bfloat16,1020
-Chronos-Bolt,autogluon/fev_datasets,gvar,8,10,-80,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['Dp', 'ep', 'eq', 'lr', 'r', 'y']",,[],"['pmat', 'pmetal', 'poil']",[],gvar,0.5962858414000001,0.0,0.643410769,e60f8e1e38f9acca,False,0.7.0,0.5962858414000001,0.7294646076,0.0189676567,0.015482776,,cuda,bfloat16,1980
-Chronos-Bolt,autogluon/fev_datasets,hermes,52,1,-52,52,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['external'],[],"['category', 'country']",hermes,0.6752116267,0.0,1.804798381,f87501b2bd02803b,False,0.7.0,0.6752116267,0.8579267331,0.003208007,0.0025240351,,cuda,bfloat16,10000
-Chronos-Bolt,autogluon/fev_datasets,hierarchical_sales_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hierarchical_sales_1D,0.550892445,0.0,1.29608468,0ecbb4076fd5ba78,False,0.7.0,0.550892445,0.6860304896,0.6949587405000001,0.5634020932,,cuda,bfloat16,1180
-Chronos-Bolt,autogluon/fev_datasets,hierarchical_sales_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hierarchical_sales_1W,0.6366963845,0.0,0.657455533,691bd281f0ad7adc,False,0.7.0,0.6366963845,0.7733116574000001,0.4394375533,0.3762527696,,cuda,bfloat16,1180
-Chronos-Bolt,autogluon/fev_datasets,hospital,12,4,-48,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital,0.6968021756,0.0,0.692476312,9c6e8721c2eca10b,False,0.7.0,0.6968021756,0.8888399515000001,0.0947973169,0.075323756,,cuda,bfloat16,3068
-Chronos-Bolt,autogluon/fev_datasets,hospital_admissions_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital_admissions_1D,0.5561584192,0.0,0.970602409,51b7fbd3926341eb,False,0.7.0,0.5561584192,0.7195191066000001,0.5337376775,0.4125280894,,cuda,bfloat16,160
-Chronos-Bolt,autogluon/fev_datasets,hospital_admissions_1W,13,16,-208,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital_admissions_1W,0.5868402215,0.0,0.851113914,bff3ae304070efd9,False,0.7.0,0.5868402215,0.7622844235,0.214606831,0.1652841678,,cuda,bfloat16,128
-Chronos-Bolt,autogluon/fev_datasets,jena_weather_10T,144,20,-2880,144,1,,144,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_10T,0.4178230361,0.0,2.005048412,311a660faf591409,False,0.7.0,0.4178230361,0.4805248693,0.3021136379,0.2625552838,,cuda,bfloat16,420
-Chronos-Bolt,autogluon/fev_datasets,jena_weather_1D,28,11,-308,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_1D,1.0749683503,0.0,0.66141865,81a9d748210aa612,False,0.7.0,1.0749683503,1.3722903668,0.2784405042,0.2254046561,,cuda,bfloat16,231
-Chronos-Bolt,autogluon/fev_datasets,jena_weather_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_1H,0.3668484878,0.0,0.928959204,8eb1d310607e8fee,False,0.7.0,0.3668484878,0.4542878163,0.2519024358,0.234099159,,cuda,bfloat16,420
-Chronos-Bolt,autogluon/fev_datasets,kdd_cup_2022_10T,288,10,-2880,288,1,,144,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_10T,0.5333420067,0.0,7.163191594,e200b7c6bc525a8d,False,0.7.0,0.5333420067,0.5903298173,1.5299117744,1.3753457151,,cuda,bfloat16,1340
-Chronos-Bolt,autogluon/fev_datasets,kdd_cup_2022_1D,14,10,-140,14,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_1D,0.7086991568000001,0.0,0.646101402,67f17ff257220281,False,0.7.0,0.7086991568000001,0.9069594704,0.7228399217,0.5631888802,,cuda,bfloat16,1340
-Chronos-Bolt,autogluon/fev_datasets,kdd_cup_2022_30T,96,10,-960,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_30T,0.5612428382,0.0,3.066107413,257e85b44bdb8154,False,0.7.0,0.5612428382,0.6672184767,2.6893893838,2.2656435299,,cuda,bfloat16,1340
-Chronos-Bolt,autogluon/fev_datasets,m5_1D,28,1,-28,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1D,0.7292764901000001,0.0,29.235217538,0d8bfe3780a2c494,False,0.7.0,0.7292764901000001,0.8851788247,0.7110159993,0.5619946767,,cuda,bfloat16,30490
-Chronos-Bolt,autogluon/fev_datasets,m5_1M,12,1,-12,12,6,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1M,1.0000578921,0.0,4.227121649,78d200c01b7350ff,False,0.7.0,1.0000578921,1.1852216988,0.4455042779,0.3566383823,,cuda,bfloat16,29364
-Chronos-Bolt,autogluon/fev_datasets,m5_1W,13,1,-13,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1W,0.9165191908,0.0,5.727823647,60d0a43fd09b5dcc,False,0.7.0,0.9165191908,1.1647431618,0.4334180355,0.3409590155,,cuda,bfloat16,30490
-Chronos-Bolt,autogluon/fev_datasets,proenfo_gfc12,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc12,0.9171920666,0.0,1.187747801,e39dc59e1a6af0e2,False,0.7.0,0.9171920666,1.0781317629,0.09096132,0.077263494,,cuda,bfloat16,110
-Chronos-Bolt,autogluon/fev_datasets,proenfo_gfc14,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc14,0.7673985057,0.0,1.983802673,90428df2dbce525e,False,0.7.0,0.7673985057,0.9285112769,0.0454557415,0.0375513457,,cuda,bfloat16,20
-Chronos-Bolt,autogluon/fev_datasets,proenfo_gfc17,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc17,0.9004430830000001,0.0,2.076324909,f8bf8da06e500162,False,0.7.0,0.9004430830000001,1.0977005202,0.0744532838,0.0608284875,,cuda,bfloat16,160
-Chronos-Bolt,autogluon/fev_datasets,redset_15T,96,10,-960,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_15T,1.2430012316,0.0,2.9116127240000003,391e616eee276356,False,0.7.0,1.2430012316,1.4783946982,0.3266223073,0.2713077355,,cuda,bfloat16,1260
-Chronos-Bolt,autogluon/fev_datasets,redset_1H,24,10,-240,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_1H,2.2790272339,0.0,1.735903168,a7542f5bcc8cf4ab,False,0.7.0,2.2790272339,2.6712489552000003,0.2425440878,0.2027229088,,cuda,bfloat16,1380
-Chronos-Bolt,autogluon/fev_datasets,redset_5T,288,10,-2880,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_5T,1.025913162,0.0,6.368275619,4776bd88b54d8a04,False,0.7.0,1.025913162,1.1699231408,0.4300963342,0.3706331476,,cuda,bfloat16,1180
-Chronos-Bolt,autogluon/fev_datasets,restaurant,28,8,-224,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],"['air_area_name', 'air_genre_name', 'latitude', 'longitude']",restaurant,0.6890372912,0.0,1.855434004,3863ed9dabc164dc,False,0.7.0,0.6890372912,0.8659689945,0.3649469204,0.2874369433,,cuda,bfloat16,6502
-Chronos-Bolt,autogluon/fev_datasets,rohlik_orders_1D,61,5,2023-05-01T00:00:00,61,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,orders,,"['holiday', 'school_holidays', 'shops_closed', 'winter_school_holidays']","['blackout', 'frankfurt_shutdown', 'mini_shutdown', 'mov_change', 'precipitation', 'shutdown', 'snow', 'user_activity_1', 'user_activity_2']",[],rohlik_orders_1D,1.0507521562,0.0,0.491051502,8334ba19a7f5e7a1,False,0.7.0,1.0507521562,1.3016096527,0.0613666862,0.0495487283,,cuda,bfloat16,35
-Chronos-Bolt,autogluon/fev_datasets,rohlik_orders_1W,8,5,2023-05-01T00:00:00,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,orders,,"['holiday', 'school_holidays', 'shops_closed', 'winter_school_holidays']","['blackout', 'frankfurt_shutdown', 'mini_shutdown', 'mov_change', 'precipitation', 'shutdown', 'snow', 'user_activity_1', 'user_activity_2']",[],rohlik_orders_1W,1.4281796145,0.0,0.48565272,63260348a6b49874,False,0.7.0,1.4281796145,1.7219242334,0.0569869973,0.047050427,,cuda,bfloat16,35
-Chronos-Bolt,autogluon/fev_datasets,rohlik_sales_1D,14,1,2023-12-15T00:00:00,14,14,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'school_holidays', 'sell_price_main', 'shops_closed', 'total_orders', 'type_0_discount', 'type_1_discount', 'type_2_discount', 'type_3_discount', 'type_4_discount', 'type_5_discount', 'type_6_discount', 'winter_school_holidays']",['availability'],"['L1_category_name_en', 'L2_category_name_en', 'L3_category_name_en', 'L4_category_name_en', 'name', 'product_unique_id', 'warehouse']",rohlik_sales_1D,1.1471494654,0.0,2.646683124,22fd3891c3b685ce,False,0.7.0,1.1471494654,1.3870630122,0.3783308864,0.3139840107,,cuda,bfloat16,4116
-Chronos-Bolt,autogluon/fev_datasets,rohlik_sales_1W,8,1,2023-12-15T00:00:00,8,8,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'school_holidays', 'sell_price_main', 'shops_closed', 'total_orders', 'type_0_discount', 'type_1_discount', 'type_2_discount', 'type_3_discount', 'type_4_discount', 'type_5_discount', 'type_6_discount', 'winter_school_holidays']",['availability'],"['L1_category_name_en', 'L2_category_name_en', 'L3_category_name_en', 'L4_category_name_en', 'name', 'product_unique_id', 'warehouse']",rohlik_sales_1W,1.5215966312,0.0,0.8747395630000001,516398d9cb76a18f,False,0.7.0,1.5215966312,1.8466635227,0.2846268117,0.2336631822,,cuda,bfloat16,3942
-Chronos-Bolt,autogluon/fev_datasets,rossmann_1D,48,10,-480,48,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Sales,,"['DayOfWeek', 'Open', 'Promo', 'SchoolHoliday', 'StateHoliday']",['Customers'],"['Assortment', 'CompetitionDistance', 'CompetitionOpenSinceMonth', 'CompetitionOpenSinceYear', 'Promo2', 'Promo2SinceWeek', 'Promo2SinceYear', 'PromoInterval', 'Store', 'StoreType']",rossmann_1D,0.5246207313,0.0,3.933845484,7c1cf165ce5e0f8b,False,0.7.0,0.5246207313,0.6371181918000001,0.2176495418,0.178806336,,cuda,bfloat16,11150
-Chronos-Bolt,autogluon/fev_datasets,rossmann_1W,13,8,-104,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Sales,,"['Open', 'Promo', 'SchoolHoliday', 'StateHoliday']",['Customers'],"['Assortment', 'CompetitionDistance', 'CompetitionOpenSinceMonth', 'CompetitionOpenSinceYear', 'Promo2', 'Promo2SinceWeek', 'Promo2SinceYear', 'PromoInterval', 'Store', 'StoreType']",rossmann_1W,0.4871499621,0.0,1.484309552,cf54ffb87953c85f,False,0.7.0,0.4871499621,0.6451761650000001,0.1760291811,0.1317076013,,cuda,bfloat16,8920
-Chronos-Bolt,autogluon/fev_datasets,solar_1D,28,10,-280,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],solar_1D,0.6349957556,0.0,0.652727954,4a9fb28f2a62f798,False,0.7.0,0.6349957556,0.8068081935,0.2532424137,0.1990286403,,cuda,bfloat16,1370
-Chronos-Bolt,autogluon/fev_datasets,solar_1W,13,1,-13,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],solar_1W,0.9401913951,0.0,0.364341908,856de5fa702db186,False,0.7.0,0.9401913951,1.2719881759,0.2132549584,0.1573930974,,cuda,bfloat16,137
-Chronos-Bolt,autogluon/fev_datasets,solar_with_weather_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['day_length', 'humidity', 'pressure', 'rain_1h', 'snow_1h', 'temp', 'wind_speed']","['clouds_all', 'global_horizontal_irradiance']",[],solar_with_weather_15T,0.8094202444,0.0,1.421768477,61e547dc95d83f5d,False,0.7.0,0.8094202444,0.9765226278,1.2911253296,1.1300785408,,cuda,bfloat16,20
-Chronos-Bolt,autogluon/fev_datasets,solar_with_weather_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['day_length', 'humidity', 'pressure', 'rain_1h', 'snow_1h', 'temp', 'wind_speed']","['clouds_all', 'global_horizontal_irradiance']",[],solar_with_weather_1H,0.8156760185,0.0,0.8711168720000001,a5ce88d03879a959,False,0.7.0,0.8156760185,1.0720382243,1.3260020718,1.0189950233,,cuda,bfloat16,20
-Chronos-Bolt,autogluon/fev_datasets,uci_air_quality_1D,28,11,-308,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['C6H6(GT)', 'CO(GT)', 'NO2(GT)', 'NOx(GT)']",,"['AH', 'RH', 'T']",[],[],uci_air_quality_1D,1.0919688778,0.0,0.6498258640000001,1acb95a018b86a63,False,0.7.0,1.0919688778,1.3886570934,0.2842696743,0.2228595882,,cuda,bfloat16,44
-Chronos-Bolt,autogluon/fev_datasets,uci_air_quality_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['C6H6(GT)', 'CO(GT)', 'NO2(GT)', 'NOx(GT)']",,"['AH', 'RH', 'T']",[],[],uci_air_quality_1H,0.89902861,0.0,2.04766731,187086c23269b305,False,0.7.0,0.89902861,1.1161574722,0.3758005321,0.3020104526,,cuda,bfloat16,80
-Chronos-Bolt,autogluon/fev_datasets,uk_covid_nation_1D,28,20,-560,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['cumulative_admissions', 'cumulative_cases', 'cumulative_deaths']",,[],"['cumulative_vaccinated_1', 'cumulative_vaccinated_2', 'cumulative_vaccinated_3', 'hospital_cases', 'icu_ventilator_occupancy']",[],uk_covid_nation_1D/cumulative,8.1573948756,0.0,0.970723595,cb76ab66e8a2acda,False,0.7.0,8.1573948756,10.4547608004,0.0245629952,0.0190395107,,cuda,bfloat16,240
-Chronos-Bolt,autogluon/fev_datasets,uk_covid_nation_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['new_admissions', 'new_cases', 'new_deaths']",,[],"['hospital_cases', 'icu_ventilator_occupancy', 'new_vaccinated_1', 'new_vaccinated_2', 'new_vaccinated_3']",[],uk_covid_nation_1D/new,2.1221392593,0.0,0.980761858,cb76ab66e8a2acda,False,0.7.0,2.1221392593,2.5913882505,0.4166112363,0.3374595917,,cuda,bfloat16,240
-Chronos-Bolt,autogluon/fev_datasets,uk_covid_nation_1W,8,4,-32,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['cumulative_admissions', 'cumulative_cases', 'cumulative_deaths']",,[],"['cumulative_vaccinated_1', 'cumulative_vaccinated_2', 'cumulative_vaccinated_3', 'hospital_cases', 'icu_ventilator_occupancy']",[],uk_covid_nation_1W/cumulative,3.4351717559,0.0,0.46540572,0398b1ae44b0e1ae,False,0.7.0,3.4351717559,4.3362420429,0.0386007642,0.0308278174,,cuda,bfloat16,48
-Chronos-Bolt,autogluon/fev_datasets,uk_covid_nation_1W,8,4,-32,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['new_admissions', 'new_cases', 'new_deaths']",,[],"['hospital_cases', 'icu_ventilator_occupancy', 'new_vaccinated_1', 'new_vaccinated_2', 'new_vaccinated_3']",[],uk_covid_nation_1W/new,4.1483138966,0.0,0.469694134,0398b1ae44b0e1ae,False,0.7.0,4.1483138966,5.1432817198,0.533506915,0.4123778016,,cuda,bfloat16,48
-Chronos-Bolt,autogluon/fev_datasets,uk_covid_utla_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,new_cases,,[],[],[],uk_covid_utla_1D/new,3.5311824645,0.0,1.02403015,a8353cbb69d9d419,False,0.7.0,3.5311824645,4.2680470788,0.4370788723,0.3616969038,,cuda,bfloat16,2140
-Chronos-Bolt,autogluon/fev_datasets,uk_covid_utla_1W,13,5,-65,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,cumulative_cases,,[],[],[],uk_covid_utla_1W/cumulative,17.4887255246,0.0,0.5164612150000001,e882978eeee0c5e3,False,0.7.0,17.4887255246,20.0769214614,0.1935101479,0.1670758111,,cuda,bfloat16,1070
-Chronos-Bolt,autogluon/fev_datasets,us_consumption_1M,12,10,-120,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1M,1.5162423149,0.0,0.6428216130000001,6f0b0899ba9d50bb,False,0.7.0,1.5162423149,1.8462616555,0.025038723,0.0218589731,,cuda,bfloat16,310
-Chronos-Bolt,autogluon/fev_datasets,us_consumption_1Q,8,10,-80,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1Q,1.764175518,0.0,0.647538952,34ddaf654b836be3,False,0.7.0,1.764175518,2.2129312479,0.0322679118,0.0277102453,,cuda,bfloat16,310
-Chronos-Bolt,autogluon/fev_datasets,us_consumption_1Y,5,10,-50,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1Y,4.1076459792,0.0,0.654107224,69d8accb103bbb77,False,0.7.0,4.1076459792,5.0426493832,0.0879293952,0.0656167649,,cuda,bfloat16,310
-Chronos-Bolt,autogluon/fev_datasets,walmart,39,1,-39,39,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['CPI', 'Fuel_Price', 'IsHoliday', 'MarkDown1', 'MarkDown2', 'MarkDown3', 'MarkDown4', 'MarkDown5', 'Temperature', 'Unemployment']",[],"['Dept', 'Size', 'Store', 'Type']",walmart,0.7740159174,0.0,0.7349396460000001,f84328c62c91aaf5,False,0.7.0,0.7740159174,0.9670980075,0.1172761619,0.0950021434,,cuda,bfloat16,2936
-Chronos-Bolt,autogluon/fev_datasets,world_co2_emissions,5,9,-45,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_co2_emissions,2.7544343248,0.0,0.6173023910000001,66fdc0a9c269539c,False,0.7.0,2.7544343248,3.3725385277,0.0897831822,0.0727688426,,cuda,bfloat16,1719
-Chronos-Bolt,autogluon/fev_datasets,world_life_expectancy,5,10,-50,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_life_expectancy,1.3452468722,0.0,0.6436036150000001,63f326fa372ad29a,False,0.7.0,1.3452468722,1.6264414789,0.0130603154,0.0108645301,,cuda,bfloat16,2370
-Chronos-Bolt,autogluon/fev_datasets,world_tourism,5,2,-10,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_tourism,3.1644023349,0.0,0.393471059,f03e22f4082953f7,False,0.7.0,3.1644023349,3.9050210198,0.1171618253,0.0889419278,,cuda,bfloat16,356
-Drift,autogluon/fev_datasets,ETT_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_15T,1.3649829587,0.0,3.807105844,9f6541408f56392f,False,0.7.0,1.3649829587,1.4150881085,0.209491349,0.2108337564,2.0.1,,,280
-Drift,autogluon/fev_datasets,ETT_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1D,1.4528881358,0.0,3.194850054,ff06ef09d043bd73,False,0.7.0,1.4528881358,1.493070532,0.3456173895,0.3621092269,2.0.1,,,280
-Drift,autogluon/fev_datasets,ETT_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1H,2.4221862813,0.0,3.93487976,1051fcbf7ab489b5,False,0.7.0,2.4221862813,1.7823323561,0.3517438181,0.5136644933,2.0.1,,,280
-Drift,autogluon/fev_datasets,ETT_1W,13,5,-65,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1W,2.63212947,0.0,0.955869301,f7babcd132f54bf3,False,0.7.0,2.63212947,2.7818783534,0.4451834112,0.4961494694,2.0.1,,,70
-Drift,autogluon/fev_datasets,LOOP_SEATTLE_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_1D,2.6285047085,0.0,3.739448106,02d7b9f04d1c3187,False,0.7.0,2.6285047085,2.373789824,0.0891125299,0.0978699313,2.0.1,,,3230
-Drift,autogluon/fev_datasets,LOOP_SEATTLE_1H,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_1H,3.7005853436,0.0,3.905283854,08811ee17f93df42,False,0.7.0,3.7005853436,1.9650972819,0.1758716479,0.3206568541,2.0.1,,,3230
-Drift,autogluon/fev_datasets,LOOP_SEATTLE_5T,288,10,-2880,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_5T,2.0191661844,0.0,4.933765776,c2739a4b195beef3,False,0.7.0,2.0191661844,1.1722532487,0.130171527,0.210202567,2.0.1,,,3230
-Drift,autogluon/fev_datasets,M_DENSE_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],M_DENSE_1D,2.2311998044,0.0,2.228817148,12417cabd3e820d7,False,0.7.0,2.2311998044,1.7668414689,0.2006916501,0.2363624963,2.0.1,,,300
-Drift,autogluon/fev_datasets,M_DENSE_1H,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],M_DENSE_1H,4.0939855017,0.0,2.246870346,e973593b94c21fa6,False,0.7.0,4.0939855017,3.2462087048,0.707449168,0.8946267050000001,2.0.1,,,300
-Drift,autogluon/fev_datasets,SZ_TAXI_15T,96,10,-960,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],SZ_TAXI_15T,1.4174386493,0.0,2.783610798,3e6f0d3380ac07cc,False,0.7.0,1.4174386493,0.7757872137,0.3669907093,0.6804962505000001,2.0.1,,,1560
-Drift,autogluon/fev_datasets,SZ_TAXI_1H,168,2,-336,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],SZ_TAXI_1H,2.9588624372,0.0,0.58958724,7c28d9c08a8a99d2,False,0.7.0,2.9588624372,0.8861734094,0.290869683,1.0097515601,2.0.1,,,312
-Drift,autogluon/fev_datasets,australian_tourism,8,2,-16,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],australian_tourism,1.7922461374,0.0,0.614858698,e3e704ef830bb1f4,False,0.7.0,1.7922461374,1.7960279922,0.199330695,0.2141353268,2.0.1,,,178
-Drift,autogluon/fev_datasets,bizitobs_l2c_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_2', 'target_3', 'target_4', 'target_5', 'target_6']",,[],[],[],bizitobs_l2c_1H,0.669961201,0.0,1.759924764,fd3fb3349ee15a22,False,0.7.0,0.669961201,0.7758078113,1.3151569486,1.3508241876,2.0.1,,,140
-Drift,autogluon/fev_datasets,bizitobs_l2c_5T,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_2', 'target_3', 'target_4', 'target_5', 'target_6']",,[],[],[],bizitobs_l2c_5T,0.7933793841,0.0,1.977694229,9cb515b57514a9ab,False,0.7.0,0.7933793841,0.9386117981,1.8269103833,1.731649134,2.0.1,,,140
-Drift,autogluon/fev_datasets,boomlet_1062,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1062,4.6588724435,0.0,4.274186815,44381d6f431f8c90,False,0.7.0,4.6588724435,1.422512019,1.0990104974,3.4646472151,2.0.1,,,420
-Drift,autogluon/fev_datasets,boomlet_1209,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1209,3.5173454757,0.0,4.453880811,1466ee197c499055,False,0.7.0,3.5173454757,1.2621289177,0.5110153038,1.4420052382000002,2.0.1,,,1060
-Drift,autogluon/fev_datasets,boomlet_1225,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1225,0.758570547,0.0,4.647464942,5d9eb3c2d9389376,False,0.7.0,0.758570547,0.38068424,0.1988768318,0.3876340759,2.0.1,,,980
-Drift,autogluon/fev_datasets,boomlet_1230,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1230,5.9878393324,0.0,4.495897552,034f57f6576437cc,False,0.7.0,5.9878393324,1.7478394522,0.4504819196,1.895555107,2.0.1,,,460
-Drift,autogluon/fev_datasets,boomlet_1282,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1282,1.5690882811,0.0,4.2234223140000005,de65600e18e27fe8,False,0.7.0,1.5690882811,0.8508297266,0.5815167152,1.0675288199,2.0.1,,,700
-Drift,autogluon/fev_datasets,boomlet_1487,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1487,6.1210676162,0.0,4.569240547,17003e37fda85cdd,False,0.7.0,6.1210676162,0.8583652247,0.3361342464,2.3761204352,2.0.1,,,1080
-Drift,autogluon/fev_datasets,boomlet_1631,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1631,1.3890549561,0.0,4.088321004,f5255f15ed8188ab,False,0.7.0,1.3890549561,0.8923058214,0.3956788492,0.6115095201,2.0.1,,,800
-Drift,autogluon/fev_datasets,boomlet_1676,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_75', 'target_76', 'target_77', 'target_78', 'target_79', 'target_8', 'target_80', 'target_81', 'target_82', 'target_83', 'target_84', 'target_85', 'target_86', 'target_87', 'target_88', 'target_89', 'target_9', 'target_90', 'target_91', 'target_92', 'target_93', 'target_94', 'target_95', 'target_96', 'target_97', 'target_98', 'target_99']",,[],[],[],boomlet_1676,1.3578116859,0.0,4.894971861,20768bc9d5e316c5,False,0.7.0,1.3578116859,0.8566079879,0.3871649546,0.5530190574,2.0.1,,,2000
-Drift,autogluon/fev_datasets,boomlet_1855,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1855,3.2968156747,0.0,4.02254236,ca3cf5b18a145f72,False,0.7.0,3.2968156747,0.6861913673000001,0.2044042459,0.5309525567,2.0.1,,,1040
-Drift,autogluon/fev_datasets,boomlet_1975,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_8', 'target_9']",,[],[],[],boomlet_1975,0.6131317081000001,0.0,4.768451442,3d8d0f68506b1995,False,0.7.0,0.6131317081000001,0.7004386998000001,0.4021568225,0.3522290761,2.0.1,,,1500
-Drift,autogluon/fev_datasets,boomlet_2187,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_75', 'target_76', 'target_77', 'target_78', 'target_79', 'target_8', 'target_80', 'target_81', 'target_82', 'target_83', 'target_84', 'target_85', 'target_86', 'target_87', 'target_88', 'target_89', 'target_9', 'target_90', 'target_91', 'target_92', 'target_93', 'target_94', 'target_95', 'target_96', 'target_97', 'target_98', 'target_99']",,[],[],[],boomlet_2187,3.0279388411,0.0,4.914903558,c3fe1a491401b248,False,0.7.0,3.0279388411,1.1700732484,0.4079644265,1.049295268,2.0.1,,,2000
-Drift,autogluon/fev_datasets,boomlet_285,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_8', 'target_9']",,[],[],[],boomlet_285,6.1302545159,0.0,4.536280305,3dfa571029207f1f,False,0.7.0,6.1302545159,1.2792135195,0.6908623011,1.2258270453,2.0.1,,,1500
-Drift,autogluon/fev_datasets,boomlet_619,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_619,1.3005697258,0.0,4.33922991,2d514811bddfc52d,False,0.7.0,1.3005697258,1.1484320675,0.9676378967,0.9877621571,2.0.1,,,1040
-Drift,autogluon/fev_datasets,boomlet_772,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_772,2.5366947218,0.0,4.591269459,66ce5fbc5ad575a2,False,0.7.0,2.5366947218,0.6468050268000001,0.2993941878,1.0040136572,2.0.1,,,1340
-Drift,autogluon/fev_datasets,boomlet_963,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_963,1.6758761104,0.0,4.139999266,bd1c23c0fd1a748e,False,0.7.0,1.6758761104,1.1367798246,0.5254156838,0.8256079501,2.0.1,,,560
-Drift,autogluon/fev_datasets,ecdc_ili,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ecdc_ili,3.9298378029,0.0,1.883956353,0c0a84fa1b54ac63,False,0.7.0,3.9298378029,4.3553339847,0.5846513778,0.5751070381,2.0.1,,,240
-Drift,autogluon/fev_datasets,entsoe_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_15T,1.6350644474,0.0,1.695127731,34c503cb4346b380,False,0.7.0,1.6350644474,2.0547959624,0.1567171741,0.1262425683,2.0.1,,,120
-Drift,autogluon/fev_datasets,entsoe_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_1H,2.0110168444,0.0,1.831599124,0cb6316a70bf9d47,False,0.7.0,2.0110168444,2.1575810109,0.1671798959,0.1529602098,2.0.1,,,120
-Drift,autogluon/fev_datasets,entsoe_30T,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_30T,1.5911802499,0.0,1.7276825850000002,6ff7f68ac7fbd564,False,0.7.0,1.5911802499,2.0462297626,0.1450240765,0.1132384606,2.0.1,,,120
-Drift,autogluon/fev_datasets,epf_be,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Generation forecast', 'System load forecast']",[],[],epf_be,3.1070840486,0.0,0.091128422,50acce5fc8987a4f,False,0.7.0,3.1070840486,1.3744478654,0.2400494121,0.5396597512,2.0.1,,,20
-Drift,autogluon/fev_datasets,epf_de,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Ampirion Load Forecast', 'PV+Wind Forecast']",[],[],epf_de,1.4206596948,0.0,0.094196734,491dc89fd5b322b5,False,0.7.0,1.4206596948,1.7695511326000002,0.6189188711,0.5344012453,2.0.1,,,20
-Drift,autogluon/fev_datasets,epf_fr,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Generation forecast', 'System load forecast']",[],[],epf_fr,3.8479452737,0.0,0.095160867,bc5a57cd5727d527,False,0.7.0,3.8479452737,1.1771067225,0.1727491379,0.5542629353,2.0.1,,,20
-Drift,autogluon/fev_datasets,epf_np,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Grid load forecast', 'Wind power forecast']",[],[],epf_np,1.9414483144,0.0,0.089390332,80b01220b34be222,False,0.7.0,1.9414483144,2.3147871788,0.1036498375,0.0869585173,2.0.1,,,20
-Drift,autogluon/fev_datasets,epf_pjm,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['System load forecast', 'Zonal COMED load foecast']",[],[],epf_pjm,0.9378548257,0.0,0.088326963,04be360a47b231a4,False,0.7.0,0.9378548257,0.9983941216,0.1742728941,0.1656245552,2.0.1,,,20
-Drift,autogluon/fev_datasets,ercot_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1D,1.4000667198,0.0,1.802492197,d1c9de98a43d4097,False,0.7.0,1.4000667198,1.5904988169,0.1188580243,0.1051661229,2.0.1,,,160
-Drift,autogluon/fev_datasets,ercot_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1H,2.6942610140000003,0.0,2.010626749,95b91121d95f89c8,False,0.7.0,2.6942610140000003,3.1208481544,0.156225403,0.1354763369,2.0.1,,,160
-Drift,autogluon/fev_datasets,ercot_1M,12,15,-180,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1M,3.8188806322,0.0,1.530268492,167e0223cbbc1b69,False,0.7.0,3.8188806322,4.8730234607,0.2937269539,0.2307212042,2.0.1,,,120
-Drift,autogluon/fev_datasets,ercot_1W,13,20,-260,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1W,2.0801083861,0.0,1.908293204,091a619858bdabc9,False,0.7.0,2.0801083861,2.6294908648,0.1446279654,0.1147730701,2.0.1,,,160
-Drift,autogluon/fev_datasets,favorita_stores_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'onpromotion']",['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1D,2.6562348012,0.0,7.598642435,3c676e1d0f771bf4,False,0.7.0,2.6562348012,1.8964809396,0.3071700007,0.4110111744,2.0.1,,,15790
-Drift,autogluon/fev_datasets,favorita_stores_1M,12,2,-24,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,['onpromotion'],['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1M,2.106703069,0.0,1.20185816,7c94de5b6e2859ff,False,0.7.0,2.106703069,2.0640825589,0.1430777609,0.1843808726,2.0.1,,,3158
-Drift,autogluon/fev_datasets,favorita_stores_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,['onpromotion'],['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1W,2.5295781907,0.0,6.356775055,aae27c565b10fe7f,False,0.7.0,2.5295781907,2.55263811,0.1540484183,0.1626164075,2.0.1,,,15790
-Drift,autogluon/fev_datasets,favorita_transactions_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,['holiday'],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1D,2.7460309898,0.0,2.063501721,af6c7be9c6bf8910,False,0.7.0,2.7460309898,1.8593809033,0.1564211233,0.2388998485,2.0.1,,,510
-Drift,autogluon/fev_datasets,favorita_transactions_1M,12,2,-24,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,[],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1M,1.8848237078,0.0,0.505458221,a9ebe0fd05a285b6,False,0.7.0,1.8848237078,1.6051275429,0.0979339545,0.1152703332,2.0.1,,,102
-Drift,autogluon/fev_datasets,favorita_transactions_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,[],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1W,1.7289504361,0.0,2.5892014,dcf0217a3f159ec8,False,0.7.0,1.7289504361,1.6333667243,0.0733929446,0.080280481,2.0.1,,,510
-Drift,autogluon/fev_datasets,fred_md_2025,12,20,-240,12,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['CPIAUCSL', 'FEDFUNDS', 'PAYEMS']",,[],"['M2REAL', 'NONBORRES', 'PPICMM', 'TOTRESNS']",[],fred_md_2025/cee,4.236293641,0.0,1.024832359,764e9294023ee081,False,0.7.0,4.236293641,4.6902098373,0.0899785994,0.1155920484,2.0.1,,,60
-Drift,autogluon/fev_datasets,fred_md_2025,12,20,-240,12,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['AAA', 'AWHMAN', 'BAA', 'BUSINVx', 'CPIAUCSL', 'CPIMEDSL', 'CUMFNS', 'DMANEMP', 'EXUSUKx', 'FEDFUNDS', 'GS1', 'GS10', 'GS5', 'HOUST', 'INDPRO', 'INVEST', 'IPBUSEQ', 'IPCONGD', 'IPDCONGD', 'IPDMAT', 'IPFINAL', 'IPMANSICS', 'IPMAT', 'IPNCONGD', 'IPNMAT', 'M2REAL', 'MANEMP', 'NDMANEMP', 'NONBORRES', 'PAYEMS', 'PERMIT', 'PPICMM', 'S&P 500', 'SRVPRD', 'TB3MS', 'TB6MS', 'TOTRESNS', 'UEMP15T26', 'UEMP27OV', 'UEMP5TO14', 'UEMPLT5', 'UEMPMEAN', 'UMCSENTx', 'UNRATE', 'USCONS', 'USFIRE', 'USGOOD', 'USGOVT', 'USTPU', 'USTRADE', 'VIXCLSx']",,[],[],[],fred_md_2025/macro,5.9752290488,0.0,4.087388605,764e9294023ee081,False,0.7.0,5.9752290488,6.6706675334,0.0862326509,0.0813235213,2.0.1,,,1020
-Drift,autogluon/fev_datasets,fred_qd_2025,8,20,-160,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['CPIAUCSL', 'FEDFUNDS', 'PAYEMS']",,[],"['M2REAL', 'NONBORRES', 'PPICMM', 'TOTRESNS']",[],fred_qd_2025/cee,2.1956616384,0.0,1.193955051,d257091c861020bf,False,0.7.0,2.1956616384,2.5885780238,0.1613227853,0.1492650928,2.0.1,,,60
-Drift,autogluon/fev_datasets,fred_qd_2025,8,20,-160,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['AAA', 'AWHMAN', 'BAA', 'BUSINVx', 'CPIAUCSL', 'CPIMEDSL', 'CUMFNS', 'DMANEMP', 'EXUSUKx', 'FEDFUNDS', 'GS1', 'GS10', 'GS5', 'HOUST', 'INDPRO', 'INVEST', 'IPBUSEQ', 'IPCONGD', 'IPDCONGD', 'IPDMAT', 'IPFINAL', 'IPMANSICS', 'IPMAT', 'IPNCONGD', 'IPNMAT', 'M2REAL', 'MANEMP', 'NDMANEMP', 'NONBORRES', 'PAYEMS', 'PERMIT', 'PPICMM', 'S&P 500', 'SRVPRD', 'TB3MS', 'TB6MS', 'TOTRESNS', 'UEMP15T26', 'UEMP27OV', 'UEMP5TO14', 'UEMPLT5', 'UEMPMEAN', 'UMCSENTx', 'UNRATE', 'USCONS', 'USFIRE', 'USGOOD', 'USGOVT', 'USTPU', 'USTRADE', 'VIXCLSx']",,[],[],[],fred_qd_2025/macro,3.7928250976,0.0,4.407751223,d257091c861020bf,False,0.7.0,3.7928250976,4.3735327936,0.1116643421,0.0950284899,2.0.1,,,1020
-Drift,autogluon/fev_datasets,gvar,8,10,-80,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['Dp', 'ep', 'eq', 'lr', 'r', 'y']",,[],"['pmat', 'pmetal', 'poil']",[],gvar,0.6414950038,0.0,2.655715096,e60f8e1e38f9acca,False,0.7.0,0.6414950038,0.6965206846,0.017942446,0.0174836229,2.0.1,,,1980
-Drift,autogluon/fev_datasets,hermes,52,1,-52,52,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['external'],[],"['category', 'country']",hermes,2.2601295911,0.0,1.004936994,f87501b2bd02803b,False,0.7.0,2.2601295911,2.0472163243,0.0088381628,0.0090940295,2.0.1,,,10000
-Drift,autogluon/fev_datasets,hierarchical_sales_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hierarchical_sales_1D,1.6067653205,0.0,2.642227623,0ecbb4076fd5ba78,False,0.7.0,1.6067653205,1.0525564501,1.0792345285,1.6911406182,2.0.1,,,1180
-Drift,autogluon/fev_datasets,hierarchical_sales_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hierarchical_sales_1W,1.416652405,0.0,2.5018706870000003,691bd281f0ad7adc,False,0.7.0,1.416652405,1.1894416421,0.73438465,0.9465583798,2.0.1,,,1180
-Drift,autogluon/fev_datasets,hospital,12,4,-48,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital,1.0870231786,0.0,2.078592517,9c6e8721c2eca10b,False,0.7.0,1.0870231786,1.1736654928,0.1240455657,0.1105393325,2.0.1,,,3068
-Drift,autogluon/fev_datasets,hospital_admissions_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital_admissions_1D,1.3357575815,0.0,1.844542261,51b7fbd3926341eb,False,0.7.0,1.3357575815,0.9816293494,0.7295191623,0.9916738218,2.0.1,,,160
-Drift,autogluon/fev_datasets,hospital_admissions_1W,13,16,-208,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital_admissions_1W,1.0884368132,0.0,1.788853606,bff3ae304070efd9,False,0.7.0,1.0884368132,1.0831848605,0.30397943,0.3078008055,2.0.1,,,128
-Drift,autogluon/fev_datasets,jena_weather_10T,144,20,-2880,144,1,,144,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_10T,0.8000027464,0.0,4.009706043,311a660faf591409,False,0.7.0,0.8000027464,0.5533241331000001,0.5317361675,3.8552910899,2.0.1,,,420
-Drift,autogluon/fev_datasets,jena_weather_1D,28,11,-308,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_1D,2.2588601945,0.0,2.486989442,81a9d748210aa612,False,0.7.0,2.2588601945,1.7748810582,0.4042778883,0.7361988018000001,2.0.1,,,231
-Drift,autogluon/fev_datasets,jena_weather_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_1H,0.5844505923000001,0.0,3.932876856,8eb1d310607e8fee,False,0.7.0,0.5844505923000001,0.544552084,0.3343243943,1.6730314795,2.0.1,,,420
-Drift,autogluon/fev_datasets,kdd_cup_2022_10T,288,10,-2880,288,1,,144,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_10T,0.8433392069000001,0.0,3.457938202,e200b7c6bc525a8d,False,0.7.0,0.8433392069000001,0.8809057293,2.1939117908,2.9246115818,2.0.1,,,1340
-Drift,autogluon/fev_datasets,kdd_cup_2022_1D,14,10,-140,14,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_1D,1.1646512316,0.0,2.593311171,67f17ff257220281,False,0.7.0,1.1646512316,1.0552765612,0.8271189928,0.948426295,2.0.1,,,1340
-Drift,autogluon/fev_datasets,kdd_cup_2022_30T,96,10,-960,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_30T,0.7929597862000001,0.0,2.81907377,257e85b44bdb8154,False,0.7.0,0.7929597862000001,0.8782613104,2.3595300138,2.6373925567,2.0.1,,,1340
-Drift,autogluon/fev_datasets,m5_1D,28,1,-28,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1D,1.9793212176,0.0,4.773773144,0d8bfe3780a2c494,False,0.7.0,1.9793212176,1.3783870781,1.0368541479,1.3656864863,2.0.1,,,30490
-Drift,autogluon/fev_datasets,m5_1M,12,1,-12,12,6,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1M,1.2896192789,0.0,1.307693979,78d200c01b7350ff,False,0.7.0,1.2896192789,1.3915794965,0.5485711098,0.5002848742,2.0.1,,,29364
-Drift,autogluon/fev_datasets,m5_1W,13,1,-13,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1W,1.3899419915,0.0,1.948935377,60d0a43fd09b5dcc,False,0.7.0,1.3899419915,1.3824089509,0.5192105174,0.5321822364000001,2.0.1,,,30490
-Drift,autogluon/fev_datasets,proenfo_gfc12,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc12,2.4805205301,0.0,1.629649449,e39dc59e1a6af0e2,False,0.7.0,2.4805205301,2.7528132313,0.2455491483,0.2175193024,2.0.1,,,110
-Drift,autogluon/fev_datasets,proenfo_gfc14,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc14,3.4025952491,0.0,0.185158289,90428df2dbce525e,False,0.7.0,3.4025952491,3.965045322,0.1959836841,0.1683589627,2.0.1,,,20
-Drift,autogluon/fev_datasets,proenfo_gfc17,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc17,2.7046737562,0.0,2.072244545,f8bf8da06e500162,False,0.7.0,2.7046737562,3.063129907,0.2018542446,0.1777795871,2.0.1,,,160
-Drift,autogluon/fev_datasets,redset_15T,96,10,-960,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_15T,35.0901218659,0.0,2.783269254,391e616eee276356,False,0.7.0,35.0901218659,33.693269119600004,0.5907099247,1.6075485006,2.0.1,,,1260
-Drift,autogluon/fev_datasets,redset_1H,24,10,-240,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_1H,10.6448235022,0.0,2.778148691,a7542f5bcc8cf4ab,False,0.7.0,10.6448235022,8.1864715752,0.5004897475,0.8935980201,2.0.1,,,1380
-Drift,autogluon/fev_datasets,redset_5T,288,10,-2880,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_5T,13.0588504389,0.0,2.614229082,4776bd88b54d8a04,False,0.7.0,13.0588504389,3.498018604,0.7538361549,3.0482376442,2.0.1,,,1180
-Drift,autogluon/fev_datasets,restaurant,28,8,-224,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],"['air_area_name', 'air_genre_name', 'latitude', 'longitude']",restaurant,1.6918666339,0.0,3.682824308,3863ed9dabc164dc,False,0.7.0,1.6918666339,1.4760866124,0.6468708888,0.7547545082,2.0.1,,,6502
-Drift,autogluon/fev_datasets,rohlik_orders_1D,61,5,2023-05-01T00:00:00,61,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,orders,,"['holiday', 'school_holidays', 'shops_closed', 'winter_school_holidays']","['blackout', 'frankfurt_shutdown', 'mini_shutdown', 'mov_change', 'precipitation', 'shutdown', 'snow', 'user_activity_1', 'user_activity_2']",[],rohlik_orders_1D,2.9819524139,0.0,0.5479500150000001,8334ba19a7f5e7a1,False,0.7.0,2.9819524139,2.4953294972,0.1096319526,0.141017357,2.0.1,,,35
-Drift,autogluon/fev_datasets,rohlik_orders_1W,8,5,2023-05-01T00:00:00,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,orders,,"['holiday', 'school_holidays', 'shops_closed', 'winter_school_holidays']","['blackout', 'frankfurt_shutdown', 'mini_shutdown', 'mov_change', 'precipitation', 'shutdown', 'snow', 'user_activity_1', 'user_activity_2']",[],rohlik_orders_1W,1.4886376798,0.0,0.554647294,63260348a6b49874,False,0.7.0,1.4886376798,1.7566346002,0.059100195,0.0497673655,2.0.1,,,35
-Drift,autogluon/fev_datasets,rohlik_sales_1D,14,1,2023-12-15T00:00:00,14,14,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'school_holidays', 'sell_price_main', 'shops_closed', 'total_orders', 'type_0_discount', 'type_1_discount', 'type_2_discount', 'type_3_discount', 'type_4_discount', 'type_5_discount', 'type_6_discount', 'winter_school_holidays']",['availability'],"['L1_category_name_en', 'L2_category_name_en', 'L3_category_name_en', 'L4_category_name_en', 'name', 'product_unique_id', 'warehouse']",rohlik_sales_1D,1.5603709005000002,0.0,1.036988109,22fd3891c3b685ce,False,0.7.0,1.5603709005000002,1.7665358583000002,0.4772062898,0.4141182186,2.0.1,,,4116
-Drift,autogluon/fev_datasets,rohlik_sales_1W,8,1,2023-12-15T00:00:00,8,8,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'school_holidays', 'sell_price_main', 'shops_closed', 'total_orders', 'type_0_discount', 'type_1_discount', 'type_2_discount', 'type_3_discount', 'type_4_discount', 'type_5_discount', 'type_6_discount', 'winter_school_holidays']",['availability'],"['L1_category_name_en', 'L2_category_name_en', 'L3_category_name_en', 'L4_category_name_en', 'name', 'product_unique_id', 'warehouse']",rohlik_sales_1W,1.9690203085,0.0,0.7741801730000001,516398d9cb76a18f,False,0.7.0,1.9690203085,1.990816422,0.3224963248,0.3393924276,2.0.1,,,3942
-Drift,autogluon/fev_datasets,rossmann_1D,48,10,-480,48,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Sales,,"['DayOfWeek', 'Open', 'Promo', 'SchoolHoliday', 'StateHoliday']",['Customers'],"['Assortment', 'CompetitionDistance', 'CompetitionOpenSinceMonth', 'CompetitionOpenSinceYear', 'Promo2', 'Promo2SinceWeek', 'Promo2SinceYear', 'PromoInterval', 'Store', 'StoreType']",rossmann_1D,2.818179584,0.0,6.444229404,7c1cf165ce5e0f8b,False,0.7.0,2.818179584,1.6307564391,0.5516847163,0.9579696488,2.0.1,,,11150
-Drift,autogluon/fev_datasets,rossmann_1W,13,8,-104,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Sales,,"['Open', 'Promo', 'SchoolHoliday', 'StateHoliday']",['Customers'],"['Assortment', 'CompetitionDistance', 'CompetitionOpenSinceMonth', 'CompetitionOpenSinceYear', 'Promo2', 'Promo2SinceWeek', 'Promo2SinceYear', 'PromoInterval', 'Store', 'StoreType']",rossmann_1W,0.9605854168,0.0,4.3306362400000005,cf54ffb87953c85f,False,0.7.0,0.9605854168,0.8779634547,0.2424932998,0.2680805063,2.0.1,,,8920
-Drift,autogluon/fev_datasets,solar_1D,28,10,-280,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],solar_1D,1.4888788408,0.0,3.203802654,4a9fb28f2a62f798,False,0.7.0,1.4888788408,1.1102918555,0.3458185181,0.4569554917,2.0.1,,,1370
-Drift,autogluon/fev_datasets,solar_1W,13,1,-13,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],solar_1W,1.8015134215,0.0,0.346743022,856de5fa702db186,False,0.7.0,1.8015134215,2.5896105932,0.4388745129,0.3053960241,2.0.1,,,137
-Drift,autogluon/fev_datasets,solar_with_weather_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['day_length', 'humidity', 'pressure', 'rain_1h', 'snow_1h', 'temp', 'wind_speed']","['clouds_all', 'global_horizontal_irradiance']",[],solar_with_weather_15T,2.3830110819,0.0,0.164343591,61e547dc95d83f5d,False,0.7.0,2.3830110819,2.2100824084,1.2097884297,1.7761051768,2.0.1,,,20
-Drift,autogluon/fev_datasets,solar_with_weather_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['day_length', 'humidity', 'pressure', 'rain_1h', 'snow_1h', 'temp', 'wind_speed']","['clouds_all', 'global_horizontal_irradiance']",[],solar_with_weather_1H,2.1831749916,0.0,0.093848299,a5ce88d03879a959,False,0.7.0,2.1831749916,2.2668539311,1.1473927319,1.3968565452,2.0.1,,,20
-Drift,autogluon/fev_datasets,uci_air_quality_1D,28,11,-308,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['C6H6(GT)', 'CO(GT)', 'NO2(GT)', 'NOx(GT)']",,"['AH', 'RH', 'T']",[],[],uci_air_quality_1D,1.9477985237,0.0,0.6006669090000001,1acb95a018b86a63,False,0.7.0,1.9477985237,2.2085178759,0.456071114,0.4166124807,2.0.1,,,44
-Drift,autogluon/fev_datasets,uci_air_quality_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['C6H6(GT)', 'CO(GT)', 'NO2(GT)', 'NOx(GT)']",,"['AH', 'RH', 'T']",[],[],uci_air_quality_1H,2.544297151,0.0,1.723262875,187086c23269b305,False,0.7.0,2.544297151,1.7613798983,0.5444705039000001,0.8759093056,2.0.1,,,80
-Drift,autogluon/fev_datasets,uk_covid_nation_1D,28,20,-560,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['cumulative_admissions', 'cumulative_cases', 'cumulative_deaths']",,[],"['cumulative_vaccinated_1', 'cumulative_vaccinated_2', 'cumulative_vaccinated_3', 'hospital_cases', 'icu_ventilator_occupancy']",[],uk_covid_nation_1D/cumulative,17.5575952088,0.0,3.146924287,cb76ab66e8a2acda,False,0.7.0,17.5575952088,18.9781830611,0.0458026743,0.0420838658,2.0.1,,,240
-Drift,autogluon/fev_datasets,uk_covid_nation_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['new_admissions', 'new_cases', 'new_deaths']",,[],"['hospital_cases', 'icu_ventilator_occupancy', 'new_vaccinated_1', 'new_vaccinated_2', 'new_vaccinated_3']",[],uk_covid_nation_1D/new,2.7354032661,0.0,2.942591842,cb76ab66e8a2acda,False,0.7.0,2.7354032661,2.9572817188,0.4637164548,0.6959726061,2.0.1,,,240
-Drift,autogluon/fev_datasets,uk_covid_nation_1W,8,4,-32,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['cumulative_admissions', 'cumulative_cases', 'cumulative_deaths']",,[],"['cumulative_vaccinated_1', 'cumulative_vaccinated_2', 'cumulative_vaccinated_3', 'hospital_cases', 'icu_ventilator_occupancy']",[],uk_covid_nation_1W/cumulative,4.9437715765,0.0,0.6379403610000001,0398b1ae44b0e1ae,False,0.7.0,4.9437715765,5.5370707385,0.0507871248,0.0450304907,2.0.1,,,48
-Drift,autogluon/fev_datasets,uk_covid_nation_1W,8,4,-32,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['new_admissions', 'new_cases', 'new_deaths']",,[],"['hospital_cases', 'icu_ventilator_occupancy', 'new_vaccinated_1', 'new_vaccinated_2', 'new_vaccinated_3']",[],uk_covid_nation_1W/new,5.3904979176,0.0,0.813133337,0398b1ae44b0e1ae,False,0.7.0,5.3904979176,6.0322653616,0.4722695798,0.4739863292,2.0.1,,,48
-Drift,autogluon/fev_datasets,uk_covid_utla_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,new_cases,,[],[],[],uk_covid_utla_1D/new,5.2745393338,0.0,2.809107165,a8353cbb69d9d419,False,0.7.0,5.2745393338,6.0662829111,0.5699051917,0.5265475783,2.0.1,,,2140
-Drift,autogluon/fev_datasets,uk_covid_utla_1W,13,5,-65,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,cumulative_cases,,[],[],[],uk_covid_utla_1W/cumulative,19.7494072856,0.0,1.350960363,e882978eeee0c5e3,False,0.7.0,19.7494072856,20.9787577016,0.198870188,0.1835390955,2.0.1,,,1070
-Drift,autogluon/fev_datasets,us_consumption_1M,12,10,-120,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1M,1.6834522226000002,0.0,1.839138867,6f0b0899ba9d50bb,False,0.7.0,1.6834522226000002,1.9442203469,0.0302986122,0.0266511556,2.0.1,,,310
-Drift,autogluon/fev_datasets,us_consumption_1Q,8,10,-80,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1Q,2.1897132455,0.0,2.157117131,34ddaf654b836be3,False,0.7.0,2.1897132455,2.513273914,0.0433424644,0.0386050624,2.0.1,,,310
-Drift,autogluon/fev_datasets,us_consumption_1Y,5,10,-50,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1Y,4.9461376338,0.0,1.756173868,69d8accb103bbb77,False,0.7.0,4.9461376338,5.51566537,0.1056817938,0.0943820837,2.0.1,,,310
-Drift,autogluon/fev_datasets,walmart,39,1,-39,39,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['CPI', 'Fuel_Price', 'IsHoliday', 'MarkDown1', 'MarkDown2', 'MarkDown3', 'MarkDown4', 'MarkDown5', 'Temperature', 'Unemployment']",[],"['Dept', 'Size', 'Store', 'Type']",walmart,2.2528910444,0.0,0.729368435,f84328c62c91aaf5,False,0.7.0,2.2528910444,1.7491246911,0.2281249762,0.3407542314,2.0.1,,,2936
-Drift,autogluon/fev_datasets,world_co2_emissions,5,9,-45,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_co2_emissions,2.755800442,0.0,2.156493117,66fdc0a9c269539c,False,0.7.0,2.755800442,3.1983782167,0.0830490989,0.073077502,2.0.1,,,1719
-Drift,autogluon/fev_datasets,world_life_expectancy,5,10,-50,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_life_expectancy,1.5824689261,0.0,2.79500699,63f326fa372ad29a,False,0.7.0,1.5824689261,1.8420117568,0.0147433012,0.0130987043,2.0.1,,,2370
-Drift,autogluon/fev_datasets,world_tourism,5,2,-10,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_tourism,2.3982302133,0.0,0.5019634150000001,f03e22f4082953f7,False,0.7.0,2.3982302133,2.8785102461000003,0.0549742542,0.0439170643,2.0.1,,,356
-Moirai-2.0,autogluon/fev_datasets,ETT_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_15T,0.5634080792,0.0,4.727079797,9f6541408f56392f,True,0.7.0,0.5634080792,0.7119063524,0.1159808565,0.0915275624,2.0.0,,,280
-Moirai-2.0,autogluon/fev_datasets,ETT_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1D,1.1463901755,0.0,0.8203681380000001,ff06ef09d043bd73,True,0.7.0,1.1463901755,1.380090541,0.3391420682,0.271451187,2.0.0,,,280
-Moirai-2.0,autogluon/fev_datasets,ETT_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1H,0.8992678249,0.0,6.917636233,1051fcbf7ab489b5,True,0.7.0,0.8992678249,1.1240040031,0.2469850741,0.195192928,2.0.0,,,280
-Moirai-2.0,autogluon/fev_datasets,ETT_1W,13,5,-65,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1W,2.3019401615,0.0,0.375262422,f7babcd132f54bf3,True,0.7.0,2.3019401615,2.6851357931,0.5112174511,0.4048720966,2.0.0,,,70
-Moirai-2.0,autogluon/fev_datasets,LOOP_SEATTLE_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_1D,0.7993682083,0.0,5.111692739,02d7b9f04d1c3187,True,0.7.0,0.7993682083,0.9757954368,0.0369803408,0.0302433002,2.0.0,,,3230
-Moirai-2.0,autogluon/fev_datasets,LOOP_SEATTLE_1H,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_1H,0.6826376038,0.0,72.611820327,08811ee17f93df42,True,0.7.0,0.6826376038,0.8165492796,0.0700916439,0.0585846937,2.0.0,,,3230
-Moirai-2.0,autogluon/fev_datasets,LOOP_SEATTLE_5T,288,10,-2880,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_5T,0.5773296431,0.0,158.02744599,c2739a4b195beef3,True,0.7.0,0.5773296431,0.7098399679,0.0768773049,0.0625362787,2.0.0,,,3230
-Moirai-2.0,autogluon/fev_datasets,M_DENSE_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],M_DENSE_1D,0.7390153096000001,0.0,0.75088043,12417cabd3e820d7,True,0.7.0,0.7390153096000001,0.8883750643,0.0962092549,0.0806921736,2.0.0,,,300
-Moirai-2.0,autogluon/fev_datasets,M_DENSE_1H,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],M_DENSE_1H,0.5862602847,0.0,7.20240364,e973593b94c21fa6,True,0.7.0,0.5862602847,0.7038930608,0.1454995535,0.1208607039,2.0.0,,,300
-Moirai-2.0,autogluon/fev_datasets,SZ_TAXI_15T,96,10,-960,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],SZ_TAXI_15T,0.4005939742,0.0,18.053978815,3e6f0d3380ac07cc,True,0.7.0,0.4005939742,0.5087140567,0.2433160037,0.1913040821,2.0.0,,,1560
-Moirai-2.0,autogluon/fev_datasets,SZ_TAXI_1H,168,2,-336,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],SZ_TAXI_1H,0.3965682962,0.0,7.033244889,7c28d9c08a8a99d2,True,0.7.0,0.3965682962,0.4978087924,0.1670263708,0.1332437566,2.0.0,,,312
-Moirai-2.0,autogluon/fev_datasets,australian_tourism,8,2,-16,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],australian_tourism,0.9175231952,0.0,0.49081405,e3e704ef830bb1f4,False,0.7.0,0.9175231952,1.1608053998,0.1308895275,0.1053900171,2.0.0,,,178
-Moirai-2.0,autogluon/fev_datasets,bizitobs_l2c_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_2', 'target_3', 'target_4', 'target_5', 'target_6']",,[],[],[],bizitobs_l2c_1H,0.3617923755,0.0,0.6078561680000001,fd3fb3349ee15a22,True,0.7.0,0.3617923755,0.4187401849,0.3388273743,0.2906760296,2.0.0,,,140
-Moirai-2.0,autogluon/fev_datasets,bizitobs_l2c_5T,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_2', 'target_3', 'target_4', 'target_5', 'target_6']",,[],[],[],bizitobs_l2c_5T,0.3675170699,0.0,7.014960358,9cb515b57514a9ab,True,0.7.0,0.3675170699,0.4035418627,0.7996593485,0.7681653975,2.0.0,,,140
-Moirai-2.0,autogluon/fev_datasets,boomlet_1062,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1062,0.5927620413,0.0,19.179405968,44381d6f431f8c90,False,0.7.0,0.5927620413,0.7155932877000001,0.5945871048,0.4872201343,2.0.0,,,420
-Moirai-2.0,autogluon/fev_datasets,boomlet_1209,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1209,0.7562347037,0.0,47.42529219,1466ee197c499055,False,0.7.0,0.7562347037,0.8596275988000001,0.3292905567,0.2879466627,2.0.0,,,1060
-Moirai-2.0,autogluon/fev_datasets,boomlet_1225,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1225,0.1948503398,0.0,2.5386274870000003,5d9eb3c2d9389376,False,0.7.0,0.1948503398,0.2436207845,0.1278310667,0.1024577962,2.0.0,,,980
-Moirai-2.0,autogluon/fev_datasets,boomlet_1230,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1230,1.2863247224,0.0,21.027124487,034f57f6576437cc,False,0.7.0,1.2863247224,1.4190498379,0.3094188715,0.2744689053,2.0.0,,,460
-Moirai-2.0,autogluon/fev_datasets,boomlet_1282,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1282,0.4269211119,0.0,1.948325731,de65600e18e27fe8,False,0.7.0,0.4269211119,0.5229602404,0.3639267584,0.2943955518,2.0.0,,,700
-Moirai-2.0,autogluon/fev_datasets,boomlet_1487,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1487,0.455761865,0.0,48.391443413,17003e37fda85cdd,False,0.7.0,0.455761865,0.5276634634,0.2079859222,0.179562264,2.0.0,,,1080
-Moirai-2.0,autogluon/fev_datasets,boomlet_1631,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1631,0.5907980989,0.0,9.765622134,f5255f15ed8188ab,False,0.7.0,0.5907980989,0.7328154067,0.322950287,0.2594328079,2.0.0,,,800
-Moirai-2.0,autogluon/fev_datasets,boomlet_1676,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_75', 'target_76', 'target_77', 'target_78', 'target_79', 'target_8', 'target_80', 'target_81', 'target_82', 'target_83', 'target_84', 'target_85', 'target_86', 'target_87', 'target_88', 'target_89', 'target_9', 'target_90', 'target_91', 'target_92', 'target_93', 'target_94', 'target_95', 'target_96', 'target_97', 'target_98', 'target_99']",,[],[],[],boomlet_1676,0.5727147225,0.0,23.786549969,20768bc9d5e316c5,False,0.7.0,0.5727147225,0.7128114239000001,0.3274155865,0.2579772293,2.0.0,,,2000
-Moirai-2.0,autogluon/fev_datasets,boomlet_1855,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1855,0.464879974,0.0,2.104070972,ca3cf5b18a145f72,False,0.7.0,0.464879974,0.543045447,0.1619848815,0.139558043,2.0.0,,,1040
-Moirai-2.0,autogluon/fev_datasets,boomlet_1975,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_8', 'target_9']",,[],[],[],boomlet_1975,0.2195469335,0.0,2.892190766,3d8d0f68506b1995,False,0.7.0,0.2195469335,0.2722386223,0.1478435607,0.1195154441,2.0.0,,,1500
-Moirai-2.0,autogluon/fev_datasets,boomlet_2187,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_75', 'target_76', 'target_77', 'target_78', 'target_79', 'target_8', 'target_80', 'target_81', 'target_82', 'target_83', 'target_84', 'target_85', 'target_86', 'target_87', 'target_88', 'target_89', 'target_9', 'target_90', 'target_91', 'target_92', 'target_93', 'target_94', 'target_95', 'target_96', 'target_97', 'target_98', 'target_99']",,[],[],[],boomlet_2187,0.8067927027,0.0,3.735538169,c3fe1a491401b248,False,0.7.0,0.8067927027,0.9069913111,0.2926881402,0.2578882698,2.0.0,,,2000
-Moirai-2.0,autogluon/fev_datasets,boomlet_285,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_8', 'target_9']",,[],[],[],boomlet_285,0.4274151922,0.0,3.783508016,3dfa571029207f1f,False,0.7.0,0.4274151922,0.470509393,0.2203877039,0.1889532567,2.0.0,,,1500
-Moirai-2.0,autogluon/fev_datasets,boomlet_619,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_619,0.3294344187,0.0,2.660347059,2d514811bddfc52d,False,0.7.0,0.3294344187,0.4306276617,0.3062168618,0.2356420104,2.0.0,,,1040
-Moirai-2.0,autogluon/fev_datasets,boomlet_772,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_772,0.3139115775,0.0,3.320701076,66ce5fbc5ad575a2,False,0.7.0,0.3139115775,0.3651670055,0.1698505863,0.1437870275,2.0.0,,,1340
-Moirai-2.0,autogluon/fev_datasets,boomlet_963,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_963,0.7505200217,0.0,1.650516354,bd1c23c0fd1a748e,False,0.7.0,0.7505200217,0.8725943582000001,0.4169379192,0.3420300574,2.0.0,,,560
-Moirai-2.0,autogluon/fev_datasets,ecdc_ili,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ecdc_ili,2.4544933394,0.0,0.650812012,0c0a84fa1b54ac63,False,0.7.0,2.4544933394,2.9286752636,0.4756085008,0.3850819865,2.0.0,,,240
-Moirai-2.0,autogluon/fev_datasets,entsoe_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_15T,0.478288762,0.0,3.131088435,34c503cb4346b380,False,0.7.0,0.478288762,0.5933312818,0.0423905659,0.0343344442,2.0.0,,,120
-Moirai-2.0,autogluon/fev_datasets,entsoe_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_1H,0.4870732428,0.0,3.576529513,0cb6316a70bf9d47,False,0.7.0,0.4870732428,0.5924217639,0.0395727229,0.033285571,2.0.0,,,120
-Moirai-2.0,autogluon/fev_datasets,entsoe_30T,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_30T,0.4883587468,0.0,2.523977141,6ff7f68ac7fbd564,False,0.7.0,0.4883587468,0.5973972755,0.038267585,0.0318440586,2.0.0,,,120
-Moirai-2.0,autogluon/fev_datasets,epf_be,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Generation forecast', 'System load forecast']",[],[],epf_be,0.5281380165,0.0,0.5833990520000001,50acce5fc8987a4f,False,0.7.0,0.5281380165,0.6709379406,0.1227849199,0.0968269743,2.0.0,,,20
-Moirai-2.0,autogluon/fev_datasets,epf_de,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Ampirion Load Forecast', 'PV+Wind Forecast']",[],[],epf_de,1.0163698014,0.0,0.5932024340000001,491dc89fd5b322b5,False,0.7.0,1.0163698014,1.2281783328,0.5364827175,0.4585770885,2.0.0,,,20
-Moirai-2.0,autogluon/fev_datasets,epf_fr,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Generation forecast', 'System load forecast']",[],[],epf_fr,0.4092032808,0.0,0.5843585560000001,bc5a57cd5727d527,False,0.7.0,0.4092032808,0.5034595344,0.079128382,0.0646047834,2.0.0,,,20
-Moirai-2.0,autogluon/fev_datasets,epf_np,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Grid load forecast', 'Wind power forecast']",[],[],epf_np,0.9253466826,0.0,0.5865182,80b01220b34be222,False,0.7.0,0.9253466826,1.1997562864,0.0542902095,0.0419786745,2.0.0,,,20
-Moirai-2.0,autogluon/fev_datasets,epf_pjm,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['System load forecast', 'Zonal COMED load foecast']",[],[],epf_pjm,0.4405348981,0.0,0.588024673,04be360a47b231a4,False,0.7.0,0.4405348981,0.5630774342,0.0975614782,0.0766169612,2.0.0,,,20
-Moirai-2.0,autogluon/fev_datasets,ercot_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1D,0.9470906371,0.0,0.688825436,d1c9de98a43d4097,False,0.7.0,0.9470906371,1.2043414824,0.0819215234,0.0637608291,2.0.0,,,160
-Moirai-2.0,autogluon/fev_datasets,ercot_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1H,1.0976602987,0.0,5.863748188,95b91121d95f89c8,False,0.7.0,1.0976602987,1.3940551857,0.0716643825,0.0563341027,2.0.0,,,160
-Moirai-2.0,autogluon/fev_datasets,ercot_1M,12,15,-180,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1M,0.972573257,0.0,0.538687369,167e0223cbbc1b69,False,0.7.0,0.972573257,1.2434972767,0.0656316509,0.0509930124,2.0.0,,,120
-Moirai-2.0,autogluon/fev_datasets,ercot_1W,13,20,-260,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1W,1.0526167016,0.0,0.6395822090000001,091a619858bdabc9,False,0.7.0,1.0526167016,1.3362468506,0.0638612125,0.0502061941,2.0.0,,,160
-Moirai-2.0,autogluon/fev_datasets,favorita_stores_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'onpromotion']",['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1D,0.9798213622,0.0,36.194246871,3c676e1d0f771bf4,False,0.7.0,0.9798213622,1.2046882591,0.1568098612,0.1278709711,2.0.0,,,15790
-Moirai-2.0,autogluon/fev_datasets,favorita_stores_1M,12,2,-24,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,['onpromotion'],['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1M,2.0913151428,0.0,6.87780917,7c94de5b6e2859ff,False,0.7.0,2.0913151428,2.3235561779,0.2355426997,0.1725604577,2.0.0,,,3158
-Moirai-2.0,autogluon/fev_datasets,favorita_stores_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,['onpromotion'],['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1W,2.1965497094,0.0,33.030220139,aae27c565b10fe7f,False,0.7.0,2.1965497094,2.5772702404,0.1555078961,0.1243048273,2.0.0,,,15790
-Moirai-2.0,autogluon/fev_datasets,favorita_transactions_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,['holiday'],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1D,1.121051188,0.0,1.389233651,af6c7be9c6bf8910,True,0.7.0,1.121051188,1.3294550374,0.0837349996,0.0704503157,2.0.0,,,510
-Moirai-2.0,autogluon/fev_datasets,favorita_transactions_1M,12,2,-24,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,[],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1M,1.389630485,0.0,0.414314012,a9ebe0fd05a285b6,False,0.7.0,1.389630485,1.6105440091,0.0863027538,0.0756335151,2.0.0,,,102
-Moirai-2.0,autogluon/fev_datasets,favorita_transactions_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,[],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1W,1.4633900473,0.0,1.155559296,dcf0217a3f159ec8,False,0.7.0,1.4633900473,1.6846164482,0.0671727598,0.0569446098,2.0.0,,,510
-Moirai-2.0,autogluon/fev_datasets,fred_md_2025,12,20,-240,12,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['CPIAUCSL', 'FEDFUNDS', 'PAYEMS']",,[],"['M2REAL', 'NONBORRES', 'PPICMM', 'TOTRESNS']",[],fred_md_2025/cee,4.4766908963,0.0,0.552944769,764e9294023ee081,True,0.7.0,4.4766908963,5.4565557984,0.0869094695,0.0716513108,2.0.0,,,60
-Moirai-2.0,autogluon/fev_datasets,fred_md_2025,12,20,-240,12,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['AAA', 'AWHMAN', 'BAA', 'BUSINVx', 'CPIAUCSL', 'CPIMEDSL', 'CUMFNS', 'DMANEMP', 'EXUSUKx', 'FEDFUNDS', 'GS1', 'GS10', 'GS5', 'HOUST', 'INDPRO', 'INVEST', 'IPBUSEQ', 'IPCONGD', 'IPDCONGD', 'IPDMAT', 'IPFINAL', 'IPMANSICS', 'IPMAT', 'IPNCONGD', 'IPNMAT', 'M2REAL', 'MANEMP', 'NDMANEMP', 'NONBORRES', 'PAYEMS', 'PERMIT', 'PPICMM', 'S&P 500', 'SRVPRD', 'TB3MS', 'TB6MS', 'TOTRESNS', 'UEMP15T26', 'UEMP27OV', 'UEMP5TO14', 'UEMPLT5', 'UEMPMEAN', 'UMCSENTx', 'UNRATE', 'USCONS', 'USFIRE', 'USGOOD', 'USGOVT', 'USTPU', 'USTRADE', 'VIXCLSx']",,[],[],[],fred_md_2025/macro,5.7460131842,0.0,1.808923628,764e9294023ee081,True,0.7.0,5.7460131842,6.7646459016,0.0791642559,0.0654629315,2.0.0,,,1020
-Moirai-2.0,autogluon/fev_datasets,fred_qd_2025,8,20,-160,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['CPIAUCSL', 'FEDFUNDS', 'PAYEMS']",,[],"['M2REAL', 'NONBORRES', 'PPICMM', 'TOTRESNS']",[],fred_qd_2025/cee,2.2955960423,0.0,0.554585342,d257091c861020bf,False,0.7.0,2.2955960423,2.7932979017,0.1528913536,0.1271824649,2.0.0,,,60
-Moirai-2.0,autogluon/fev_datasets,fred_qd_2025,8,20,-160,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['AAA', 'AWHMAN', 'BAA', 'BUSINVx', 'CPIAUCSL', 'CPIMEDSL', 'CUMFNS', 'DMANEMP', 'EXUSUKx', 'FEDFUNDS', 'GS1', 'GS10', 'GS5', 'HOUST', 'INDPRO', 'INVEST', 'IPBUSEQ', 'IPCONGD', 'IPDCONGD', 'IPDMAT', 'IPFINAL', 'IPMANSICS', 'IPMAT', 'IPNCONGD', 'IPNMAT', 'M2REAL', 'MANEMP', 'NDMANEMP', 'NONBORRES', 'PAYEMS', 'PERMIT', 'PPICMM', 'S&P 500', 'SRVPRD', 'TB3MS', 'TB6MS', 'TOTRESNS', 'UEMP15T26', 'UEMP27OV', 'UEMP5TO14', 'UEMPLT5', 'UEMPMEAN', 'UMCSENTx', 'UNRATE', 'USCONS', 'USFIRE', 'USGOOD', 'USGOVT', 'USTPU', 'USTRADE', 'VIXCLSx']",,[],[],[],fred_qd_2025/macro,3.6155615726,0.0,1.782003039,d257091c861020bf,False,0.7.0,3.6155615726,4.3026427477,0.1058608346,0.0863520335,2.0.0,,,1020
-Moirai-2.0,autogluon/fev_datasets,gvar,8,10,-80,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['Dp', 'ep', 'eq', 'lr', 'r', 'y']",,[],"['pmat', 'pmetal', 'poil']",[],gvar,0.5933262207000001,0.0,3.596784672,e60f8e1e38f9acca,False,0.7.0,0.5933262207000001,0.7279795748,0.0185879215,0.015061142,2.0.0,,,1980
-Moirai-2.0,autogluon/fev_datasets,hermes,52,1,-52,52,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['external'],[],"['category', 'country']",hermes,0.7037822323,0.0,18.366003684,f87501b2bd02803b,False,0.7.0,0.7037822323,0.8853610442000001,0.0033616596,0.0026712263,2.0.0,,,10000
-Moirai-2.0,autogluon/fev_datasets,hierarchical_sales_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hierarchical_sales_1D,0.5518088152,0.0,2.306877661,0ecbb4076fd5ba78,True,0.7.0,0.5518088152,0.6876019074,0.6929680169,0.5614613644,2.0.0,,,1180
-Moirai-2.0,autogluon/fev_datasets,hierarchical_sales_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hierarchical_sales_1W,0.6277179958,0.0,1.939132401,691bd281f0ad7adc,True,0.7.0,0.6277179958,0.7655948048,0.4365023226,0.3712307803,2.0.0,,,1180
-Moirai-2.0,autogluon/fev_datasets,hospital,12,4,-48,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital,0.7105459219,0.0,4.864275203,9c6e8721c2eca10b,True,0.7.0,0.7105459219,0.8957120733,0.0931955203,0.0752559821,2.0.0,,,3068
-Moirai-2.0,autogluon/fev_datasets,hospital_admissions_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital_admissions_1D,0.5555647846,0.0,0.6626057190000001,51b7fbd3926341eb,False,0.7.0,0.5555647846,0.7187636137000001,0.5332016895,0.4120897736,2.0.0,,,160
-Moirai-2.0,autogluon/fev_datasets,hospital_admissions_1W,13,16,-208,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital_admissions_1W,0.5862064826,0.0,0.5571723150000001,bff3ae304070efd9,False,0.7.0,0.5862064826,0.7643243630000001,0.2152673571,0.1651659256,2.0.0,,,128
-Moirai-2.0,autogluon/fev_datasets,jena_weather_10T,144,20,-2880,144,1,,144,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_10T,0.3920789312,0.0,11.08090825,311a660faf591409,True,0.7.0,0.3920789312,0.4783847353,0.3120724982,0.2522566586,2.0.0,,,420
-Moirai-2.0,autogluon/fev_datasets,jena_weather_1D,28,11,-308,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_1D,1.1379488902,0.0,0.649928178,81a9d748210aa612,True,0.7.0,1.1379488902,1.4437175134,0.2822724624,0.2279692456,2.0.0,,,231
-Moirai-2.0,autogluon/fev_datasets,jena_weather_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_1H,0.365196739,0.0,1.272748865,8eb1d310607e8fee,True,0.7.0,0.365196739,0.4504717058,0.2486977516,0.2341778679,2.0.0,,,420
-Moirai-2.0,autogluon/fev_datasets,kdd_cup_2022_10T,288,10,-2880,288,1,,144,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_10T,0.5232973638,0.0,62.855532159,e200b7c6bc525a8d,True,0.7.0,0.5232973638,0.6572985425,1.6126719117,1.3048422874,2.0.0,,,1340
-Moirai-2.0,autogluon/fev_datasets,kdd_cup_2022_1D,14,10,-140,14,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_1D,0.7078449047,0.0,2.837363237,67f17ff257220281,False,0.7.0,0.7078449047,0.9125687218,0.7286467254,0.5630864114,2.0.0,,,1340
-Moirai-2.0,autogluon/fev_datasets,kdd_cup_2022_30T,96,10,-960,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_30T,0.4273561278,0.0,17.017872552,257e85b44bdb8154,False,0.7.0,0.4273561278,0.5156770351000001,1.3630170584,1.2046794654,2.0.0,,,1340
-Moirai-2.0,autogluon/fev_datasets,m5_1D,28,1,-28,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1D,0.7096470205000001,0.0,58.81697288,0d8bfe3780a2c494,True,0.7.0,0.7096470205000001,0.8691495976,0.6983870268,0.5508060623000001,2.0.0,,,30490
-Moirai-2.0,autogluon/fev_datasets,m5_1M,12,1,-12,12,6,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1M,0.9958730245,0.0,52.497364812,78d200c01b7350ff,False,0.7.0,0.9958730245,1.1773037824,0.4363167882,0.3456589364,2.0.0,,,29364
-Moirai-2.0,autogluon/fev_datasets,m5_1W,13,1,-13,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1W,0.9069017163,0.0,53.520807809,60d0a43fd09b5dcc,False,0.7.0,0.9069017163,1.1500678738,0.4286454916,0.3361267514,2.0.0,,,30490
-Moirai-2.0,autogluon/fev_datasets,proenfo_gfc12,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc12,0.7927828612000001,0.0,3.081471286,e39dc59e1a6af0e2,True,0.7.0,0.7927828612000001,0.9538351175,0.0803429749,0.0667733906,2.0.0,,,110
-Moirai-2.0,autogluon/fev_datasets,proenfo_gfc14,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc14,0.6766379469,0.0,1.207588243,90428df2dbce525e,True,0.7.0,0.6766379469,0.8457824184,0.0412692408,0.0330103974,2.0.0,,,20
-Moirai-2.0,autogluon/fev_datasets,proenfo_gfc17,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc17,0.7739798931,0.0,4.299928647,f8bf8da06e500162,True,0.7.0,0.7739798931,0.9627772801,0.0646864044,0.0518940353,2.0.0,,,160
-Moirai-2.0,autogluon/fev_datasets,redset_15T,96,10,-960,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_15T,1.0409395846,0.0,15.195069338,391e616eee276356,False,0.7.0,1.0409395846,1.1189004499,0.3051173747,0.2504748238,2.0.0,,,1260
-Moirai-2.0,autogluon/fev_datasets,redset_1H,24,10,-240,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_1H,1.4098475772,0.0,2.53171847,a7542f5bcc8cf4ab,False,0.7.0,1.4098475772,1.5362745519,0.2229073554,0.1892621749,2.0.0,,,1380
-Moirai-2.0,autogluon/fev_datasets,redset_5T,288,10,-2880,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_5T,0.7931599229,0.0,53.122756865,4776bd88b54d8a04,False,0.7.0,0.7931599229,0.9344199171,0.3707561105,0.3116496574,2.0.0,,,1180
-Moirai-2.0,autogluon/fev_datasets,restaurant,28,8,-224,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],"['air_area_name', 'air_genre_name', 'latitude', 'longitude']",restaurant,0.6805016888000001,0.0,10.248724071,3863ed9dabc164dc,True,0.7.0,0.6805016888000001,0.8516387319000001,0.3572634123,0.2814524291,2.0.0,,,6502
-Moirai-2.0,autogluon/fev_datasets,rohlik_orders_1D,61,5,2023-05-01T00:00:00,61,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,orders,,"['holiday', 'school_holidays', 'shops_closed', 'winter_school_holidays']","['blackout', 'frankfurt_shutdown', 'mini_shutdown', 'mov_change', 'precipitation', 'shutdown', 'snow', 'user_activity_1', 'user_activity_2']",[],rohlik_orders_1D,0.9699727195,0.0,0.358074954,8334ba19a7f5e7a1,False,0.7.0,0.9699727195,1.176067019,0.0552303962,0.0454924381,2.0.0,,,35
-Moirai-2.0,autogluon/fev_datasets,rohlik_orders_1W,8,5,2023-05-01T00:00:00,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,orders,,"['holiday', 'school_holidays', 'shops_closed', 'winter_school_holidays']","['blackout', 'frankfurt_shutdown', 'mini_shutdown', 'mov_change', 'precipitation', 'shutdown', 'snow', 'user_activity_1', 'user_activity_2']",[],rohlik_orders_1W,1.5315439437,0.0,0.347363741,63260348a6b49874,False,0.7.0,1.5315439437,1.8740325635,0.0612039004,0.0500948995,2.0.0,,,35
-Moirai-2.0,autogluon/fev_datasets,rohlik_sales_1D,14,1,2023-12-15T00:00:00,14,14,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'school_holidays', 'sell_price_main', 'shops_closed', 'total_orders', 'type_0_discount', 'type_1_discount', 'type_2_discount', 'type_3_discount', 'type_4_discount', 'type_5_discount', 'type_6_discount', 'winter_school_holidays']",['availability'],"['L1_category_name_en', 'L2_category_name_en', 'L3_category_name_en', 'L4_category_name_en', 'name', 'product_unique_id', 'warehouse']",rohlik_sales_1D,1.1696411255,0.0,9.487032912,22fd3891c3b685ce,False,0.7.0,1.1696411255,1.4020532381,0.3820689023,0.3202051989,2.0.0,,,4116
-Moirai-2.0,autogluon/fev_datasets,rohlik_sales_1W,8,1,2023-12-15T00:00:00,8,8,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'school_holidays', 'sell_price_main', 'shops_closed', 'total_orders', 'type_0_discount', 'type_1_discount', 'type_2_discount', 'type_3_discount', 'type_4_discount', 'type_5_discount', 'type_6_discount', 'winter_school_holidays']",['availability'],"['L1_category_name_en', 'L2_category_name_en', 'L3_category_name_en', 'L4_category_name_en', 'name', 'product_unique_id', 'warehouse']",rohlik_sales_1W,1.5157422743,0.0,8.062218683,516398d9cb76a18f,False,0.7.0,1.5157422743,1.8214908337,0.2871065438,0.2364913465,2.0.0,,,3942
-Moirai-2.0,autogluon/fev_datasets,rossmann_1D,48,10,-480,48,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Sales,,"['DayOfWeek', 'Open', 'Promo', 'SchoolHoliday', 'StateHoliday']",['Customers'],"['Assortment', 'CompetitionDistance', 'CompetitionOpenSinceMonth', 'CompetitionOpenSinceYear', 'Promo2', 'Promo2SinceWeek', 'Promo2SinceYear', 'PromoInterval', 'Store', 'StoreType']",rossmann_1D,0.5274198802,0.0,25.901444199,7c1cf165ce5e0f8b,False,0.7.0,0.5274198802,0.6480208978,0.2214855403,0.1799313223,2.0.0,,,11150
-Moirai-2.0,autogluon/fev_datasets,rossmann_1W,13,8,-104,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Sales,,"['Open', 'Promo', 'SchoolHoliday', 'StateHoliday']",['Customers'],"['Assortment', 'CompetitionDistance', 'CompetitionOpenSinceMonth', 'CompetitionOpenSinceYear', 'Promo2', 'Promo2SinceWeek', 'Promo2SinceYear', 'PromoInterval', 'Store', 'StoreType']",rossmann_1W,0.496872717,0.0,19.5478897,cf54ffb87953c85f,False,0.7.0,0.496872717,0.6439797931,0.1759210136,0.1342178268,2.0.0,,,8920
-Moirai-2.0,autogluon/fev_datasets,solar_1D,28,10,-280,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],solar_1D,0.6373379623000001,0.0,2.366733299,4a9fb28f2a62f798,False,0.7.0,0.6373379623000001,0.8134821640000001,0.2569396086,0.2003849004,2.0.0,,,1370
-Moirai-2.0,autogluon/fev_datasets,solar_1W,13,1,-13,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],solar_1W,1.6583052048,0.0,0.422742261,856de5fa702db186,False,0.7.0,1.6583052048,2.0395669896,0.3419925272,0.2786290198,2.0.0,,,137
-Moirai-2.0,autogluon/fev_datasets,solar_with_weather_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['day_length', 'humidity', 'pressure', 'rain_1h', 'snow_1h', 'temp', 'wind_speed']","['clouds_all', 'global_horizontal_irradiance']",[],solar_with_weather_15T,0.8387112868000001,0.0,1.221016802,61e547dc95d83f5d,False,0.7.0,0.8387112868000001,1.0763836253,1.3761328127,1.1204703544,2.0.0,,,20
-Moirai-2.0,autogluon/fev_datasets,solar_with_weather_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['day_length', 'humidity', 'pressure', 'rain_1h', 'snow_1h', 'temp', 'wind_speed']","['clouds_all', 'global_horizontal_irradiance']",[],solar_with_weather_1H,0.9070575976,0.0,0.6092275540000001,a5ce88d03879a959,False,0.7.0,0.9070575976,1.1358492836,1.4828350302,1.2285296788,2.0.0,,,20
-Moirai-2.0,autogluon/fev_datasets,uci_air_quality_1D,28,11,-308,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['C6H6(GT)', 'CO(GT)', 'NO2(GT)', 'NOx(GT)']",,"['AH', 'RH', 'T']",[],[],uci_air_quality_1D,1.1380484786,0.0,0.431687849,1acb95a018b86a63,False,0.7.0,1.1380484786,1.4417059353,0.2915518175,0.2299092189,2.0.0,,,44
-Moirai-2.0,autogluon/fev_datasets,uci_air_quality_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['C6H6(GT)', 'CO(GT)', 'NO2(GT)', 'NOx(GT)']",,"['AH', 'RH', 'T']",[],[],uci_air_quality_1H,0.9453838524,0.0,2.453891053,187086c23269b305,False,0.7.0,0.9453838524,1.196474258,0.3903881013,0.3062706804,2.0.0,,,80
-Moirai-2.0,autogluon/fev_datasets,uk_covid_nation_1D,28,20,-560,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['cumulative_admissions', 'cumulative_cases', 'cumulative_deaths']",,[],"['cumulative_vaccinated_1', 'cumulative_vaccinated_2', 'cumulative_vaccinated_3', 'hospital_cases', 'icu_ventilator_occupancy']",[],uk_covid_nation_1D/cumulative,6.762809245,0.0,0.835479882,cb76ab66e8a2acda,False,0.7.0,6.762809245,8.1949951543,0.0173290129,0.0145084122,2.0.0,,,240
-Moirai-2.0,autogluon/fev_datasets,uk_covid_nation_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['new_admissions', 'new_cases', 'new_deaths']",,[],"['hospital_cases', 'icu_ventilator_occupancy', 'new_vaccinated_1', 'new_vaccinated_2', 'new_vaccinated_3']",[],uk_covid_nation_1D/new,2.1353860487,0.0,0.83497427,cb76ab66e8a2acda,False,0.7.0,2.1353860487,2.5489344845,0.3626234081,0.295667223,2.0.0,,,240
-Moirai-2.0,autogluon/fev_datasets,uk_covid_nation_1W,8,4,-32,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['cumulative_admissions', 'cumulative_cases', 'cumulative_deaths']",,[],"['cumulative_vaccinated_1', 'cumulative_vaccinated_2', 'cumulative_vaccinated_3', 'hospital_cases', 'icu_ventilator_occupancy']",[],uk_covid_nation_1W/cumulative,3.0143746347,0.0,0.348891633,0398b1ae44b0e1ae,False,0.7.0,3.0143746347,3.6495679007,0.0277593429,0.0235252689,2.0.0,,,48
-Moirai-2.0,autogluon/fev_datasets,uk_covid_nation_1W,8,4,-32,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['new_admissions', 'new_cases', 'new_deaths']",,[],"['hospital_cases', 'icu_ventilator_occupancy', 'new_vaccinated_1', 'new_vaccinated_2', 'new_vaccinated_3']",[],uk_covid_nation_1W/new,3.8727833855,0.0,0.347041305,0398b1ae44b0e1ae,False,0.7.0,3.8727833855,4.5611907188,0.5119306892000001,0.4243048101,2.0.0,,,48
-Moirai-2.0,autogluon/fev_datasets,uk_covid_utla_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,new_cases,,[],[],[],uk_covid_utla_1D/new,3.565225656,0.0,3.545875829,a8353cbb69d9d419,False,0.7.0,3.565225656,4.2104220413,0.4184653059,0.3538288145,2.0.0,,,2140
-Moirai-2.0,autogluon/fev_datasets,uk_covid_utla_1W,13,5,-65,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,cumulative_cases,,[],[],[],uk_covid_utla_1W/cumulative,19.3249941782,0.0,1.769300591,e882978eeee0c5e3,False,0.7.0,19.3249941782,21.8269429168,0.2224105477,0.195409151,2.0.0,,,1070
-Moirai-2.0,autogluon/fev_datasets,us_consumption_1M,12,10,-120,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1M,1.5132208912,0.0,0.753708994,6f0b0899ba9d50bb,False,0.7.0,1.5132208912,1.7680304079,0.0248397756,0.0218430056,2.0.0,,,310
-Moirai-2.0,autogluon/fev_datasets,us_consumption_1Q,8,10,-80,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1Q,1.7957240899,0.0,0.7459153230000001,34ddaf654b836be3,False,0.7.0,1.7957240899,2.2065057075,0.0323032217,0.0274257255,2.0.0,,,310
-Moirai-2.0,autogluon/fev_datasets,us_consumption_1Y,5,10,-50,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1Y,4.8066289721,0.0,0.737644233,69d8accb103bbb77,False,0.7.0,4.8066289721,5.8237789501,0.1083728828,0.0851402532,2.0.0,,,310
-Moirai-2.0,autogluon/fev_datasets,walmart,39,1,-39,39,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['CPI', 'Fuel_Price', 'IsHoliday', 'MarkDown1', 'MarkDown2', 'MarkDown3', 'MarkDown4', 'MarkDown5', 'Temperature', 'Unemployment']",[],"['Dept', 'Size', 'Store', 'Type']",walmart,0.8447389691,0.0,5.797462587,f84328c62c91aaf5,False,0.7.0,0.8447389691,1.0559167299,0.1315481663,0.1057545178,2.0.0,,,2936
-Moirai-2.0,autogluon/fev_datasets,world_co2_emissions,5,9,-45,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_co2_emissions,2.8754184288,0.0,2.704670679,66fdc0a9c269539c,False,0.7.0,2.8754184288,3.4946390667,0.093244922,0.076153015,2.0.0,,,1719
-Moirai-2.0,autogluon/fev_datasets,world_life_expectancy,5,10,-50,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_life_expectancy,1.7852750057,0.0,3.64255007,63f326fa372ad29a,False,0.7.0,1.7852750057,2.147670042,0.0176806053,0.0144690768,2.0.0,,,2370
-Moirai-2.0,autogluon/fev_datasets,world_tourism,5,2,-10,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_tourism,3.2640026065,0.0,0.7420263460000001,f03e22f4082953f7,False,0.7.0,3.2640026065,3.9098929656,0.114122387,0.0894951758,2.0.0,,,356
-Naive,autogluon/fev_datasets,ETT_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_15T,1.3268766411,0.0,3.510378171,9f6541408f56392f,False,0.7.0,1.3268766411,1.3670854222,0.202845639,0.2051287363,2.0.1,,,280
-Naive,autogluon/fev_datasets,ETT_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1D,1.4222525092,0.0,3.049151604,ff06ef09d043bd73,False,0.7.0,1.4222525092,1.4615227122,0.336139462,0.3538102937,2.0.1,,,280
-Naive,autogluon/fev_datasets,ETT_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1H,2.3136589326,0.0,3.608040545,1051fcbf7ab489b5,False,0.7.0,2.3136589326,1.7184142013,0.3389070071,0.4903424451,2.0.1,,,280
-Naive,autogluon/fev_datasets,ETT_1W,13,5,-65,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1W,2.5092678823,0.0,0.928728969,f7babcd132f54bf3,False,0.7.0,2.5092678823,2.6201185499,0.3963210046,0.4614224698,2.0.1,,,70
-Naive,autogluon/fev_datasets,LOOP_SEATTLE_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_1D,2.4710363002,0.0,3.446405787,02d7b9f04d1c3187,False,0.7.0,2.4710363002,2.1046903302,0.0786971625,0.0919262659,2.0.1,,,3230
-Naive,autogluon/fev_datasets,LOOP_SEATTLE_1H,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_1H,3.5094786471,0.0,4.074512952,08811ee17f93df42,False,0.7.0,3.5094786471,1.7163837446,0.1526884101,0.3038598558,2.0.1,,,3230
-Naive,autogluon/fev_datasets,LOOP_SEATTLE_5T,288,10,-2880,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_5T,1.8612988657,0.0,4.404557882,c2739a4b195beef3,False,0.7.0,1.8612988657,1.0149350727,0.1121638626,0.1936404655,2.0.1,,,3230
-Naive,autogluon/fev_datasets,M_DENSE_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],M_DENSE_1D,2.1937270172,0.0,2.221364527,12417cabd3e820d7,False,0.7.0,2.1937270172,1.72924802,0.196977134,0.2323397334,2.0.1,,,300
-Naive,autogluon/fev_datasets,M_DENSE_1H,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],M_DENSE_1H,3.8689657918,0.0,2.30116339,e973593b94c21fa6,False,0.7.0,3.8689657918,2.9336598204,0.6536297143,0.84829413,2.0.1,,,300
-Naive,autogluon/fev_datasets,SZ_TAXI_15T,96,10,-960,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],SZ_TAXI_15T,1.3787889942,0.0,2.713025605,3e6f0d3380ac07cc,False,0.7.0,1.3787889942,0.7537395688,0.3568555236,0.6619538384,2.0.1,,,1560
-Naive,autogluon/fev_datasets,SZ_TAXI_1H,168,2,-336,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],SZ_TAXI_1H,2.6856786961,0.0,0.6545896640000001,7c28d9c08a8a99d2,False,0.7.0,2.6856786961,0.7531606604000001,0.246570535,0.9157567452,2.0.1,,,312
-Naive,autogluon/fev_datasets,australian_tourism,8,2,-16,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],australian_tourism,1.5916364579,0.0,0.579414926,e3e704ef830bb1f4,False,0.7.0,1.5916364579,1.5829350567,0.1803925335,0.1922018184,2.0.1,,,178
-Naive,autogluon/fev_datasets,bizitobs_l2c_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_2', 'target_3', 'target_4', 'target_5', 'target_6']",,[],[],[],bizitobs_l2c_1H,0.6654111557,0.0,1.668031744,fd3fb3349ee15a22,False,0.7.0,0.6654111557,0.7707155721000001,1.3024706409,1.3379066541,2.0.1,,,140
-Naive,autogluon/fev_datasets,bizitobs_l2c_5T,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_2', 'target_3', 'target_4', 'target_5', 'target_6']",,[],[],[],bizitobs_l2c_5T,0.6779088155,0.0,2.086682149,9cb515b57514a9ab,False,0.7.0,0.6779088155,0.7577504543,1.2818957102,1.4507804453,2.0.1,,,140
-Naive,autogluon/fev_datasets,boomlet_1062,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1062,4.3036993716,0.0,4.237490553,44381d6f431f8c90,False,0.7.0,4.3036993716,1.307870931,1.0029399408,3.1996986673,2.0.1,,,420
-Naive,autogluon/fev_datasets,boomlet_1209,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1209,3.2386174338,0.0,4.198362896,1466ee197c499055,False,0.7.0,3.2386174338,1.0545734336,0.4388518186,1.328999921,2.0.1,,,1060
-Naive,autogluon/fev_datasets,boomlet_1225,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1225,0.7453858177,0.0,4.409949159,5d9eb3c2d9389376,False,0.7.0,0.7453858177,0.3736491907,0.195260353,0.3809038981,2.0.1,,,980
-Naive,autogluon/fev_datasets,boomlet_1230,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1230,5.548152717,0.0,4.092589835,034f57f6576437cc,False,0.7.0,5.548152717,1.563197,0.3912469672,1.7490874961,2.0.1,,,460
-Naive,autogluon/fev_datasets,boomlet_1282,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1282,1.5394068156,0.0,4.215294597,de65600e18e27fe8,False,0.7.0,1.5394068156,0.8299194032,0.5673586508,1.0473420209,2.0.1,,,700
-Naive,autogluon/fev_datasets,boomlet_1487,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1487,5.651237163,0.0,6.335935434,17003e37fda85cdd,False,0.7.0,5.651237163,0.7369858245,0.2881606094,2.1936503487,2.0.1,,,1080
-Naive,autogluon/fev_datasets,boomlet_1631,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1631,1.3493380035,0.0,3.940249284,f5255f15ed8188ab,False,0.7.0,1.3493380035,0.8639891085,0.3828907337,0.5939295732000001,2.0.1,,,800
-Naive,autogluon/fev_datasets,boomlet_1676,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_75', 'target_76', 'target_77', 'target_78', 'target_79', 'target_8', 'target_80', 'target_81', 'target_82', 'target_83', 'target_84', 'target_85', 'target_86', 'target_87', 'target_88', 'target_89', 'target_9', 'target_90', 'target_91', 'target_92', 'target_93', 'target_94', 'target_95', 'target_96', 'target_97', 'target_98', 'target_99']",,[],[],[],boomlet_1676,1.3195857419,0.0,4.662361082,20768bc9d5e316c5,False,0.7.0,1.3195857419,0.8198719238000001,0.3738144227,0.5376397046,2.0.1,,,2000
-Naive,autogluon/fev_datasets,boomlet_1855,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1855,3.2734556686,0.0,4.029766827,ca3cf5b18a145f72,False,0.7.0,3.2734556686,0.680593968,0.2028796298,0.5272950774,2.0.1,,,1040
-Naive,autogluon/fev_datasets,boomlet_1975,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_8', 'target_9']",,[],[],[],boomlet_1975,0.6114911297,0.0,4.399801852,3d8d0f68506b1995,False,0.7.0,0.6114911297,0.6991117215,0.4014330303,0.3511931898,2.0.1,,,1500
-Naive,autogluon/fev_datasets,boomlet_2187,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_75', 'target_76', 'target_77', 'target_78', 'target_79', 'target_8', 'target_80', 'target_81', 'target_82', 'target_83', 'target_84', 'target_85', 'target_86', 'target_87', 'target_88', 'target_89', 'target_9', 'target_90', 'target_91', 'target_92', 'target_93', 'target_94', 'target_95', 'target_96', 'target_97', 'target_98', 'target_99']",,[],[],[],boomlet_2187,3.0072867381,0.0,5.182557712,c3fe1a491401b248,False,0.7.0,3.0072867381,1.15749623,0.403332821,1.0418096521,2.0.1,,,2000
-Naive,autogluon/fev_datasets,boomlet_285,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_8', 'target_9']",,[],[],[],boomlet_285,6.0221504695,0.0,5.013732147,3dfa571029207f1f,False,0.7.0,6.0221504695,1.2487633378,0.6725665377000001,1.2032068551,2.0.1,,,1500
-Naive,autogluon/fev_datasets,boomlet_619,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_619,1.2751647052,0.0,4.206511915,2d514811bddfc52d,False,0.7.0,1.2751647052,1.1235570145,0.9458725577,0.9678549923,2.0.1,,,1040
-Naive,autogluon/fev_datasets,boomlet_772,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_772,2.4909982911,0.0,4.439548043,66ce5fbc5ad575a2,False,0.7.0,2.4909982911,0.6290173275000001,0.2919496069,0.9858607218,2.0.1,,,1340
-Naive,autogluon/fev_datasets,boomlet_963,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_963,1.6474289575,0.0,4.170998509,bd1c23c0fd1a748e,False,0.7.0,1.6474289575,1.1186074012,0.5169750445,0.811345873,2.0.1,,,560
-Naive,autogluon/fev_datasets,ecdc_ili,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ecdc_ili,3.7763740551,0.0,1.800821581,0c0a84fa1b54ac63,False,0.7.0,3.7763740551,4.1680850656,0.5534411848,0.5547015104,2.0.1,,,240
-Naive,autogluon/fev_datasets,entsoe_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_15T,1.5177144586,0.0,1.852648955,34c503cb4346b380,False,0.7.0,1.5177144586,1.9045500461,0.1434365042,0.1154915649,2.0.1,,,120
-Naive,autogluon/fev_datasets,entsoe_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_1H,1.91535268,0.0,1.847387214,0cb6316a70bf9d47,False,0.7.0,1.91535268,2.0553481854,0.1571170386,0.144830171,2.0.1,,,120
-Naive,autogluon/fev_datasets,entsoe_30T,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_30T,1.6091505549,0.0,1.62819934,6ff7f68ac7fbd564,False,0.7.0,1.6091505549,2.0733355971,0.1462993909,0.1142494542,2.0.1,,,120
-Naive,autogluon/fev_datasets,epf_be,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Generation forecast', 'System load forecast']",[],[],epf_be,3.0844576332,0.0,0.091158044,50acce5fc8987a4f,False,0.7.0,3.0844576332,1.3609414277,0.237576263,0.5357212884,2.0.1,,,20
-Naive,autogluon/fev_datasets,epf_de,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Ampirion Load Forecast', 'PV+Wind Forecast']",[],[],epf_de,1.4012218785,0.0,0.088832844,491dc89fd5b322b5,False,0.7.0,1.4012218785,1.7417240476,0.6107063688000001,0.5286529239000001,2.0.1,,,20
-Naive,autogluon/fev_datasets,epf_fr,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Generation forecast', 'System load forecast']",[],[],epf_fr,3.8189174071,0.0,0.089605802,bc5a57cd5727d527,False,0.7.0,3.8189174071,1.160344512,0.1702834178,0.5500836774,2.0.1,,,20
-Naive,autogluon/fev_datasets,epf_np,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Grid load forecast', 'Wind power forecast']",[],[],epf_np,1.9403665636,0.0,0.102212073,80b01220b34be222,False,0.7.0,1.9403665636,2.3154975383,0.1036567884,0.0868798682,2.0.1,,,20
-Naive,autogluon/fev_datasets,epf_pjm,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['System load forecast', 'Zonal COMED load foecast']",[],[],epf_pjm,0.9298473491,0.0,0.095671282,04be360a47b231a4,False,0.7.0,0.9298473491,0.9849340527,0.1717319913,0.1641666584,2.0.1,,,20
-Naive,autogluon/fev_datasets,ercot_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1D,1.3903868406,0.0,1.952750963,d1c9de98a43d4097,False,0.7.0,1.3903868406,1.5840542166,0.1179466095,0.1043182678,2.0.1,,,160
-Naive,autogluon/fev_datasets,ercot_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1H,2.6413247553,0.0,2.300341416,95b91121d95f89c8,False,0.7.0,2.6413247553,3.1089998641,0.1561551619,0.1331050238,2.0.1,,,160
-Naive,autogluon/fev_datasets,ercot_1M,12,15,-180,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1M,3.4990135369,0.0,1.43542029,167e0223cbbc1b69,False,0.7.0,3.4990135369,4.4343715733,0.266211768,0.2106942527,2.0.1,,,120
-Naive,autogluon/fev_datasets,ercot_1W,13,20,-260,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1W,2.0789778405,0.0,2.048178636,091a619858bdabc9,False,0.7.0,2.0789778405,2.6319098716,0.1442763271,0.1143459151,2.0.1,,,160
-Naive,autogluon/fev_datasets,favorita_stores_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'onpromotion']",['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1D,2.6356836377,0.0,8.201983167,3c676e1d0f771bf4,False,0.7.0,2.6356836377,1.8830413748,0.3056042403,0.4079240646,2.0.1,,,15790
-Naive,autogluon/fev_datasets,favorita_stores_1M,12,2,-24,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,['onpromotion'],['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1M,2.0578284127,0.0,1.10296927,7c94de5b6e2859ff,False,0.7.0,2.0578284127,1.9974006051,0.1232989542,0.1701131599,2.0.1,,,3158
-Naive,autogluon/fev_datasets,favorita_stores_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,['onpromotion'],['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1W,2.4938289104,0.0,6.31823167,aae27c565b10fe7f,False,0.7.0,2.4938289104,2.5171133578,0.1528069191,0.1608274596,2.0.1,,,15790
-Naive,autogluon/fev_datasets,favorita_transactions_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,['holiday'],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1D,2.7303837473,0.0,2.27175104,af6c7be9c6bf8910,False,0.7.0,2.7303837473,1.8618151915,0.1561206006,0.2372471038,2.0.1,,,510
-Naive,autogluon/fev_datasets,favorita_transactions_1M,12,2,-24,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,[],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1M,1.7424291672,0.0,0.5297118550000001,a9ebe0fd05a285b6,False,0.7.0,1.7424291672,1.4299319146,0.0830064558,0.1052862092,2.0.1,,,102
-Naive,autogluon/fev_datasets,favorita_transactions_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,[],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1W,1.6714139443,0.0,2.04662584,dcf0217a3f159ec8,False,0.7.0,1.6714139443,1.5401800863,0.0709917221,0.0783787891,2.0.1,,,510
-Naive,autogluon/fev_datasets,fred_md_2025,12,20,-240,12,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['CPIAUCSL', 'FEDFUNDS', 'PAYEMS']",,[],"['M2REAL', 'NONBORRES', 'PPICMM', 'TOTRESNS']",[],fred_md_2025/cee,5.9195737804,0.0,1.229588085,764e9294023ee081,False,0.7.0,5.9195737804,6.7148852073,0.0912865269,0.1174362958,2.0.1,,,60
-Naive,autogluon/fev_datasets,fred_md_2025,12,20,-240,12,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['AAA', 'AWHMAN', 'BAA', 'BUSINVx', 'CPIAUCSL', 'CPIMEDSL', 'CUMFNS', 'DMANEMP', 'EXUSUKx', 'FEDFUNDS', 'GS1', 'GS10', 'GS5', 'HOUST', 'INDPRO', 'INVEST', 'IPBUSEQ', 'IPCONGD', 'IPDCONGD', 'IPDMAT', 'IPFINAL', 'IPMANSICS', 'IPMAT', 'IPNCONGD', 'IPNMAT', 'M2REAL', 'MANEMP', 'NDMANEMP', 'NONBORRES', 'PAYEMS', 'PERMIT', 'PPICMM', 'S&P 500', 'SRVPRD', 'TB3MS', 'TB6MS', 'TOTRESNS', 'UEMP15T26', 'UEMP27OV', 'UEMP5TO14', 'UEMPLT5', 'UEMPMEAN', 'UMCSENTx', 'UNRATE', 'USCONS', 'USFIRE', 'USGOOD', 'USGOVT', 'USTPU', 'USTRADE', 'VIXCLSx']",,[],[],[],fred_md_2025/macro,6.4047596955,0.0,4.164490944,764e9294023ee081,False,0.7.0,6.4047596955,7.1693509539,0.0864161201,0.0816199937,2.0.1,,,1020
-Naive,autogluon/fev_datasets,fred_qd_2025,8,20,-160,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['CPIAUCSL', 'FEDFUNDS', 'PAYEMS']",,[],"['M2REAL', 'NONBORRES', 'PPICMM', 'TOTRESNS']",[],fred_qd_2025/cee,3.675773916,0.0,1.079948611,d257091c861020bf,False,0.7.0,3.675773916,4.3666041366,0.1646972333,0.1537726616,2.0.1,,,60
-Naive,autogluon/fev_datasets,fred_qd_2025,8,20,-160,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['AAA', 'AWHMAN', 'BAA', 'BUSINVx', 'CPIAUCSL', 'CPIMEDSL', 'CUMFNS', 'DMANEMP', 'EXUSUKx', 'FEDFUNDS', 'GS1', 'GS10', 'GS5', 'HOUST', 'INDPRO', 'INVEST', 'IPBUSEQ', 'IPCONGD', 'IPDCONGD', 'IPDMAT', 'IPFINAL', 'IPMANSICS', 'IPMAT', 'IPNCONGD', 'IPNMAT', 'M2REAL', 'MANEMP', 'NDMANEMP', 'NONBORRES', 'PAYEMS', 'PERMIT', 'PPICMM', 'S&P 500', 'SRVPRD', 'TB3MS', 'TB6MS', 'TOTRESNS', 'UEMP15T26', 'UEMP27OV', 'UEMP5TO14', 'UEMPLT5', 'UEMPMEAN', 'UMCSENTx', 'UNRATE', 'USCONS', 'USFIRE', 'USGOOD', 'USGOVT', 'USTPU', 'USTRADE', 'VIXCLSx']",,[],[],[],fred_qd_2025/macro,4.251884602,0.0,4.713215858,d257091c861020bf,False,0.7.0,4.251884602,4.9115310592,0.112650905,0.0963745296,2.0.1,,,1020
-Naive,autogluon/fev_datasets,gvar,8,10,-80,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['Dp', 'ep', 'eq', 'lr', 'r', 'y']",,[],"['pmat', 'pmetal', 'poil']",[],gvar,0.6701753186,0.0,2.845799941,e60f8e1e38f9acca,False,0.7.0,0.6701753186,0.7430842013000001,0.0185624258,0.0176762713,2.0.1,,,1980
-Naive,autogluon/fev_datasets,hermes,52,1,-52,52,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['external'],[],"['category', 'country']",hermes,2.1461477983,0.0,1.013904252,f87501b2bd02803b,False,0.7.0,2.1461477983,1.9945193434,0.0087068714,0.0087083111,2.0.1,,,10000
-Naive,autogluon/fev_datasets,hierarchical_sales_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hierarchical_sales_1D,1.5929687017,0.0,2.40696877,0ecbb4076fd5ba78,False,0.7.0,1.5929687017,1.0417563414,1.0676994622,1.6764214744,2.0.1,,,1180
-Naive,autogluon/fev_datasets,hierarchical_sales_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hierarchical_sales_1W,1.3859393726,0.0,2.227905162,691bd281f0ad7adc,False,0.7.0,1.3859393726,1.1617080217,0.7169096172,0.9260072924,2.0.1,,,1180
-Naive,autogluon/fev_datasets,hospital,12,4,-48,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital,1.0208467827,0.0,1.888925297,9c6e8721c2eca10b,False,0.7.0,1.0208467827,1.10504708,0.117495615,0.1042062258,2.0.1,,,3068
-Naive,autogluon/fev_datasets,hospital_admissions_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital_admissions_1D,1.3250699981,0.0,1.927770944,51b7fbd3926341eb,False,0.7.0,1.3250699981,0.9746856833,0.7243229402,0.9837276521,2.0.1,,,160
-Naive,autogluon/fev_datasets,hospital_admissions_1W,13,16,-208,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital_admissions_1W,1.0492127258,0.0,1.563028813,bff3ae304070efd9,False,0.7.0,1.0492127258,1.0436412698,0.2933695345,0.2969374559,2.0.1,,,128
-Naive,autogluon/fev_datasets,jena_weather_10T,144,20,-2880,144,1,,144,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_10T,0.7693201112,0.0,5.354307458,311a660faf591409,False,0.7.0,0.7693201112,0.52703557,0.340848519,3.6828586054,2.0.1,,,420
-Naive,autogluon/fev_datasets,jena_weather_1D,28,11,-308,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_1D,2.1502001657,0.0,2.095606295,81a9d748210aa612,False,0.7.0,2.1502001657,1.6994317303000002,0.3843897356,0.6992484433,2.0.1,,,231
-Naive,autogluon/fev_datasets,jena_weather_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_1H,0.5788947352,0.0,4.296109526,8eb1d310607e8fee,False,0.7.0,0.5788947352,0.5374935394,0.328573375,1.6601789319,2.0.1,,,420
-Naive,autogluon/fev_datasets,kdd_cup_2022_10T,288,10,-2880,288,1,,144,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_10T,0.7544738282,0.0,3.085798529,e200b7c6bc525a8d,False,0.7.0,0.7544738282,0.7815687018,2.0376436353,2.6760920983,2.0.1,,,1340
-Naive,autogluon/fev_datasets,kdd_cup_2022_1D,14,10,-140,14,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_1D,1.1381260567,0.0,2.8824224,67f17ff257220281,False,0.7.0,1.1381260567,1.0306171345,0.8071428537,0.9265198159,2.0.1,,,1340
-Naive,autogluon/fev_datasets,kdd_cup_2022_30T,96,10,-960,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_30T,0.7638793006,0.0,3.104888948,257e85b44bdb8154,False,0.7.0,0.7638793006,0.8375670849,2.2917796373,2.5790907336,2.0.1,,,1340
-Naive,autogluon/fev_datasets,m5_1D,28,1,-28,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1D,1.9603909963,0.0,4.627232796,0d8bfe3780a2c494,False,0.7.0,1.9603909963,1.3575007837,1.0240883827,1.352981474,2.0.1,,,30490
-Naive,autogluon/fev_datasets,m5_1M,12,1,-12,12,6,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1M,1.1923633059,0.0,1.262409723,78d200c01b7350ff,False,0.7.0,1.1923633059,1.2671440715,0.4776364863,0.4471596243,2.0.1,,,29364
-Naive,autogluon/fev_datasets,m5_1W,13,1,-13,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1W,1.3557578931,0.0,2.003347142,60d0a43fd09b5dcc,False,0.7.0,1.3557578931,1.3382424884,0.5041812062000001,0.5198944018,2.0.1,,,30490
-Naive,autogluon/fev_datasets,proenfo_gfc12,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc12,2.3796009992,0.0,1.831358357,e39dc59e1a6af0e2,False,0.7.0,2.3796009992,2.6291046656,0.2325648576,0.2075379042,2.0.1,,,110
-Naive,autogluon/fev_datasets,proenfo_gfc14,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc14,3.209615645,0.0,0.187320606,90428df2dbce525e,False,0.7.0,3.209615645,3.7072504144,0.1831386365,0.158759622,2.0.1,,,20
-Naive,autogluon/fev_datasets,proenfo_gfc17,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc17,2.5749628946,0.0,2.219482583,f8bf8da06e500162,False,0.7.0,2.5749628946,2.9066491955,0.1911468029,0.1691034077,2.0.1,,,160
-Naive,autogluon/fev_datasets,redset_15T,96,10,-960,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_15T,33.9212721313,0.0,2.623423303,391e616eee276356,False,0.7.0,33.9212721313,32.0340548113,0.5721419543,1.565727146,2.0.1,,,1260
-Naive,autogluon/fev_datasets,redset_1H,24,10,-240,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_1H,10.5809680586,0.0,2.390281371,a7542f5bcc8cf4ab,False,0.7.0,10.5809680586,8.1555516024,0.4976614714,0.8881015738,2.0.1,,,1380
-Naive,autogluon/fev_datasets,redset_5T,288,10,-2880,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_5T,12.0595440026,0.0,2.812905424,4776bd88b54d8a04,False,0.7.0,12.0595440026,3.1480546918,0.6784450889,2.8198686088,2.0.1,,,1180
-Naive,autogluon/fev_datasets,restaurant,28,8,-224,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],"['air_area_name', 'air_genre_name', 'latitude', 'longitude']",restaurant,1.6150739536,0.0,3.570183881,3863ed9dabc164dc,False,0.7.0,1.6150739536,1.3993248163,0.612521477,0.7194392994000001,2.0.1,,,6502
-Naive,autogluon/fev_datasets,rohlik_orders_1D,61,5,2023-05-01T00:00:00,61,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,orders,,"['holiday', 'school_holidays', 'shops_closed', 'winter_school_holidays']","['blackout', 'frankfurt_shutdown', 'mini_shutdown', 'mov_change', 'precipitation', 'shutdown', 'snow', 'user_activity_1', 'user_activity_2']",[],rohlik_orders_1D,2.9129738594,0.0,0.5702810650000001,8334ba19a7f5e7a1,False,0.7.0,2.9129738594,2.4354371077,0.1082820654,0.1384185633,2.0.1,,,35
-Naive,autogluon/fev_datasets,rohlik_orders_1W,8,5,2023-05-01T00:00:00,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,orders,,"['holiday', 'school_holidays', 'shops_closed', 'winter_school_holidays']","['blackout', 'frankfurt_shutdown', 'mini_shutdown', 'mov_change', 'precipitation', 'shutdown', 'snow', 'user_activity_1', 'user_activity_2']",[],rohlik_orders_1W,1.4844422646,0.0,0.492512589,63260348a6b49874,False,0.7.0,1.4844422646,1.7311823321,0.058363314,0.0498648091,2.0.1,,,35
-Naive,autogluon/fev_datasets,rohlik_sales_1D,14,1,2023-12-15T00:00:00,14,14,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'school_holidays', 'sell_price_main', 'shops_closed', 'total_orders', 'type_0_discount', 'type_1_discount', 'type_2_discount', 'type_3_discount', 'type_4_discount', 'type_5_discount', 'type_6_discount', 'winter_school_holidays']",['availability'],"['L1_category_name_en', 'L2_category_name_en', 'L3_category_name_en', 'L4_category_name_en', 'name', 'product_unique_id', 'warehouse']",rohlik_sales_1D,1.5460015545,0.0,1.041383701,22fd3891c3b685ce,False,0.7.0,1.5460015545,1.7485285579,0.4717368782,0.4099413728,2.0.1,,,4116
-Naive,autogluon/fev_datasets,rohlik_sales_1W,8,1,2023-12-15T00:00:00,8,8,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'school_holidays', 'sell_price_main', 'shops_closed', 'total_orders', 'type_0_discount', 'type_1_discount', 'type_2_discount', 'type_3_discount', 'type_4_discount', 'type_5_discount', 'type_6_discount', 'winter_school_holidays']",['availability'],"['L1_category_name_en', 'L2_category_name_en', 'L3_category_name_en', 'L4_category_name_en', 'name', 'product_unique_id', 'warehouse']",rohlik_sales_1W,1.9282179039,0.0,0.724048134,516398d9cb76a18f,False,0.7.0,1.9282179039,1.9154827568,0.311866194,0.3323396817,2.0.1,,,3942
-Naive,autogluon/fev_datasets,rossmann_1D,48,10,-480,48,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Sales,,"['DayOfWeek', 'Open', 'Promo', 'SchoolHoliday', 'StateHoliday']",['Customers'],"['Assortment', 'CompetitionDistance', 'CompetitionOpenSinceMonth', 'CompetitionOpenSinceYear', 'Promo2', 'Promo2SinceWeek', 'Promo2SinceYear', 'PromoInterval', 'Store', 'StoreType']",rossmann_1D,2.7620723724,0.0,6.364531917,7c1cf165ce5e0f8b,False,0.7.0,2.7620723724,1.6195142378,0.5480500698,0.93885619,2.0.1,,,11150
-Naive,autogluon/fev_datasets,rossmann_1W,13,8,-104,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Sales,,"['Open', 'Promo', 'SchoolHoliday', 'StateHoliday']",['Customers'],"['Assortment', 'CompetitionDistance', 'CompetitionOpenSinceMonth', 'CompetitionOpenSinceYear', 'Promo2', 'Promo2SinceWeek', 'Promo2SinceYear', 'PromoInterval', 'Store', 'StoreType']",rossmann_1W,0.8987958652,0.0,4.514644747,cf54ffb87953c85f,False,0.7.0,0.8987958652,0.7960291356,0.2192445789,0.2508975252,2.0.1,,,8920
-Naive,autogluon/fev_datasets,solar_1D,28,10,-280,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],solar_1D,1.4067834918,0.0,2.366437612,4a9fb28f2a62f798,False,0.7.0,1.4067834918,0.9666968847,0.3013429433,0.4319792148,2.0.1,,,1370
-Naive,autogluon/fev_datasets,solar_1W,13,1,-13,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],solar_1W,1.4228493197,0.0,0.355450403,856de5fa702db186,False,0.7.0,1.4228493197,1.9187253475,0.326290369,0.241539109,2.0.1,,,137
-Naive,autogluon/fev_datasets,solar_with_weather_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['day_length', 'humidity', 'pressure', 'rain_1h', 'snow_1h', 'temp', 'wind_speed']","['clouds_all', 'global_horizontal_irradiance']",[],solar_with_weather_15T,2.2779930243,0.0,0.148046135,61e547dc95d83f5d,False,0.7.0,2.2779930243,1.989464318,1.0179969072,1.6964307303,2.0.1,,,20
-Naive,autogluon/fev_datasets,solar_with_weather_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['day_length', 'humidity', 'pressure', 'rain_1h', 'snow_1h', 'temp', 'wind_speed']","['clouds_all', 'global_horizontal_irradiance']",[],solar_with_weather_1H,2.1807435542,0.0,0.093606459,a5ce88d03879a959,False,0.7.0,2.1807435542,2.2682071361,1.1464484423,1.3916210721,2.0.1,,,20
-Naive,autogluon/fev_datasets,uci_air_quality_1D,28,11,-308,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['C6H6(GT)', 'CO(GT)', 'NO2(GT)', 'NOx(GT)']",,"['AH', 'RH', 'T']",[],[],uci_air_quality_1D,1.8738938294,0.0,0.6999264470000001,1acb95a018b86a63,False,0.7.0,1.8738938294,2.1090746157,0.4314649024,0.3990393174,2.0.1,,,44
-Naive,autogluon/fev_datasets,uci_air_quality_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['C6H6(GT)', 'CO(GT)', 'NO2(GT)', 'NOx(GT)']",,"['AH', 'RH', 'T']",[],[],uci_air_quality_1H,2.4249545583,0.0,1.375176707,187086c23269b305,False,0.7.0,2.4249545583,1.681575288,0.5250781342,0.8360828268,2.0.1,,,80
-Naive,autogluon/fev_datasets,uk_covid_nation_1D,28,20,-560,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['cumulative_admissions', 'cumulative_cases', 'cumulative_deaths']",,[],"['cumulative_vaccinated_1', 'cumulative_vaccinated_2', 'cumulative_vaccinated_3', 'hospital_cases', 'icu_ventilator_occupancy']",[],uk_covid_nation_1D/cumulative,23.7425594527,0.0,2.850768888,cb76ab66e8a2acda,False,0.7.0,23.7425594527,25.4400086758,0.0579707756,0.0540829702,2.0.1,,,240
-Naive,autogluon/fev_datasets,uk_covid_nation_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['new_admissions', 'new_cases', 'new_deaths']",,[],"['hospital_cases', 'icu_ventilator_occupancy', 'new_vaccinated_1', 'new_vaccinated_2', 'new_vaccinated_3']",[],uk_covid_nation_1D/new,2.6919734344,0.0,3.615446347,cb76ab66e8a2acda,False,0.7.0,2.6919734344,2.9050530888,0.453881491,0.6807093543,2.0.1,,,240
-Naive,autogluon/fev_datasets,uk_covid_nation_1W,8,4,-32,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['cumulative_admissions', 'cumulative_cases', 'cumulative_deaths']",,[],"['cumulative_vaccinated_1', 'cumulative_vaccinated_2', 'cumulative_vaccinated_3', 'hospital_cases', 'icu_ventilator_occupancy']",[],uk_covid_nation_1W/cumulative,7.7039519752,0.0,0.787945958,0398b1ae44b0e1ae,False,0.7.0,7.7039519752,8.7736590065,0.0820604023,0.0708838512,2.0.1,,,48
-Naive,autogluon/fev_datasets,uk_covid_nation_1W,8,4,-32,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['new_admissions', 'new_cases', 'new_deaths']",,[],"['hospital_cases', 'icu_ventilator_occupancy', 'new_vaccinated_1', 'new_vaccinated_2', 'new_vaccinated_3']",[],uk_covid_nation_1W/new,5.1795349212,0.0,0.949653867,0398b1ae44b0e1ae,False,0.7.0,5.1795349212,5.8035952813,0.4544002153,0.4524501242,2.0.1,,,48
-Naive,autogluon/fev_datasets,uk_covid_utla_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,new_cases,,[],[],[],uk_covid_utla_1D/new,5.1718851312,0.0,3.129911596,a8353cbb69d9d419,False,0.7.0,5.1718851312,5.9561884523,0.560081014,0.5157896779,2.0.1,,,2140
-Naive,autogluon/fev_datasets,uk_covid_utla_1W,13,5,-65,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,cumulative_cases,,[],[],[],uk_covid_utla_1W/cumulative,24.6697283453,0.0,1.329679847,e882978eeee0c5e3,False,0.7.0,24.6697283453,26.0772211706,0.2501822181,0.2340614394,2.0.1,,,1070
-Naive,autogluon/fev_datasets,us_consumption_1M,12,10,-120,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1M,1.8701116849,0.0,2.388205532,6f0b0899ba9d50bb,False,0.7.0,1.8701116849,2.1549055801,0.0367178954,0.032661543,2.0.1,,,310
-Naive,autogluon/fev_datasets,us_consumption_1Q,8,10,-80,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1Q,2.5675143796,0.0,2.013581699,34ddaf654b836be3,False,0.7.0,2.5675143796,2.9276892853,0.0568597171,0.0509220091,2.0.1,,,310
-Naive,autogluon/fev_datasets,us_consumption_1Y,5,10,-50,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1Y,6.5846226659,0.0,1.897970893,69d8accb103bbb77,False,0.7.0,6.5846226659,7.3594854558,0.1702565216,0.1514273794,2.0.1,,,310
-Naive,autogluon/fev_datasets,walmart,39,1,-39,39,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['CPI', 'Fuel_Price', 'IsHoliday', 'MarkDown1', 'MarkDown2', 'MarkDown3', 'MarkDown4', 'MarkDown5', 'Temperature', 'Unemployment']",[],"['Dept', 'Size', 'Store', 'Type']",walmart,2.0341238516,0.0,0.6757417280000001,f84328c62c91aaf5,False,0.7.0,2.0341238516,1.5240930953,0.1967352033,0.3075011099,2.0.1,,,2936
-Naive,autogluon/fev_datasets,world_co2_emissions,5,9,-45,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_co2_emissions,3.1550152472,0.0,2.246337684,66fdc0a9c269539c,False,0.7.0,3.1550152472,3.6978220012,0.0984961833,0.0832284265,2.0.1,,,1719
-Naive,autogluon/fev_datasets,world_life_expectancy,5,10,-50,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_life_expectancy,1.8297624985,0.0,3.002757054,63f326fa372ad29a,False,0.7.0,1.8297624985,2.2537764593,0.0171300128,0.0143077928,2.0.1,,,2370
-Naive,autogluon/fev_datasets,world_tourism,5,2,-10,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_tourism,3.2013302671,0.0,0.626435843,f03e22f4082953f7,False,0.7.0,3.2013302671,3.8281690603,0.1106580384,0.0866853455,2.0.1,,,356
-Seasonal Naive,autogluon/fev_datasets,ETT_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_15T,0.7624529909000001,0.0,3.341111763,9f6541408f56392f,False,0.7.0,0.7624529909000001,0.9168897854,0.1473227948,0.1224205307,2.0.1,,,280
-Seasonal Naive,autogluon/fev_datasets,ETT_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1D,1.3728451389,0.0,3.040735482,ff06ef09d043bd73,False,0.7.0,1.3728451389,1.4915469632,0.3566862594,0.3642035745,2.0.1,,,280
-Seasonal Naive,autogluon/fev_datasets,ETT_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1H,1.2068899431,0.0,4.008998366,1051fcbf7ab489b5,False,0.7.0,1.2068899431,1.3227159047,0.286422462,0.2597090183,2.0.1,,,280
-Seasonal Naive,autogluon/fev_datasets,ETT_1W,13,5,-65,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1W,2.5092678823,0.0,0.980087587,f7babcd132f54bf3,False,0.7.0,2.5092678823,2.6201185499,0.3963210046,0.4614224698,2.0.1,,,70
-Seasonal Naive,autogluon/fev_datasets,LOOP_SEATTLE_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_1D,1.0461703776,0.0,3.27932411,02d7b9f04d1c3187,False,0.7.0,1.0461703776,1.1753801207,0.0445690587,0.0397058571,2.0.1,,,3230
-Seasonal Naive,autogluon/fev_datasets,LOOP_SEATTLE_1H,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_1H,1.5008790861,0.0,4.312190361,08811ee17f93df42,False,0.7.0,1.5008790861,1.3516779911,0.1172784954,0.1307515175,2.0.1,,,3230
-Seasonal Naive,autogluon/fev_datasets,LOOP_SEATTLE_5T,288,10,-2880,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_5T,0.7515879948,0.0,4.627586663,c2739a4b195beef3,False,0.7.0,0.7515879948,0.8255932621000001,0.0883255631,0.081199984,2.0.1,,,3230
-Seasonal Naive,autogluon/fev_datasets,M_DENSE_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],M_DENSE_1D,1.262653406,0.0,1.980546653,12417cabd3e820d7,False,0.7.0,1.262653406,1.3500254954,0.1419847511,0.1367572058,2.0.1,,,300
-Seasonal Naive,autogluon/fev_datasets,M_DENSE_1H,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],M_DENSE_1H,1.3040659305,0.0,2.415494719,e973593b94c21fa6,False,0.7.0,1.3040659305,1.2398526574,0.2611668751,0.2731296131,2.0.1,,,300
-Seasonal Naive,autogluon/fev_datasets,SZ_TAXI_15T,96,10,-960,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],SZ_TAXI_15T,0.5602190946,0.0,2.815158399,3e6f0d3380ac07cc,False,0.7.0,0.5602190946,0.6992652752,0.3343059897,0.2672484294,2.0.1,,,1560
-Seasonal Naive,autogluon/fev_datasets,SZ_TAXI_1H,168,2,-336,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],SZ_TAXI_1H,0.8375139431,0.0,0.620849351,7c28d9c08a8a99d2,False,0.7.0,0.8375139431,0.6288121204,0.2122471854,0.2910650923,2.0.1,,,312
-Seasonal Naive,autogluon/fev_datasets,australian_tourism,8,2,-16,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],australian_tourism,0.8947401082,0.0,0.6046954560000001,e3e704ef830bb1f4,False,0.7.0,0.8947401082,1.0994521146,0.1130525246,0.0905870679,2.0.1,,,178
-Seasonal Naive,autogluon/fev_datasets,bizitobs_l2c_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_2', 'target_3', 'target_4', 'target_5', 'target_6']",,[],[],[],bizitobs_l2c_1H,0.8851906828,0.0,1.697552388,fd3fb3349ee15a22,False,0.7.0,0.8851906828,1.0658712657,2.2812914532,2.0969368333,2.0.1,,,140
-Seasonal Naive,autogluon/fev_datasets,bizitobs_l2c_5T,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_2', 'target_3', 'target_4', 'target_5', 'target_6']",,[],[],[],bizitobs_l2c_5T,0.9226397442,0.0,2.251047401,9cb515b57514a9ab,False,0.7.0,0.9226397442,1.0666676717,2.2837712012,2.2877704895,2.0.1,,,140
-Seasonal Naive,autogluon/fev_datasets,boomlet_1062,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1062,0.9105473153,0.0,4.250961928,44381d6f431f8c90,False,0.7.0,0.9105473153,0.9949683457,0.8355847068000001,0.7418110944,2.0.1,,,420
-Seasonal Naive,autogluon/fev_datasets,boomlet_1209,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1209,1.26373922,0.0,4.216371112,1466ee197c499055,False,0.7.0,1.26373922,1.1827230135,0.4784097772,0.5015055777,2.0.1,,,1060
-Seasonal Naive,autogluon/fev_datasets,boomlet_1225,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1225,0.7453858177,0.0,4.525989664,5d9eb3c2d9389376,False,0.7.0,0.7453858177,0.3736491907,0.195260353,0.3809038981,2.0.1,,,980
-Seasonal Naive,autogluon/fev_datasets,boomlet_1230,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1230,2.0369976474,0.0,4.121118639,034f57f6576437cc,False,0.7.0,2.0369976474,1.8986209303,0.4654206108,0.5006062673,2.0.1,,,460
-Seasonal Naive,autogluon/fev_datasets,boomlet_1282,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1282,1.5394068156,0.0,4.933665646,de65600e18e27fe8,False,0.7.0,1.5394068156,0.8299194032,0.5673586508,1.0473420209,2.0.1,,,700
-Seasonal Naive,autogluon/fev_datasets,boomlet_1487,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1487,0.8422519568,0.0,5.322197063,17003e37fda85cdd,False,0.7.0,0.8422519568,0.7188988334,0.2823812783,0.3287160259,2.0.1,,,1080
-Seasonal Naive,autogluon/fev_datasets,boomlet_1631,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1631,0.8513712543,0.0,4.979538161,f5255f15ed8188ab,False,0.7.0,0.8513712543,0.9935726652,0.4303123065,0.3678343488,2.0.1,,,800
-Seasonal Naive,autogluon/fev_datasets,boomlet_1676,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_75', 'target_76', 'target_77', 'target_78', 'target_79', 'target_8', 'target_80', 'target_81', 'target_82', 'target_83', 'target_84', 'target_85', 'target_86', 'target_87', 'target_88', 'target_89', 'target_9', 'target_90', 'target_91', 'target_92', 'target_93', 'target_94', 'target_95', 'target_96', 'target_97', 'target_98', 'target_99']",,[],[],[],boomlet_1676,0.8503822276,0.0,4.766137899,20768bc9d5e316c5,False,0.7.0,0.8503822276,0.952905272,0.4490416802,0.3899388202,2.0.1,,,2000
-Seasonal Naive,autogluon/fev_datasets,boomlet_1855,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1855,1.4642665486,0.0,4.686558257,ca3cf5b18a145f72,False,0.7.0,1.4642665486,0.8339307546,0.255325092,0.3053456375,2.0.1,,,1040
-Seasonal Naive,autogluon/fev_datasets,boomlet_1975,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_8', 'target_9']",,[],[],[],boomlet_1975,0.8427719263000001,0.0,4.804466949,3d8d0f68506b1995,False,0.7.0,0.8427719263000001,0.9041727794,0.5204730918,0.490065287,2.0.1,,,1500
-Seasonal Naive,autogluon/fev_datasets,boomlet_2187,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_75', 'target_76', 'target_77', 'target_78', 'target_79', 'target_8', 'target_80', 'target_81', 'target_82', 'target_83', 'target_84', 'target_85', 'target_86', 'target_87', 'target_88', 'target_89', 'target_9', 'target_90', 'target_91', 'target_92', 'target_93', 'target_94', 'target_95', 'target_96', 'target_97', 'target_98', 'target_99']",,[],[],[],boomlet_2187,1.6696910974,0.0,5.038808816,c3fe1a491401b248,False,0.7.0,1.6696910974,1.3439772563,0.465180005,0.5699897289,2.0.1,,,2000
-Seasonal Naive,autogluon/fev_datasets,boomlet_285,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_8', 'target_9']",,[],[],[],boomlet_285,6.0221504695,0.0,4.392174306,3dfa571029207f1f,False,0.7.0,6.0221504695,1.2487633378,0.6725665377000001,1.2032068551,2.0.1,,,1500
-Seasonal Naive,autogluon/fev_datasets,boomlet_619,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_619,1.2751647052,0.0,4.433855577,2d514811bddfc52d,False,0.7.0,1.2751647052,1.1235570145,0.9458725577,0.9678549923,2.0.1,,,1040
-Seasonal Naive,autogluon/fev_datasets,boomlet_772,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_772,2.4909982911,0.0,4.306524517,66ce5fbc5ad575a2,False,0.7.0,2.4909982911,0.6290173275000001,0.2919496069,0.9858607218,2.0.1,,,1340
-Seasonal Naive,autogluon/fev_datasets,boomlet_963,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_963,1.6474289575,0.0,3.975211827,bd1c23c0fd1a748e,False,0.7.0,1.6474289575,1.1186074012,0.5169750445,0.811345873,2.0.1,,,560
-Seasonal Naive,autogluon/fev_datasets,ecdc_ili,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ecdc_ili,3.7763740551,0.0,2.253494462,0c0a84fa1b54ac63,False,0.7.0,3.7763740551,4.1680850656,0.5534411848,0.5547015104,2.0.1,,,240
-Seasonal Naive,autogluon/fev_datasets,entsoe_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_15T,0.7806910892000001,0.0,1.7233786800000002,34c503cb4346b380,False,0.7.0,0.7806910892000001,0.9314587074,0.067677392,0.0566124331,2.0.1,,,120
-Seasonal Naive,autogluon/fev_datasets,entsoe_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_1H,1.0561195152,0.0,1.938421327,0cb6316a70bf9d47,False,0.7.0,1.0561195152,1.1014887222,0.0792450108,0.0798215745,2.0.1,,,120
-Seasonal Naive,autogluon/fev_datasets,entsoe_30T,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_30T,1.0103240484,0.0,1.643649582,6ff7f68ac7fbd564,False,0.7.0,1.0103240484,1.2161814769,0.0870952165,0.0725922166,2.0.1,,,120
-Seasonal Naive,autogluon/fev_datasets,epf_be,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Generation forecast', 'System load forecast']",[],[],epf_be,1.1502802436,0.0,0.089709034,50acce5fc8987a4f,False,0.7.0,1.1502802436,1.0270532112,0.1840044525,0.2012625857,2.0.1,,,20
-Seasonal Naive,autogluon/fev_datasets,epf_de,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Ampirion Load Forecast', 'PV+Wind Forecast']",[],[],epf_de,1.3876764191,0.0,0.090879243,491dc89fd5b322b5,False,0.7.0,1.3876764191,1.7085955085,0.7489839181,0.5919144005,2.0.1,,,20
-Seasonal Naive,autogluon/fev_datasets,epf_fr,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Generation forecast', 'System load forecast']",[],[],epf_fr,1.2455233831,0.0,0.093767945,bc5a57cd5727d527,False,0.7.0,1.2455233831,0.8501188428,0.1298259975,0.1818024008,2.0.1,,,20
-Seasonal Naive,autogluon/fev_datasets,epf_np,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Grid load forecast', 'Wind power forecast']",[],[],epf_np,1.5298484821,0.0,0.093990371,80b01220b34be222,False,0.7.0,1.5298484821,1.7613036184,0.0796461385,0.0691889058,2.0.1,,,20
-Seasonal Naive,autogluon/fev_datasets,epf_pjm,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['System load forecast', 'Zonal COMED load foecast']",[],[],epf_pjm,0.5152721396000001,0.0,0.089596553,04be360a47b231a4,False,0.7.0,0.5152721396000001,0.581167898,0.1016348289,0.0908421958,2.0.1,,,20
-Seasonal Naive,autogluon/fev_datasets,ercot_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1D,1.3382664757,0.0,1.929062194,d1c9de98a43d4097,False,0.7.0,1.3382664757,1.5987746508,0.1245740173,0.1044921679,2.0.1,,,160
-Seasonal Naive,autogluon/fev_datasets,ercot_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1H,1.3214751318,0.0,2.549025178,95b91121d95f89c8,False,0.7.0,1.3214751318,1.5757631018,0.0818516593,0.0682466944,2.0.1,,,160
-Seasonal Naive,autogluon/fev_datasets,ercot_1M,12,15,-180,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1M,0.9042858434,0.0,1.374094718,167e0223cbbc1b69,False,0.7.0,0.9042858434,1.112833491,0.0529377862,0.0427842586,2.0.1,,,120
-Seasonal Naive,autogluon/fev_datasets,ercot_1W,13,20,-260,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1W,2.0789778405,0.0,1.951122714,091a619858bdabc9,False,0.7.0,2.0789778405,2.6319098716,0.1442763271,0.1143459151,2.0.1,,,160
-Seasonal Naive,autogluon/fev_datasets,favorita_stores_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'onpromotion']",['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1D,1.6902367853,0.0,8.014557169,3c676e1d0f771bf4,False,0.7.0,1.6902367853,1.7590444116,0.2519854262,0.2375760789,2.0.1,,,15790
-Seasonal Naive,autogluon/fev_datasets,favorita_stores_1M,12,2,-24,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,['onpromotion'],['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1M,2.0967115946,0.0,1.237723949,7c94de5b6e2859ff,False,0.7.0,2.0967115946,2.2823009488,0.1900056936,0.1715121001,2.0.1,,,3158
-Seasonal Naive,autogluon/fev_datasets,favorita_stores_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,['onpromotion'],['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1W,2.4938289104,0.0,5.881875331,aae27c565b10fe7f,False,0.7.0,2.4938289104,2.5171133578,0.1528069191,0.1608274596,2.0.1,,,15790
-Seasonal Naive,autogluon/fev_datasets,favorita_transactions_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,['holiday'],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1D,1.7338216714,0.0,2.183747581,af6c7be9c6bf8910,False,0.7.0,1.7338216714,1.820047183,0.1460640723,0.1403339153,2.0.1,,,510
-Seasonal Naive,autogluon/fev_datasets,favorita_transactions_1M,12,2,-24,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,[],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1M,1.3301725476,0.0,0.520866952,a9ebe0fd05a285b6,False,0.7.0,1.3301725476,1.5197338218,0.0907197162,0.0855815678,2.0.1,,,102
-Seasonal Naive,autogluon/fev_datasets,favorita_transactions_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,[],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1W,1.6714139443,0.0,2.329457246,dcf0217a3f159ec8,False,0.7.0,1.6714139443,1.5401800863,0.0709917221,0.0783787891,2.0.1,,,510
-Seasonal Naive,autogluon/fev_datasets,fred_md_2025,12,20,-240,12,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['CPIAUCSL', 'FEDFUNDS', 'PAYEMS']",,[],"['M2REAL', 'NONBORRES', 'PPICMM', 'TOTRESNS']",[],fred_md_2025/cee,9.4371027278,0.0,1.079432671,764e9294023ee081,False,0.7.0,9.4371027278,11.870151993,0.1825383855,0.2073879582,2.0.1,,,60
-Seasonal Naive,autogluon/fev_datasets,fred_md_2025,12,20,-240,12,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['AAA', 'AWHMAN', 'BAA', 'BUSINVx', 'CPIAUCSL', 'CPIMEDSL', 'CUMFNS', 'DMANEMP', 'EXUSUKx', 'FEDFUNDS', 'GS1', 'GS10', 'GS5', 'HOUST', 'INDPRO', 'INVEST', 'IPBUSEQ', 'IPCONGD', 'IPDCONGD', 'IPDMAT', 'IPFINAL', 'IPMANSICS', 'IPMAT', 'IPNCONGD', 'IPNMAT', 'M2REAL', 'MANEMP', 'NDMANEMP', 'NONBORRES', 'PAYEMS', 'PERMIT', 'PPICMM', 'S&P 500', 'SRVPRD', 'TB3MS', 'TB6MS', 'TOTRESNS', 'UEMP15T26', 'UEMP27OV', 'UEMP5TO14', 'UEMPLT5', 'UEMPMEAN', 'UMCSENTx', 'UNRATE', 'USCONS', 'USFIRE', 'USGOOD', 'USGOVT', 'USTPU', 'USTRADE', 'VIXCLSx']",,[],[],[],fred_md_2025/macro,9.5793076258,0.0,4.268570683,764e9294023ee081,False,0.7.0,9.5793076258,11.2729488966,0.1316369599,0.119592083,2.0.1,,,1020
-Seasonal Naive,autogluon/fev_datasets,fred_qd_2025,8,20,-160,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['CPIAUCSL', 'FEDFUNDS', 'PAYEMS']",,[],"['M2REAL', 'NONBORRES', 'PPICMM', 'TOTRESNS']",[],fred_qd_2025/cee,4.4448478957,0.0,1.178469139,d257091c861020bf,False,0.7.0,4.4448478957,5.7264703884,0.2083851339,0.194192155,2.0.1,,,60
-Seasonal Naive,autogluon/fev_datasets,fred_qd_2025,8,20,-160,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['AAA', 'AWHMAN', 'BAA', 'BUSINVx', 'CPIAUCSL', 'CPIMEDSL', 'CUMFNS', 'DMANEMP', 'EXUSUKx', 'FEDFUNDS', 'GS1', 'GS10', 'GS5', 'HOUST', 'INDPRO', 'INVEST', 'IPBUSEQ', 'IPCONGD', 'IPDCONGD', 'IPDMAT', 'IPFINAL', 'IPMANSICS', 'IPMAT', 'IPNCONGD', 'IPNMAT', 'M2REAL', 'MANEMP', 'NDMANEMP', 'NONBORRES', 'PAYEMS', 'PERMIT', 'PPICMM', 'S&P 500', 'SRVPRD', 'TB3MS', 'TB6MS', 'TOTRESNS', 'UEMP15T26', 'UEMP27OV', 'UEMP5TO14', 'UEMPLT5', 'UEMPMEAN', 'UMCSENTx', 'UNRATE', 'USCONS', 'USFIRE', 'USGOOD', 'USGOVT', 'USTPU', 'USTRADE', 'VIXCLSx']",,[],[],[],fred_qd_2025/macro,5.2213314727,0.0,4.098124336,d257091c861020bf,False,0.7.0,5.2213314727,6.2532543175,0.1422945023,0.1198022215,2.0.1,,,1020
-Seasonal Naive,autogluon/fev_datasets,gvar,8,10,-80,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['Dp', 'ep', 'eq', 'lr', 'r', 'y']",,[],"['pmat', 'pmetal', 'poil']",[],gvar,0.7861696279,0.0,2.922357057,e60f8e1e38f9acca,False,0.7.0,0.7861696279,0.9186013653,0.0239340235,0.0212211567,2.0.1,,,1980
-Seasonal Naive,autogluon/fev_datasets,hermes,52,1,-52,52,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['external'],[],"['category', 'country']",hermes,2.1461477983,0.0,1.000893807,f87501b2bd02803b,False,0.7.0,2.1461477983,1.9945193434,0.0087068714,0.0087083111,2.0.1,,,10000
-Seasonal Naive,autogluon/fev_datasets,hierarchical_sales_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hierarchical_sales_1D,1.0291569643,0.0,2.816684551,0ecbb4076fd5ba78,False,0.7.0,1.0291569643,0.9949475154,1.0205006063,1.1222145629,2.0.1,,,1180
-Seasonal Naive,autogluon/fev_datasets,hierarchical_sales_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hierarchical_sales_1W,1.3859393726,0.0,2.226066589,691bd281f0ad7adc,False,0.7.0,1.3859393726,1.1617080217,0.7169096172,0.9260072924,2.0.1,,,1180
-Seasonal Naive,autogluon/fev_datasets,hospital,12,4,-48,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital,0.8075126003,0.0,1.931947289,9c6e8721c2eca10b,False,0.7.0,0.8075126003,1.0188066511,0.0954293236,0.0783920641,2.0.1,,,3068
-Seasonal Naive,autogluon/fev_datasets,hospital_admissions_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital_admissions_1D,0.8571822336,0.0,1.841966382,51b7fbd3926341eb,False,0.7.0,0.8571822336,1.0268297216,0.7622172844,0.6361459769000001,2.0.1,,,160
-Seasonal Naive,autogluon/fev_datasets,hospital_admissions_1W,13,16,-208,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital_admissions_1W,1.0492127258,0.0,1.416196559,bff3ae304070efd9,False,0.7.0,1.0492127258,1.0436412698,0.2933695345,0.2969374559,2.0.1,,,128
-Seasonal Naive,autogluon/fev_datasets,jena_weather_10T,144,20,-2880,144,1,,144,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_10T,0.6729893352,0.0,3.851353962,311a660faf591409,False,0.7.0,0.6729893352,0.7300235109000001,0.7879570897,1.7057621919,2.0.1,,,420
-Seasonal Naive,autogluon/fev_datasets,jena_weather_1D,28,11,-308,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_1D,1.7668615982,0.0,2.212954661,81a9d748210aa612,False,0.7.0,1.7668615982,1.8965701168,0.4190868366,0.4719762386,2.0.1,,,231
-Seasonal Naive,autogluon/fev_datasets,jena_weather_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_1H,0.6550438031,0.0,3.491359618,8eb1d310607e8fee,False,0.7.0,0.6550438031,0.7399001552000001,0.7711870382,1.2878361856,2.0.1,,,420
-Seasonal Naive,autogluon/fev_datasets,kdd_cup_2022_10T,288,10,-2880,288,1,,144,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_10T,0.7774995242,0.0,3.552766015,e200b7c6bc525a8d,False,0.7.0,0.7774995242,0.8187009928000001,3.3046866596,3.4658735242,2.0.1,,,1340
-Seasonal Naive,autogluon/fev_datasets,kdd_cup_2022_1D,14,10,-140,14,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_1D,0.9005495243,0.0,2.81435228,67f17ff257220281,False,0.7.0,0.9005495243,1.0844353298,0.9081870615,0.75069981,2.0.1,,,1340
-Seasonal Naive,autogluon/fev_datasets,kdd_cup_2022_30T,96,10,-960,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_30T,0.7740434291,0.0,3.002341458,257e85b44bdb8154,False,0.7.0,0.7740434291,0.8221839563000001,3.122066617,3.2580293089,2.0.1,,,1340
-Seasonal Naive,autogluon/fev_datasets,m5_1D,28,1,-28,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1D,1.2544668347,0.0,4.828917108,0d8bfe3780a2c494,False,0.7.0,1.2544668347,1.2236286692,0.9158941507,0.8588793502000001,2.0.1,,,30490
-Seasonal Naive,autogluon/fev_datasets,m5_1M,12,1,-12,12,6,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1M,1.1398593529,0.0,1.232174927,78d200c01b7350ff,False,0.7.0,1.1398593529,1.3266370526,0.5107533932,0.4285745193,2.0.1,,,29364
-Seasonal Naive,autogluon/fev_datasets,m5_1W,13,1,-13,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1W,1.3557578931,0.0,2.017565551,60d0a43fd09b5dcc,False,0.7.0,1.3557578931,1.3382424884,0.5041812062000001,0.5198944018,2.0.1,,,30490
-Seasonal Naive,autogluon/fev_datasets,proenfo_gfc12,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc12,1.1997208201,0.0,1.950526799,e39dc59e1a6af0e2,False,0.7.0,1.1997208201,1.428177457,0.1285183787,0.1088404134,2.0.1,,,110
-Seasonal Naive,autogluon/fev_datasets,proenfo_gfc14,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc14,1.0750756438,0.0,0.18898157,90428df2dbce525e,False,0.7.0,1.0750756438,1.1988543772,0.0586917939,0.0529491741,2.0.1,,,20
-Seasonal Naive,autogluon/fev_datasets,proenfo_gfc17,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc17,1.3160348949,0.0,2.200114127,f8bf8da06e500162,False,0.7.0,1.3160348949,1.5845048132,0.1077746021,0.0897222269,2.0.1,,,160
-Seasonal Naive,autogluon/fev_datasets,redset_15T,96,10,-960,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_15T,1.2313423811,0.0,2.472600023,391e616eee276356,False,0.7.0,1.2313423811,1.0323384841,0.3900802583,0.4607365658,2.0.1,,,1260
-Seasonal Naive,autogluon/fev_datasets,redset_1H,24,10,-240,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_1H,1.9424894097,0.0,2.38652295,a7542f5bcc8cf4ab,False,0.7.0,1.9424894097,1.6826194185,0.3300818771,0.4120467256,2.0.1,,,1380
-Seasonal Naive,autogluon/fev_datasets,redset_5T,288,10,-2880,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_5T,1.2243411634,0.0,2.866603317,4776bd88b54d8a04,False,0.7.0,1.2243411634,1.0410587245,0.4487639129,0.5026322375,2.0.1,,,1180
-Seasonal Naive,autogluon/fev_datasets,restaurant,28,8,-224,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],"['air_area_name', 'air_genre_name', 'latitude', 'longitude']",restaurant,0.9837597907,0.0,3.596593623,3863ed9dabc164dc,False,0.7.0,0.9837597907,1.1194990361,0.483283326,0.4263793897,2.0.1,,,6502
-Seasonal Naive,autogluon/fev_datasets,rohlik_orders_1D,61,5,2023-05-01T00:00:00,61,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,orders,,"['holiday', 'school_holidays', 'shops_closed', 'winter_school_holidays']","['blackout', 'frankfurt_shutdown', 'mini_shutdown', 'mov_change', 'precipitation', 'shutdown', 'snow', 'user_activity_1', 'user_activity_2']",[],rohlik_orders_1D,1.5544219081,0.0,0.528358624,8334ba19a7f5e7a1,False,0.7.0,1.5544219081,1.7782872152,0.0827216394,0.0730389024,2.0.1,,,35
-Seasonal Naive,autogluon/fev_datasets,rohlik_orders_1W,8,5,2023-05-01T00:00:00,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,orders,,"['holiday', 'school_holidays', 'shops_closed', 'winter_school_holidays']","['blackout', 'frankfurt_shutdown', 'mini_shutdown', 'mov_change', 'precipitation', 'shutdown', 'snow', 'user_activity_1', 'user_activity_2']",[],rohlik_orders_1W,1.4844422646,0.0,0.545209501,63260348a6b49874,False,0.7.0,1.4844422646,1.7311823321,0.058363314,0.0498648091,2.0.1,,,35
-Seasonal Naive,autogluon/fev_datasets,rohlik_sales_1D,14,1,2023-12-15T00:00:00,14,14,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'school_holidays', 'sell_price_main', 'shops_closed', 'total_orders', 'type_0_discount', 'type_1_discount', 'type_2_discount', 'type_3_discount', 'type_4_discount', 'type_5_discount', 'type_6_discount', 'winter_school_holidays']",['availability'],"['L1_category_name_en', 'L2_category_name_en', 'L3_category_name_en', 'L4_category_name_en', 'name', 'product_unique_id', 'warehouse']",rohlik_sales_1D,1.3749816723,0.0,0.998962432,22fd3891c3b685ce,False,0.7.0,1.3749816723,1.6150435602000002,0.4345725775,0.3727953997,2.0.1,,,4116
-Seasonal Naive,autogluon/fev_datasets,rohlik_sales_1W,8,1,2023-12-15T00:00:00,8,8,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'school_holidays', 'sell_price_main', 'shops_closed', 'total_orders', 'type_0_discount', 'type_1_discount', 'type_2_discount', 'type_3_discount', 'type_4_discount', 'type_5_discount', 'type_6_discount', 'winter_school_holidays']",['availability'],"['L1_category_name_en', 'L2_category_name_en', 'L3_category_name_en', 'L4_category_name_en', 'name', 'product_unique_id', 'warehouse']",rohlik_sales_1W,1.9282179039,0.0,0.7413607280000001,516398d9cb76a18f,False,0.7.0,1.9282179039,1.9154827568,0.311866194,0.3323396817,2.0.1,,,3942
-Seasonal Naive,autogluon/fev_datasets,rossmann_1D,48,10,-480,48,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Sales,,"['DayOfWeek', 'Open', 'Promo', 'SchoolHoliday', 'StateHoliday']",['Customers'],"['Assortment', 'CompetitionDistance', 'CompetitionOpenSinceMonth', 'CompetitionOpenSinceYear', 'Promo2', 'Promo2SinceWeek', 'Promo2SinceYear', 'PromoInterval', 'Store', 'StoreType']",rossmann_1D,0.9136725214,0.0,7.323782581,7c1cf165ce5e0f8b,False,0.7.0,0.9136725214,0.7885548119,0.2692451894,0.3139894604,2.0.1,,,11150
-Seasonal Naive,autogluon/fev_datasets,rossmann_1W,13,8,-104,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Sales,,"['Open', 'Promo', 'SchoolHoliday', 'StateHoliday']",['Customers'],"['Assortment', 'CompetitionDistance', 'CompetitionOpenSinceMonth', 'CompetitionOpenSinceYear', 'Promo2', 'Promo2SinceWeek', 'Promo2SinceYear', 'PromoInterval', 'Store', 'StoreType']",rossmann_1W,0.8987958652,0.0,4.245679649,cf54ffb87953c85f,False,0.7.0,0.8987958652,0.7960291356,0.2192445789,0.2508975252,2.0.1,,,8920
-Seasonal Naive,autogluon/fev_datasets,solar_1D,28,10,-280,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],solar_1D,0.9019637416,0.0,2.512184478,4a9fb28f2a62f798,False,0.7.0,0.9019637416,0.9900696291,0.3093768284,0.2794918566,2.0.1,,,1370
-Seasonal Naive,autogluon/fev_datasets,solar_1W,13,1,-13,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],solar_1W,1.4228493197,0.0,0.345574613,856de5fa702db186,False,0.7.0,1.4228493197,1.9187253475,0.326290369,0.241539109,2.0.1,,,137
-Seasonal Naive,autogluon/fev_datasets,solar_with_weather_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['day_length', 'humidity', 'pressure', 'rain_1h', 'snow_1h', 'temp', 'wind_speed']","['clouds_all', 'global_horizontal_irradiance']",[],solar_with_weather_15T,1.1937856846,0.0,0.156112923,61e547dc95d83f5d,False,0.7.0,1.1937856846,1.0500997059,1.311486863,1.4073798197,2.0.1,,,20
-Seasonal Naive,autogluon/fev_datasets,solar_with_weather_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['day_length', 'humidity', 'pressure', 'rain_1h', 'snow_1h', 'temp', 'wind_speed']","['clouds_all', 'global_horizontal_irradiance']",[],solar_with_weather_1H,1.2119606616,0.0,0.100857583,a5ce88d03879a959,False,0.7.0,1.2119606616,1.0619359164,1.2338736704,1.3170887607,2.0.1,,,20
-Seasonal Naive,autogluon/fev_datasets,uci_air_quality_1D,28,11,-308,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['C6H6(GT)', 'CO(GT)', 'NO2(GT)', 'NOx(GT)']",,"['AH', 'RH', 'T']",[],[],uci_air_quality_1D,1.4013448948,0.0,0.65034532,1acb95a018b86a63,False,0.7.0,1.4013448948,1.7337243007,0.3624341339,0.2922307509,2.0.1,,,44
-Seasonal Naive,autogluon/fev_datasets,uci_air_quality_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['C6H6(GT)', 'CO(GT)', 'NO2(GT)', 'NOx(GT)']",,"['AH', 'RH', 'T']",[],[],uci_air_quality_1H,1.3840397362,0.0,1.51837345,187086c23269b305,False,0.7.0,1.3840397362,1.4424742241,0.4562693149,0.460867968,2.0.1,,,80
-Seasonal Naive,autogluon/fev_datasets,uk_covid_nation_1D,28,20,-560,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['cumulative_admissions', 'cumulative_cases', 'cumulative_deaths']",,[],"['cumulative_vaccinated_1', 'cumulative_vaccinated_2', 'cumulative_vaccinated_3', 'hospital_cases', 'icu_ventilator_occupancy']",[],uk_covid_nation_1D/cumulative,27.0030154455,0.0,2.9943939310000003,cb76ab66e8a2acda,False,0.7.0,27.0030154455,30.7671471585,0.0695790831,0.0616683882,2.0.1,,,240
-Seasonal Naive,autogluon/fev_datasets,uk_covid_nation_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['new_admissions', 'new_cases', 'new_deaths']",,[],"['hospital_cases', 'icu_ventilator_occupancy', 'new_vaccinated_1', 'new_vaccinated_2', 'new_vaccinated_3']",[],uk_covid_nation_1D/new,2.5728651106,0.0,3.376844859,cb76ab66e8a2acda,False,0.7.0,2.5728651106,2.8996526561,0.4987584807,0.7590347607,2.0.1,,,240
-Seasonal Naive,autogluon/fev_datasets,uk_covid_nation_1W,8,4,-32,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['cumulative_admissions', 'cumulative_cases', 'cumulative_deaths']",,[],"['cumulative_vaccinated_1', 'cumulative_vaccinated_2', 'cumulative_vaccinated_3', 'hospital_cases', 'icu_ventilator_occupancy']",[],uk_covid_nation_1W/cumulative,7.7039519752,0.0,0.581385946,0398b1ae44b0e1ae,False,0.7.0,7.7039519752,8.7736590065,0.0820604023,0.0708838512,2.0.1,,,48
-Seasonal Naive,autogluon/fev_datasets,uk_covid_nation_1W,8,4,-32,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['new_admissions', 'new_cases', 'new_deaths']",,[],"['hospital_cases', 'icu_ventilator_occupancy', 'new_vaccinated_1', 'new_vaccinated_2', 'new_vaccinated_3']",[],uk_covid_nation_1W/new,5.1795349212,0.0,0.7883404930000001,0398b1ae44b0e1ae,False,0.7.0,5.1795349212,5.8035952813,0.4544002153,0.4524501242,2.0.1,,,48
-Seasonal Naive,autogluon/fev_datasets,uk_covid_utla_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,new_cases,,[],[],[],uk_covid_utla_1D/new,4.5971311302,0.0,3.037979108,a8353cbb69d9d419,False,0.7.0,4.5971311302,5.2400849649,0.5015514418,0.4420318364,2.0.1,,,2140
-Seasonal Naive,autogluon/fev_datasets,uk_covid_utla_1W,13,5,-65,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,cumulative_cases,,[],[],[],uk_covid_utla_1W/cumulative,24.6697283453,0.0,1.573106218,e882978eeee0c5e3,False,0.7.0,24.6697283453,26.0772211706,0.2501822181,0.2340614394,2.0.1,,,1070
-Seasonal Naive,autogluon/fev_datasets,us_consumption_1M,12,10,-120,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1M,2.6840778381,0.0,2.320112789,6f0b0899ba9d50bb,False,0.7.0,2.6840778381,3.1370276717,0.0583924714,0.0497079002,2.0.1,,,310
-Seasonal Naive,autogluon/fev_datasets,us_consumption_1Q,8,10,-80,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1Q,3.3237196122,0.0,2.523104623,34ddaf654b836be3,False,0.7.0,3.3237196122,3.8594112114,0.0723187622,0.0619774434,2.0.1,,,310
-Seasonal Naive,autogluon/fev_datasets,us_consumption_1Y,5,10,-50,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1Y,6.5846226659,0.0,1.972667002,69d8accb103bbb77,False,0.7.0,6.5846226659,7.3594854558,0.1702565216,0.1514273794,2.0.1,,,310
-Seasonal Naive,autogluon/fev_datasets,walmart,39,1,-39,39,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['CPI', 'Fuel_Price', 'IsHoliday', 'MarkDown1', 'MarkDown2', 'MarkDown3', 'MarkDown4', 'MarkDown5', 'Temperature', 'Unemployment']",[],"['Dept', 'Size', 'Store', 'Type']",walmart,2.0341238516,0.0,0.704313787,f84328c62c91aaf5,False,0.7.0,2.0341238516,1.5240930953,0.1967352033,0.3075011099,2.0.1,,,2936
-Seasonal Naive,autogluon/fev_datasets,world_co2_emissions,5,9,-45,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_co2_emissions,3.1550152472,0.0,2.410642099,66fdc0a9c269539c,False,0.7.0,3.1550152472,3.6978220012,0.0984961833,0.0832284265,2.0.1,,,1719
-Seasonal Naive,autogluon/fev_datasets,world_life_expectancy,5,10,-50,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_life_expectancy,1.8297624985,0.0,3.358739425,63f326fa372ad29a,False,0.7.0,1.8297624985,2.2537764593,0.0171300128,0.0143077928,2.0.1,,,2370
-Seasonal Naive,autogluon/fev_datasets,world_tourism,5,2,-10,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_tourism,3.2013302671,0.0,0.591032764,f03e22f4082953f7,False,0.7.0,3.2013302671,3.8281690603,0.1106580384,0.0866853455,2.0.1,,,356
-Stat. Ensemble,autogluon/fev_datasets,ETT_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1D,1.2707356751,0.0,591.308394604,ff06ef09d043bd73,False,0.7.0,1.2707356751,1.4122431037,0.3275626761,0.3227852613,2.0.1,,,280
-Stat. Ensemble,autogluon/fev_datasets,ETT_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1H,1.2717102201,0.0,4904.244242552,1051fcbf7ab489b5,False,0.7.0,1.2717102201,1.2518551239,0.2621275507,0.2620350459,2.0.1,,,280
-Stat. Ensemble,autogluon/fev_datasets,ETT_1W,13,5,-65,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1W,2.4073690783,0.0,121.813284998,f7babcd132f54bf3,False,0.7.0,2.4073690783,2.6874358146,0.4587044328,0.4495446321,2.0.1,,,70
-Stat. Ensemble,autogluon/fev_datasets,LOOP_SEATTLE_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_1D,0.8198461462000001,0.0,1117.570205374,02d7b9f04d1c3187,False,0.7.0,0.8198461462000001,0.9983198527,0.0378798334,0.0310410872,2.0.1,,,3230
-Stat. Ensemble,autogluon/fev_datasets,LOOP_SEATTLE_5T,288,10,-2880,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_5T,1.0436727136,0.0,708.116609412,c2739a4b195beef3,False,0.7.0,1.0436727136,0.9579580055,0.1069220781,0.1151931596,2.0.1,,,3230
-Stat. Ensemble,autogluon/fev_datasets,M_DENSE_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],M_DENSE_1D,0.9647884446,0.0,475.398940131,12417cabd3e820d7,False,0.7.0,0.9647884446,1.050932514,0.1192791395,0.1131422312,2.0.1,,,300
-Stat. Ensemble,autogluon/fev_datasets,M_DENSE_1H,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],M_DENSE_1H,1.1265341106,0.0,3308.933807024,e973593b94c21fa6,False,0.7.0,1.1265341106,1.1917704339,0.2484246612,0.2346087824,2.0.1,,,300
-Stat. Ensemble,autogluon/fev_datasets,SZ_TAXI_1H,168,2,-336,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],SZ_TAXI_1H,0.6894973186000001,0.0,906.053197735,7c28d9c08a8a99d2,False,0.7.0,0.6894973186000001,0.5582147152,0.1850999221,0.2449234495,2.0.1,,,312
-Stat. Ensemble,autogluon/fev_datasets,australian_tourism,8,2,-16,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],australian_tourism,0.7300394505000001,0.0,59.498346012,e3e704ef830bb1f4,False,0.7.0,0.7300394505000001,0.9323052664,0.0957876109,0.0747720206,2.0.1,,,178
-Stat. Ensemble,autogluon/fev_datasets,bizitobs_l2c_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_2', 'target_3', 'target_4', 'target_5', 'target_6']",,[],[],[],bizitobs_l2c_1H,0.6336059931,0.0,2581.657258101,fd3fb3349ee15a22,False,0.7.0,0.6336059931,0.7567537453000001,1.3223615305,1.2739406784,2.0.1,,,140
-Stat. Ensemble,autogluon/fev_datasets,bizitobs_l2c_5T,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_2', 'target_3', 'target_4', 'target_5', 'target_6']",,[],[],[],bizitobs_l2c_5T,0.7197078839000001,0.0,377.192475263,9cb515b57514a9ab,False,0.7.0,0.7197078839000001,0.8068916121,1.3437154961,1.5128526941,2.0.1,,,140
-Stat. Ensemble,autogluon/fev_datasets,boomlet_1062,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1062,0.9851058144,0.0,622.398566754,44381d6f431f8c90,False,0.7.0,0.9851058144,1.0019575039,0.7826401234,0.7822110511,2.0.1,,,420
-Stat. Ensemble,autogluon/fev_datasets,boomlet_1209,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1209,2.4692530935,0.0,826.410131006,1466ee197c499055,False,0.7.0,2.4692530935,1.0454166675,0.4339859435,1.0148176093,2.0.1,,,1060
-Stat. Ensemble,autogluon/fev_datasets,boomlet_1225,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1225,0.2803755249,0.0,687.830853475,5d9eb3c2d9389376,False,0.7.0,0.2803755249,0.2904167694,0.153843496,0.1451941336,2.0.1,,,980
-Stat. Ensemble,autogluon/fev_datasets,boomlet_1230,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1230,3.3900350214,0.0,626.509165054,034f57f6576437cc,False,0.7.0,3.3900350214,1.5513275237,0.3894998971,0.9994018454,2.0.1,,,460
-Stat. Ensemble,autogluon/fev_datasets,boomlet_1282,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1282,0.7391125197,0.0,685.096379452,de65600e18e27fe8,False,0.7.0,0.7391125197,0.6397695821,0.4329732117,0.49773322,2.0.1,,,700
-Stat. Ensemble,autogluon/fev_datasets,boomlet_1487,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1487,0.6807093562000001,0.0,722.394241634,17003e37fda85cdd,False,0.7.0,0.6807093562000001,0.6620511075000001,0.2612758556,0.2664583485,2.0.1,,,1080
-Stat. Ensemble,autogluon/fev_datasets,boomlet_1855,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1855,1.1233499934,0.0,8178.632638533,ca3cf5b18a145f72,False,0.7.0,1.1233499934,0.7137233958,0.2153578225,0.2389634823,2.0.1,,,1040
-Stat. Ensemble,autogluon/fev_datasets,boomlet_1975,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_8', 'target_9']",,[],[],[],boomlet_1975,0.5478588809,0.0,8213.223546339,3d8d0f68506b1995,False,0.7.0,0.5478588809,0.5885200818,0.3327476291,0.3109341662,2.0.1,,,1500
-Stat. Ensemble,autogluon/fev_datasets,boomlet_2187,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_75', 'target_76', 'target_77', 'target_78', 'target_79', 'target_8', 'target_80', 'target_81', 'target_82', 'target_83', 'target_84', 'target_85', 'target_86', 'target_87', 'target_88', 'target_89', 'target_9', 'target_90', 'target_91', 'target_92', 'target_93', 'target_94', 'target_95', 'target_96', 'target_97', 'target_98', 'target_99']",,[],[],[],boomlet_2187,1.2729717642,0.0,16619.60447995,c3fe1a491401b248,False,0.7.0,1.2729717642,1.18136692,0.4073318877,0.4312238249,2.0.1,,,2000
-Stat. Ensemble,autogluon/fev_datasets,boomlet_285,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_8', 'target_9']",,[],[],[],boomlet_285,1.2619335645,0.0,813.907301356,3dfa571029207f1f,False,0.7.0,1.2619335645,0.7526380608000001,0.3599062982,0.3030251372,2.0.1,,,1500
-Stat. Ensemble,autogluon/fev_datasets,boomlet_619,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_619,0.7771722948,0.0,768.457542738,2d514811bddfc52d,False,0.7.0,0.7771722948,1.0046773699,0.8714422486000001,0.6585898854000001,2.0.1,,,1040
-Stat. Ensemble,autogluon/fev_datasets,boomlet_772,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_772,1.1794168073,0.0,815.345085907,66ce5fbc5ad575a2,False,0.7.0,1.1794168073,0.5801758985000001,0.2635364999,0.4436068427,2.0.1,,,1340
-Stat. Ensemble,autogluon/fev_datasets,boomlet_963,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_963,1.3348061563,0.0,656.509975032,bd1c23c0fd1a748e,False,0.7.0,1.3348061563,1.1173343797,0.5013279652,0.6331985559000001,2.0.1,,,560
-Stat. Ensemble,autogluon/fev_datasets,ecdc_ili,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ecdc_ili,3.8373720704,0.0,281.839308161,0c0a84fa1b54ac63,False,0.7.0,3.8373720704,4.3217227901,0.5675356537,0.5427352164,2.0.1,,,240
-Stat. Ensemble,autogluon/fev_datasets,entsoe_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_1H,0.8919673675,0.0,4486.845290944,0cb6316a70bf9d47,False,0.7.0,0.8919673675,1.1144887827,0.0833389089,0.0660357719,2.0.1,,,120
-Stat. Ensemble,autogluon/fev_datasets,entsoe_30T,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_30T,0.8465224818,0.0,19848.176065065,6ff7f68ac7fbd564,False,0.7.0,0.8465224818,1.0577908951,0.0767360015,0.0612238614,2.0.1,,,120
-Stat. Ensemble,autogluon/fev_datasets,epf_be,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Generation forecast', 'System load forecast']",[],[],epf_be,1.2134724304,0.0,1465.778892428,50acce5fc8987a4f,False,0.7.0,1.2134724304,0.9813953164,0.1754423061,0.2109061816,2.0.1,,,20
-Stat. Ensemble,autogluon/fev_datasets,epf_de,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Ampirion Load Forecast', 'PV+Wind Forecast']",[],[],epf_de,1.1665641061,0.0,1282.873286161,491dc89fd5b322b5,False,0.7.0,1.1665641061,1.3821017935,0.6023222137,0.4882154408,2.0.1,,,20
-Stat. Ensemble,autogluon/fev_datasets,epf_fr,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Generation forecast', 'System load forecast']",[],[],epf_fr,1.1455989836,0.0,1389.970409861,bc5a57cd5727d527,False,0.7.0,1.1455989836,0.7410301647,0.1133474851,0.1676570118,2.0.1,,,20
-Stat. Ensemble,autogluon/fev_datasets,epf_np,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Grid load forecast', 'Wind power forecast']",[],[],epf_np,1.2844205231,0.0,920.482226084,80b01220b34be222,False,0.7.0,1.2844205231,1.514694987,0.0682523511,0.05738593,2.0.1,,,20
-Stat. Ensemble,autogluon/fev_datasets,epf_pjm,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['System load forecast', 'Zonal COMED load foecast']",[],[],epf_pjm,0.4870679588,0.0,1153.794469074,04be360a47b231a4,False,0.7.0,0.4870679588,0.5294817721,0.0933501931,0.0862614181,2.0.1,,,20
-Stat. Ensemble,autogluon/fev_datasets,ercot_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1D,1.2548535439,0.0,766.755828996,d1c9de98a43d4097,False,0.7.0,1.2548535439,1.5207401049,0.1129253348,0.0936050684,2.0.1,,,160
-Stat. Ensemble,autogluon/fev_datasets,ercot_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1H,1.259822515,0.0,4226.398714524,95b91121d95f89c8,False,0.7.0,1.259822515,1.610467295,0.0829790251,0.0642267414,2.0.1,,,160
-Stat. Ensemble,autogluon/fev_datasets,ercot_1M,12,15,-180,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1M,0.7617082171,0.0,279.902711693,167e0223cbbc1b69,False,0.7.0,0.7617082171,0.9720301101,0.0481692294,0.0375336712,2.0.1,,,120
-Stat. Ensemble,autogluon/fev_datasets,ercot_1W,13,20,-260,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1W,2.0949542269,0.0,346.234637116,091a619858bdabc9,False,0.7.0,2.0949542269,2.6623042168,0.1453860532,0.1138242996,2.0.1,,,160
-Stat. Ensemble,autogluon/fev_datasets,favorita_stores_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'onpromotion']",['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1D,1.1970549978,0.0,19137.806969692,3c676e1d0f771bf4,False,0.7.0,1.1970549978,1.3400112075,0.1788716882,0.1606265395,2.0.1,,,15790
-Stat. Ensemble,autogluon/fev_datasets,favorita_stores_1M,12,2,-24,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,['onpromotion'],['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1M,1.942621879,0.0,206.213942732,7c94de5b6e2859ff,False,0.7.0,1.942621879,2.1181450497,0.1466952749,0.1265354908,2.0.1,,,3158
-Stat. Ensemble,autogluon/fev_datasets,favorita_stores_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,['onpromotion'],['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1W,2.2196008497,0.0,991.292025278,aae27c565b10fe7f,False,0.7.0,2.2196008497,2.433980351,0.1436039165,0.1336292959,2.0.1,,,15790
-Stat. Ensemble,autogluon/fev_datasets,favorita_transactions_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,['holiday'],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1D,1.1848435874,0.0,1041.452981464,af6c7be9c6bf8910,False,0.7.0,1.1848435874,1.2657781225,0.1005134217,0.094900864,2.0.1,,,510
-Stat. Ensemble,autogluon/fev_datasets,favorita_transactions_1M,12,2,-24,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,[],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1M,1.1521708088,0.0,55.262591933,a9ebe0fd05a285b6,False,0.7.0,1.1521708088,1.3044406101,0.0746712369,0.0705845865,2.0.1,,,102
-Stat. Ensemble,autogluon/fev_datasets,favorita_transactions_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,[],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1W,1.55928265,0.0,284.20368462,dcf0217a3f159ec8,False,0.7.0,1.55928265,1.6323769125,0.0683781244,0.0648065086,2.0.1,,,510
-Stat. Ensemble,autogluon/fev_datasets,fred_md_2025,12,20,-240,12,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['CPIAUCSL', 'FEDFUNDS', 'PAYEMS']",,[],"['M2REAL', 'NONBORRES', 'PPICMM', 'TOTRESNS']",[],fred_md_2025/cee,3.7449838346,0.0,443.590980849,764e9294023ee081,False,0.7.0,3.7449838346,4.1492831073,0.0880950077,0.1051946757,2.0.1,,,60
-Stat. Ensemble,autogluon/fev_datasets,fred_md_2025,12,20,-240,12,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['AAA', 'AWHMAN', 'BAA', 'BUSINVx', 'CPIAUCSL', 'CPIMEDSL', 'CUMFNS', 'DMANEMP', 'EXUSUKx', 'FEDFUNDS', 'GS1', 'GS10', 'GS5', 'HOUST', 'INDPRO', 'INVEST', 'IPBUSEQ', 'IPCONGD', 'IPDCONGD', 'IPDMAT', 'IPFINAL', 'IPMANSICS', 'IPMAT', 'IPNCONGD', 'IPNMAT', 'M2REAL', 'MANEMP', 'NDMANEMP', 'NONBORRES', 'PAYEMS', 'PERMIT', 'PPICMM', 'S&P 500', 'SRVPRD', 'TB3MS', 'TB6MS', 'TOTRESNS', 'UEMP15T26', 'UEMP27OV', 'UEMP5TO14', 'UEMPLT5', 'UEMPMEAN', 'UMCSENTx', 'UNRATE', 'USCONS', 'USFIRE', 'USGOOD', 'USGOVT', 'USTPU', 'USTRADE', 'VIXCLSx']",,[],[],[],fred_md_2025/macro,5.7428835095,0.0,1531.88394101,764e9294023ee081,False,0.7.0,5.7428835095,6.4760151224,0.0850931924,0.0780002055,2.0.1,,,1020
-Stat. Ensemble,autogluon/fev_datasets,fred_qd_2025,8,20,-160,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['CPIAUCSL', 'FEDFUNDS', 'PAYEMS']",,[],"['M2REAL', 'NONBORRES', 'PPICMM', 'TOTRESNS']",[],fred_qd_2025/cee,1.9027740715,0.0,339.830400567,d257091c861020bf,False,0.7.0,1.9027740715,2.2117006108,0.1535186178,0.1373877839,2.0.1,,,60
-Stat. Ensemble,autogluon/fev_datasets,fred_qd_2025,8,20,-160,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['AAA', 'AWHMAN', 'BAA', 'BUSINVx', 'CPIAUCSL', 'CPIMEDSL', 'CUMFNS', 'DMANEMP', 'EXUSUKx', 'FEDFUNDS', 'GS1', 'GS10', 'GS5', 'HOUST', 'INDPRO', 'INVEST', 'IPBUSEQ', 'IPCONGD', 'IPDCONGD', 'IPDMAT', 'IPFINAL', 'IPMANSICS', 'IPMAT', 'IPNCONGD', 'IPNMAT', 'M2REAL', 'MANEMP', 'NDMANEMP', 'NONBORRES', 'PAYEMS', 'PERMIT', 'PPICMM', 'S&P 500', 'SRVPRD', 'TB3MS', 'TB6MS', 'TOTRESNS', 'UEMP15T26', 'UEMP27OV', 'UEMP5TO14', 'UEMPLT5', 'UEMPMEAN', 'UMCSENTx', 'UNRATE', 'USCONS', 'USFIRE', 'USGOOD', 'USGOVT', 'USTPU', 'USTRADE', 'VIXCLSx']",,[],[],[],fred_qd_2025/macro,3.6148508861,0.0,640.376472624,d257091c861020bf,False,0.7.0,3.6148508861,4.2291679217,0.1102426328,0.0918310561,2.0.1,,,1020
-Stat. Ensemble,autogluon/fev_datasets,gvar,8,10,-80,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['Dp', 'ep', 'eq', 'lr', 'r', 'y']",,[],"['pmat', 'pmetal', 'poil']",[],gvar,0.5896099351,0.0,370.731844336,e60f8e1e38f9acca,False,0.7.0,0.5896099351,0.6831004748,0.018235926,0.0162937715,2.0.1,,,1980
-Stat. Ensemble,autogluon/fev_datasets,hermes,52,1,-52,52,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['external'],[],"['category', 'country']",hermes,1.4161705928,0.0,484.092505837,f87501b2bd02803b,False,0.7.0,1.4161705928,1.8121264962,0.0078905979,0.0061269301,2.0.1,,,10000
-Stat. Ensemble,autogluon/fev_datasets,hierarchical_sales_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hierarchical_sales_1D,0.7197387018,0.0,1623.079508759,0ecbb4076fd5ba78,False,0.7.0,0.7197387018,0.8130155521,0.8618716657000001,0.8177303567,2.0.1,,,1180
-Stat. Ensemble,autogluon/fev_datasets,hierarchical_sales_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hierarchical_sales_1W,0.7460571909,0.0,305.838406241,691bd281f0ad7adc,False,0.7.0,0.7460571909,0.9004451123,0.5484556556,0.465201591,2.0.1,,,1180
-Stat. Ensemble,autogluon/fev_datasets,hospital,12,4,-48,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital,0.6974795864000001,0.0,304.955501139,9c6e8721c2eca10b,False,0.7.0,0.6974795864000001,0.8766229998,0.0920567866,0.0749195627,2.0.1,,,3068
-Stat. Ensemble,autogluon/fev_datasets,hospital_admissions_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital_admissions_1D,0.5569559255000001,0.0,406.630838224,51b7fbd3926341eb,False,0.7.0,0.5569559255000001,0.7213815906000001,0.5351516929,0.41312756,2.0.1,,,160
-Stat. Ensemble,autogluon/fev_datasets,hospital_admissions_1W,13,16,-208,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital_admissions_1W,0.5789001687,0.0,265.527152189,bff3ae304070efd9,False,0.7.0,0.5789001687,0.7551866274,0.2126255133,0.1630497452,2.0.1,,,128
-Stat. Ensemble,autogluon/fev_datasets,jena_weather_1D,28,11,-308,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_1D,1.3391730809,0.0,334.639738077,81a9d748210aa612,False,0.7.0,1.3391730809,1.5642224637000002,0.3410053076,0.3084284928,2.0.1,,,231
-Stat. Ensemble,autogluon/fev_datasets,jena_weather_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_1H,0.4515903467,0.0,4856.390390097,8eb1d310607e8fee,False,0.7.0,0.4515903467,0.4663908322,0.3278975237,1.0549343053,2.0.1,,,420
-Stat. Ensemble,autogluon/fev_datasets,kdd_cup_2022_1D,14,10,-140,14,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_1D,0.7298517236000001,0.0,422.357523714,67f17ff257220281,False,0.7.0,0.7298517236000001,0.9701127541,0.7985714674000001,0.5920639476,2.0.1,,,1340
-Stat. Ensemble,autogluon/fev_datasets,kdd_cup_2022_30T,96,10,-960,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_30T,0.6792689234,0.0,17708.502792506,257e85b44bdb8154,False,0.7.0,0.6792689234,0.7681145469,2.1525859416,2.2310513851,2.0.1,,,1340
-Stat. Ensemble,autogluon/fev_datasets,m5_1M,12,1,-12,12,6,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1M,1.0218515241,0.0,1374.809584598,78d200c01b7350ff,False,0.7.0,1.0218515241,1.1819548335,0.4417713284,0.3701215676,2.0.1,,,29364
-Stat. Ensemble,autogluon/fev_datasets,m5_1W,13,1,-13,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1W,0.9362638046,0.0,1377.807311117,60d0a43fd09b5dcc,False,0.7.0,0.9362638046,1.151797309,0.4386759996,0.3617147564,2.0.1,,,30490
-Stat. Ensemble,autogluon/fev_datasets,proenfo_gfc12,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc12,1.3049170998,0.0,1481.177475357,e39dc59e1a6af0e2,False,0.7.0,1.3049170998,1.5463300248,0.140745189,0.1181658339,2.0.1,,,110
-Stat. Ensemble,autogluon/fev_datasets,proenfo_gfc14,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc14,0.9059171447,0.0,1801.326725561,90428df2dbce525e,False,0.7.0,0.9059171447,1.1044049767,0.0540108977,0.0444124312,2.0.1,,,20
-Stat. Ensemble,autogluon/fev_datasets,proenfo_gfc17,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc17,1.1416586194,0.0,3876.877459598,f8bf8da06e500162,False,0.7.0,1.1416586194,1.4215223964,0.0960090132,0.0769991028,2.0.1,,,160
-Stat. Ensemble,autogluon/fev_datasets,redset_1H,24,10,-240,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_1H,1.8587229014,0.0,11111.154965765,a7542f5bcc8cf4ab,False,0.7.0,1.8587229014,1.761972427,0.302437371,0.3644260201,2.0.1,,,1380
-Stat. Ensemble,autogluon/fev_datasets,redset_5T,288,10,-2880,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_5T,2.6902332367,0.0,469.659707589,4776bd88b54d8a04,False,0.7.0,2.6902332367,2.1640102467,0.6020359665,0.9331343204,2.0.1,,,1180
-Stat. Ensemble,autogluon/fev_datasets,restaurant,28,8,-224,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],"['air_area_name', 'air_genre_name', 'latitude', 'longitude']",restaurant,0.7085218117000001,0.0,1636.438172128,3863ed9dabc164dc,False,0.7.0,0.7085218117000001,0.8717386477,0.3710609339,0.2987534022,2.0.1,,,6502
-Stat. Ensemble,autogluon/fev_datasets,rohlik_orders_1D,61,5,2023-05-01T00:00:00,61,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,orders,,"['holiday', 'school_holidays', 'shops_closed', 'winter_school_holidays']","['blackout', 'frankfurt_shutdown', 'mini_shutdown', 'mov_change', 'precipitation', 'shutdown', 'snow', 'user_activity_1', 'user_activity_2']",[],rohlik_orders_1D,1.2113521188,0.0,152.253078862,8334ba19a7f5e7a1,False,0.7.0,1.2113521188,1.3812243729,0.0628061324,0.0551848097,2.0.1,,,35
-Stat. Ensemble,autogluon/fev_datasets,rohlik_orders_1W,8,5,2023-05-01T00:00:00,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,orders,,"['holiday', 'school_holidays', 'shops_closed', 'winter_school_holidays']","['blackout', 'frankfurt_shutdown', 'mini_shutdown', 'mov_change', 'precipitation', 'shutdown', 'snow', 'user_activity_1', 'user_activity_2']",[],rohlik_orders_1W,1.3984122308,0.0,80.974064822,63260348a6b49874,False,0.7.0,1.3984122308,1.71276995,0.0573217526,0.0465205009,2.0.1,,,35
-Stat. Ensemble,autogluon/fev_datasets,rohlik_sales_1D,14,1,2023-12-15T00:00:00,14,14,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'school_holidays', 'sell_price_main', 'shops_closed', 'total_orders', 'type_0_discount', 'type_1_discount', 'type_2_discount', 'type_3_discount', 'type_4_discount', 'type_5_discount', 'type_6_discount', 'winter_school_holidays']",['availability'],"['L1_category_name_en', 'L2_category_name_en', 'L3_category_name_en', 'L4_category_name_en', 'name', 'product_unique_id', 'warehouse']",rohlik_sales_1D,1.2482652223,0.0,3480.038220145,22fd3891c3b685ce,False,0.7.0,1.2482652223,1.4759756392,0.4056582451,0.3425447103,2.0.1,,,4116
-Stat. Ensemble,autogluon/fev_datasets,rohlik_sales_1W,8,1,2023-12-15T00:00:00,8,8,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'school_holidays', 'sell_price_main', 'shops_closed', 'total_orders', 'type_0_discount', 'type_1_discount', 'type_2_discount', 'type_3_discount', 'type_4_discount', 'type_5_discount', 'type_6_discount', 'winter_school_holidays']",['availability'],"['L1_category_name_en', 'L2_category_name_en', 'L3_category_name_en', 'L4_category_name_en', 'name', 'product_unique_id', 'warehouse']",rohlik_sales_1W,1.6455287753,0.0,174.201546265,516398d9cb76a18f,False,0.7.0,1.6455287753,1.8249729553,0.2905908525,0.2595910509,2.0.1,,,3942
-Stat. Ensemble,autogluon/fev_datasets,rossmann_1D,48,10,-480,48,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Sales,,"['DayOfWeek', 'Open', 'Promo', 'SchoolHoliday', 'StateHoliday']",['Customers'],"['Assortment', 'CompetitionDistance', 'CompetitionOpenSinceMonth', 'CompetitionOpenSinceYear', 'Promo2', 'Promo2SinceWeek', 'Promo2SinceYear', 'PromoInterval', 'Store', 'StoreType']",rossmann_1D,0.5781148561,0.0,12099.182737344,7c1cf165ce5e0f8b,False,0.7.0,0.5781148561,0.6678317895,0.2277583107,0.1969163908,2.0.1,,,11150
-Stat. Ensemble,autogluon/fev_datasets,rossmann_1W,13,8,-104,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Sales,,"['Open', 'Promo', 'SchoolHoliday', 'StateHoliday']",['Customers'],"['Assortment', 'CompetitionDistance', 'CompetitionOpenSinceMonth', 'CompetitionOpenSinceYear', 'Promo2', 'Promo2SinceWeek', 'Promo2SinceYear', 'PromoInterval', 'Store', 'StoreType']",rossmann_1W,0.5013864497,0.0,585.627439512,cf54ffb87953c85f,False,0.7.0,0.5013864497,0.6512769978,0.1783457696,0.135127457,2.0.1,,,8920
-Stat. Ensemble,autogluon/fev_datasets,solar_1D,28,10,-280,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],solar_1D,0.6528759965,0.0,419.52374111,4a9fb28f2a62f798,False,0.7.0,0.6528759965,0.7950641496,0.2494917773,0.2041438251,2.0.1,,,1370
-Stat. Ensemble,autogluon/fev_datasets,solar_1W,13,1,-13,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],solar_1W,1.2959542496,0.0,29.938983224,856de5fa702db186,False,0.7.0,1.2959542496,1.7922537528,0.3008096814,0.2181202588,2.0.1,,,137
-Stat. Ensemble,autogluon/fev_datasets,solar_with_weather_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['day_length', 'humidity', 'pressure', 'rain_1h', 'snow_1h', 'temp', 'wind_speed']","['clouds_all', 'global_horizontal_irradiance']",[],solar_with_weather_1H,1.4584163166000002,0.0,1452.280802725,a5ce88d03879a959,False,0.7.0,1.4584163166000002,1.3147978753,1.2681774691,1.1487515083,2.0.1,,,20
-Stat. Ensemble,autogluon/fev_datasets,uci_air_quality_1D,28,11,-308,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['C6H6(GT)', 'CO(GT)', 'NO2(GT)', 'NOx(GT)']",,"['AH', 'RH', 'T']",[],[],uci_air_quality_1D,1.1225466397,0.0,223.223674699,1acb95a018b86a63,False,0.7.0,1.1225466397,1.3836855571,0.2860204957,0.2303977966,2.0.1,,,44
-Stat. Ensemble,autogluon/fev_datasets,uci_air_quality_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['C6H6(GT)', 'CO(GT)', 'NO2(GT)', 'NOx(GT)']",,"['AH', 'RH', 'T']",[],[],uci_air_quality_1H,1.5607085558,0.0,3192.157178467,187086c23269b305,False,0.7.0,1.5607085558,1.2991890754,0.4116057828,0.5268864008,2.0.1,,,80
-Stat. Ensemble,autogluon/fev_datasets,uk_covid_nation_1D,28,20,-560,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['cumulative_admissions', 'cumulative_cases', 'cumulative_deaths']",,[],"['cumulative_vaccinated_1', 'cumulative_vaccinated_2', 'cumulative_vaccinated_3', 'hospital_cases', 'icu_ventilator_occupancy']",[],uk_covid_nation_1D/cumulative,7.7115645361,0.0,768.6960846,cb76ab66e8a2acda,False,0.7.0,7.7115645361,8.8341213691,0.0214682838,0.0188346391,2.0.1,,,240
-Stat. Ensemble,autogluon/fev_datasets,uk_covid_nation_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['new_admissions', 'new_cases', 'new_deaths']",,[],"['hospital_cases', 'icu_ventilator_occupancy', 'new_vaccinated_1', 'new_vaccinated_2', 'new_vaccinated_3']",[],uk_covid_nation_1D/new,2.7990662584,0.0,901.763477651,cb76ab66e8a2acda,False,0.7.0,2.7990662584,3.1171908684,0.4527084805,0.6131520742000001,2.0.1,,,240
-Stat. Ensemble,autogluon/fev_datasets,uk_covid_nation_1W,8,4,-32,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['cumulative_admissions', 'cumulative_cases', 'cumulative_deaths']",,[],"['cumulative_vaccinated_1', 'cumulative_vaccinated_2', 'cumulative_vaccinated_3', 'hospital_cases', 'icu_ventilator_occupancy']",[],uk_covid_nation_1W/cumulative,2.2375975817,0.0,94.775343948,0398b1ae44b0e1ae,False,0.7.0,2.2375975817,2.5352192342,0.0229528998,0.0198408228,2.0.1,,,48
-Stat. Ensemble,autogluon/fev_datasets,uk_covid_nation_1W,8,4,-32,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['new_admissions', 'new_cases', 'new_deaths']",,[],"['hospital_cases', 'icu_ventilator_occupancy', 'new_vaccinated_1', 'new_vaccinated_2', 'new_vaccinated_3']",[],uk_covid_nation_1W/new,5.7411671194,0.0,91.212828663,0398b1ae44b0e1ae,False,0.7.0,5.7411671194,6.252228662,0.4829665609,0.4963902021,2.0.1,,,48
-Stat. Ensemble,autogluon/fev_datasets,uk_covid_utla_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,new_cases,,[],[],[],uk_covid_utla_1D/new,5.5816729211,0.0,3179.678684717,a8353cbb69d9d419,False,0.7.0,5.5816729211,6.2345012475,0.5653157011000001,0.5001590872,2.0.1,,,2140
-Stat. Ensemble,autogluon/fev_datasets,uk_covid_utla_1W,13,5,-65,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,cumulative_cases,,[],[],[],uk_covid_utla_1W/cumulative,14.3311431786,0.0,158.602062052,e882978eeee0c5e3,False,0.7.0,14.3311431786,15.8503479662,0.1562370956,0.138335546,2.0.1,,,1070
-Stat. Ensemble,autogluon/fev_datasets,us_consumption_1M,12,10,-120,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1M,1.4864869258,0.0,690.615290623,6f0b0899ba9d50bb,False,0.7.0,1.4864869258,1.7231034056,0.0240289312,0.0214320964,2.0.1,,,310
-Stat. Ensemble,autogluon/fev_datasets,us_consumption_1Q,8,10,-80,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1Q,1.9078230052,0.0,296.607322825,34ddaf654b836be3,False,0.7.0,1.9078230052,2.2422219291,0.0338116094,0.0294259535,2.0.1,,,310
-Stat. Ensemble,autogluon/fev_datasets,us_consumption_1Y,5,10,-50,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1Y,3.7862940987,0.0,268.117960684,69d8accb103bbb77,False,0.7.0,3.7862940987,4.453578755,0.0638795553,0.0515666785,2.0.1,,,310
-Stat. Ensemble,autogluon/fev_datasets,walmart,39,1,-39,39,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['CPI', 'Fuel_Price', 'IsHoliday', 'MarkDown1', 'MarkDown2', 'MarkDown3', 'MarkDown4', 'MarkDown5', 'Temperature', 'Unemployment']",[],"['Dept', 'Size', 'Store', 'Type']",walmart,1.2166093946,0.0,173.792624478,f84328c62c91aaf5,False,0.7.0,1.2166093946,1.3563890452,0.1773376018,0.1643578174,2.0.1,,,2936
-Stat. Ensemble,autogluon/fev_datasets,world_co2_emissions,5,9,-45,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_co2_emissions,2.6879348969,0.0,271.545519405,66fdc0a9c269539c,False,0.7.0,2.6879348969,3.1762491991,0.081172869,0.0701479592,2.0.1,,,1719
-Stat. Ensemble,autogluon/fev_datasets,world_life_expectancy,5,10,-50,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_life_expectancy,1.3050094069,0.0,308.227983309,63f326fa372ad29a,False,0.7.0,1.3050094069,1.5403532831,0.0126706732,0.010866463,2.0.1,,,2370
-Stat. Ensemble,autogluon/fev_datasets,world_tourism,5,2,-10,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_tourism,2.552402438,0.0,59.487051402,f03e22f4082953f7,False,0.7.0,2.552402438,3.0020746256,0.0681912079,0.0552036802,2.0.1,,,356
-Sundial-Base,autogluon/fev_datasets,ETT_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_15T,0.597092731,0.0,23.224015235,9f6541408f56392f,False,0.7.0,0.597092731,0.7138930444,0.1157490913,0.0969683943,,,,280
-Sundial-Base,autogluon/fev_datasets,ETT_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1D,1.2461046836,0.0,22.790157054,ff06ef09d043bd73,False,0.7.0,1.2461046836,1.4174248495,0.3646975075,0.3129149392,,,,280
-Sundial-Base,autogluon/fev_datasets,ETT_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1H,0.9634114324,0.0,23.063304525,1051fcbf7ab489b5,False,0.7.0,0.9634114324,1.1439289261,0.2547681354,0.2146782131,,,,280
-Sundial-Base,autogluon/fev_datasets,ETT_1W,13,5,-65,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1W,2.4688224531,0.0,6.305912987,f7babcd132f54bf3,False,0.7.0,2.4688224531,2.7153947044,0.5208597481,0.4643316617,,,,70
-Sundial-Base,autogluon/fev_datasets,LOOP_SEATTLE_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_1D,0.8625023325000001,0.0,250.299855604,02d7b9f04d1c3187,False,0.7.0,0.8625023325000001,0.9847669395,0.0372882528,0.0326217509,,,,3230
-Sundial-Base,autogluon/fev_datasets,LOOP_SEATTLE_1H,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_1H,0.7695770803,0.0,249.409578512,08811ee17f93df42,False,0.7.0,0.7695770803,0.9012445092,0.077676107,0.0664487294,,,,3230
-Sundial-Base,autogluon/fev_datasets,LOOP_SEATTLE_5T,288,10,-2880,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_5T,0.6606205367,0.0,252.777724307,c2739a4b195beef3,False,0.7.0,0.6606205367,0.7671902281,0.0829992138,0.0714930823,,,,3230
-Sundial-Base,autogluon/fev_datasets,M_DENSE_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],M_DENSE_1D,0.7844887054,0.0,24.85723141,12417cabd3e820d7,False,0.7.0,0.7844887054,0.8999893558000001,0.0968305223,0.0844361527,,,,300
-Sundial-Base,autogluon/fev_datasets,M_DENSE_1H,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],M_DENSE_1H,0.6604636921,0.0,23.947521482,e973593b94c21fa6,False,0.7.0,0.6604636921,0.775167995,0.1584326059,0.1339606641,,,,300
-Sundial-Base,autogluon/fev_datasets,SZ_TAXI_15T,96,10,-960,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],SZ_TAXI_15T,0.4438538338,0.0,121.765275519,3e6f0d3380ac07cc,False,0.7.0,0.4438538338,0.5133618160000001,0.245247978,0.2118998785,,,,1560
-Sundial-Base,autogluon/fev_datasets,SZ_TAXI_1H,168,2,-336,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],SZ_TAXI_1H,0.5170317067,0.0,25.087226993,7c28d9c08a8a99d2,False,0.7.0,0.5170317067,0.6129421994,0.2091502994,0.1764986928,,,,312
-Sundial-Base,autogluon/fev_datasets,australian_tourism,8,2,-16,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],australian_tourism,0.7908486579,0.0,14.482178761,e3e704ef830bb1f4,False,0.7.0,0.7908486579,0.9146409764,0.0969211906,0.0836038879,,,,178
-Sundial-Base,autogluon/fev_datasets,bizitobs_l2c_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_2', 'target_3', 'target_4', 'target_5', 'target_6']",,[],[],[],bizitobs_l2c_1H,0.4121569345,0.0,11.908737069,fd3fb3349ee15a22,False,0.7.0,0.4121569345,0.4647078621,0.4650631395,0.4028991374,,,,140
-Sundial-Base,autogluon/fev_datasets,bizitobs_l2c_5T,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_2', 'target_3', 'target_4', 'target_5', 'target_6']",,[],[],[],bizitobs_l2c_5T,0.4004194445,0.0,11.66972279,9cb515b57514a9ab,False,0.7.0,0.4004194445,0.4807818165,0.6893105085,0.5857720953000001,,,,140
-Sundial-Base,autogluon/fev_datasets,boomlet_1062,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1062,0.6467962229,0.0,33.245297767,44381d6f431f8c90,False,0.7.0,0.6467962229,0.7574670104,0.6355941124000001,0.5396810790000001,,,,420
-Sundial-Base,autogluon/fev_datasets,boomlet_1209,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1209,0.7807326884,0.0,84.585756266,1466ee197c499055,False,0.7.0,0.7807326884,0.8887982072,0.3340434651,0.2937933689,,,,1060
-Sundial-Base,autogluon/fev_datasets,boomlet_1225,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1225,0.222714996,0.0,77.337818642,5d9eb3c2d9389376,False,0.7.0,0.222714996,0.2531870103,0.1333109416,0.1172112941,,,,980
-Sundial-Base,autogluon/fev_datasets,boomlet_1230,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1230,1.3047326747,0.0,36.891696752,034f57f6576437cc,False,0.7.0,1.3047326747,1.4532188179,0.3178766378,0.2814650284,,,,460
-Sundial-Base,autogluon/fev_datasets,boomlet_1282,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1282,0.4521593639,0.0,56.066318292,de65600e18e27fe8,False,0.7.0,0.4521593639,0.5169242862,0.360391448,0.3125554342,,,,700
-Sundial-Base,autogluon/fev_datasets,boomlet_1487,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1487,0.4989559922,0.0,85.477439025,17003e37fda85cdd,False,0.7.0,0.4989559922,0.5573472172,0.2194652483,0.1963999731,,,,1080
-Sundial-Base,autogluon/fev_datasets,boomlet_1631,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1631,0.6443979368,0.0,63.308255223,f5255f15ed8188ab,False,0.7.0,0.6443979368,0.7619771372,0.3276903199,0.2762733263,,,,800
-Sundial-Base,autogluon/fev_datasets,boomlet_1676,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_75', 'target_76', 'target_77', 'target_78', 'target_79', 'target_8', 'target_80', 'target_81', 'target_82', 'target_83', 'target_84', 'target_85', 'target_86', 'target_87', 'target_88', 'target_89', 'target_9', 'target_90', 'target_91', 'target_92', 'target_93', 'target_94', 'target_95', 'target_96', 'target_97', 'target_98', 'target_99']",,[],[],[],boomlet_1676,0.6145915641,0.0,157.131531265,20768bc9d5e316c5,False,0.7.0,0.6145915641,0.7138061614,0.3249830057,0.274422727,,,,2000
-Sundial-Base,autogluon/fev_datasets,boomlet_1855,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1855,0.5254199296000001,0.0,80.64617506,ca3cf5b18a145f72,False,0.7.0,0.5254199296000001,0.59756436,0.1777051742,0.1563253928,,,,1040
-Sundial-Base,autogluon/fev_datasets,boomlet_1975,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_8', 'target_9']",,[],[],[],boomlet_1975,0.2023056594,0.0,118.642410181,3d8d0f68506b1995,False,0.7.0,0.2023056594,0.2358591523,0.1286565167,0.1103445012,,,,1500
-Sundial-Base,autogluon/fev_datasets,boomlet_2187,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_75', 'target_76', 'target_77', 'target_78', 'target_79', 'target_8', 'target_80', 'target_81', 'target_82', 'target_83', 'target_84', 'target_85', 'target_86', 'target_87', 'target_88', 'target_89', 'target_9', 'target_90', 'target_91', 'target_92', 'target_93', 'target_94', 'target_95', 'target_96', 'target_97', 'target_98', 'target_99']",,[],[],[],boomlet_2187,0.8515537165,0.0,155.433841336,c3fe1a491401b248,False,0.7.0,0.8515537165,0.9507442206,0.3149817281,0.2800640842,,,,2000
-Sundial-Base,autogluon/fev_datasets,boomlet_285,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_8', 'target_9']",,[],[],[],boomlet_285,0.4879211264,0.0,115.833902104,3dfa571029207f1f,False,0.7.0,0.4879211264,0.5605665968,0.2649652282,0.2244579194,,,,1500
-Sundial-Base,autogluon/fev_datasets,boomlet_619,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_619,0.3705071077,0.0,80.631348908,2d514811bddfc52d,False,0.7.0,0.3705071077,0.435636804,0.3109702097,0.2649462131,,,,1040
-Sundial-Base,autogluon/fev_datasets,boomlet_772,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_772,0.3520560133,0.0,104.853381478,66ce5fbc5ad575a2,False,0.7.0,0.3520560133,0.3920487456,0.1812428949,0.1611776721,,,,1340
-Sundial-Base,autogluon/fev_datasets,boomlet_963,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_963,0.7521897883,0.0,43.823091498,bd1c23c0fd1a748e,False,0.7.0,0.7521897883,0.849173272,0.4042673384,0.3456713575,,,,560
-Sundial-Base,autogluon/fev_datasets,ecdc_ili,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ecdc_ili,2.7054455064000003,0.0,19.574279701,0c0a84fa1b54ac63,False,0.7.0,2.7054455064000003,3.0367688213,0.5432749093,0.4694310556,,,,240
-Sundial-Base,autogluon/fev_datasets,entsoe_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_15T,0.6669136238000001,0.0,11.065592175,34c503cb4346b380,False,0.7.0,0.6669136238000001,0.7577799507,0.0564987165,0.0499695365,,,,120
-Sundial-Base,autogluon/fev_datasets,entsoe_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_1H,0.7440774844,0.0,10.497722073,0cb6316a70bf9d47,False,0.7.0,0.7440774844,0.8117895189000001,0.0554685768,0.050980506,,,,120
-Sundial-Base,autogluon/fev_datasets,entsoe_30T,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_30T,0.7215674609,0.0,10.765315972,6ff7f68ac7fbd564,False,0.7.0,0.7215674609,0.7796412031000001,0.0519962882,0.0485585461,,,,120
-Sundial-Base,autogluon/fev_datasets,epf_be,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Generation forecast', 'System load forecast']",[],[],epf_be,0.6465423658,0.0,2.552405056,50acce5fc8987a4f,False,0.7.0,0.6465423658,0.7222255864,0.1303241445,0.116974555,,,,20
-Sundial-Base,autogluon/fev_datasets,epf_de,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Ampirion Load Forecast', 'PV+Wind Forecast']",[],[],epf_de,1.1830726521,0.0,2.468685024,491dc89fd5b322b5,False,0.7.0,1.1830726521,1.3227461317,0.5721812874000001,0.5102784096,,,,20
-Sundial-Base,autogluon/fev_datasets,epf_fr,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Generation forecast', 'System load forecast']",[],[],epf_fr,0.461064889,0.0,2.49638821,bc5a57cd5727d527,False,0.7.0,0.461064889,0.5243569292,0.0812654203,0.0719692742,,,,20
-Sundial-Base,autogluon/fev_datasets,epf_np,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Grid load forecast', 'Wind power forecast']",[],[],epf_np,0.9450979115,0.0,2.517050379,80b01220b34be222,False,0.7.0,0.9450979115,1.0947012554,0.0496031295,0.0428252373,,,,20
-Sundial-Base,autogluon/fev_datasets,epf_pjm,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['System load forecast', 'Zonal COMED load foecast']",[],[],epf_pjm,0.4679144039,0.0,2.509950035,04be360a47b231a4,False,0.7.0,0.4679144039,0.5214143203,0.0934227692,0.084093308,,,,20
-Sundial-Base,autogluon/fev_datasets,ercot_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1D,0.9267011801,0.0,13.387621042,d1c9de98a43d4097,False,0.7.0,0.9267011801,1.1023893836,0.0776411118,0.0665392831,,,,160
-Sundial-Base,autogluon/fev_datasets,ercot_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1H,1.2226080643,0.0,13.95268241,95b91121d95f89c8,False,0.7.0,1.2226080643,1.4647042938,0.074077414,0.0625128045,,,,160
-Sundial-Base,autogluon/fev_datasets,ercot_1M,12,15,-180,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1M,0.917392765,0.0,10.217467296,167e0223cbbc1b69,False,0.7.0,0.917392765,1.0612308441,0.051032866,0.0434627402,,,,120
-Sundial-Base,autogluon/fev_datasets,ercot_1W,13,20,-260,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1W,1.2458511259,0.0,13.397193409,091a619858bdabc9,False,0.7.0,1.2458511259,1.4770568791,0.0685063219,0.0583864951,,,,160
-Sundial-Base,autogluon/fev_datasets,favorita_stores_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'onpromotion']",['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1D,1.0613262128,0.0,1252.646699473,3c676e1d0f771bf4,False,0.7.0,1.0613262128,1.2200293401,0.1561883375,0.1353609503,,,,15790
-Sundial-Base,autogluon/fev_datasets,favorita_stores_1M,12,2,-24,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,['onpromotion'],['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1M,2.2542926251,0.0,246.760545526,7c94de5b6e2859ff,False,0.7.0,2.2542926251,2.4060388473,0.2560960427,0.2222006124,,,,3158
-Sundial-Base,autogluon/fev_datasets,favorita_stores_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,['onpromotion'],['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1W,2.3082226469,0.0,1216.530733726,aae27c565b10fe7f,False,0.7.0,2.3082226469,2.561243423,0.1497412801,0.1312294599,,,,15790
-Sundial-Base,autogluon/fev_datasets,favorita_transactions_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,['holiday'],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1D,1.1981736735,0.0,41.51997163,af6c7be9c6bf8910,False,0.7.0,1.1981736735,1.324712294,0.0798803577,0.0710714949,,,,510
-Sundial-Base,autogluon/fev_datasets,favorita_transactions_1M,12,2,-24,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,[],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1M,1.4526874778,0.0,9.23077162,a9ebe0fd05a285b6,False,0.7.0,1.4526874778,1.6184833791000002,0.0944761617,0.0834713904,,,,102
-Sundial-Base,autogluon/fev_datasets,favorita_transactions_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,[],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1W,1.8454095028,0.0,40.075306768,dcf0217a3f159ec8,False,0.7.0,1.8454095028,2.0992640534,0.0715127803,0.0632163955,,,,510
-Sundial-Base,autogluon/fev_datasets,fred_md_2025,12,20,-240,12,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['CPIAUCSL', 'FEDFUNDS', 'PAYEMS']",,[],"['M2REAL', 'NONBORRES', 'PPICMM', 'TOTRESNS']",[],fred_md_2025/cee,4.8863751494,0.0,5.522898585,764e9294023ee081,False,0.7.0,4.8863751494,5.6396642877000005,0.1094554538,0.0954701869,,,,60
-Sundial-Base,autogluon/fev_datasets,fred_md_2025,12,20,-240,12,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['AAA', 'AWHMAN', 'BAA', 'BUSINVx', 'CPIAUCSL', 'CPIMEDSL', 'CUMFNS', 'DMANEMP', 'EXUSUKx', 'FEDFUNDS', 'GS1', 'GS10', 'GS5', 'HOUST', 'INDPRO', 'INVEST', 'IPBUSEQ', 'IPCONGD', 'IPDCONGD', 'IPDMAT', 'IPFINAL', 'IPMANSICS', 'IPMAT', 'IPNCONGD', 'IPNMAT', 'M2REAL', 'MANEMP', 'NDMANEMP', 'NONBORRES', 'PAYEMS', 'PERMIT', 'PPICMM', 'S&P 500', 'SRVPRD', 'TB3MS', 'TB6MS', 'TOTRESNS', 'UEMP15T26', 'UEMP27OV', 'UEMP5TO14', 'UEMPLT5', 'UEMPMEAN', 'UMCSENTx', 'UNRATE', 'USCONS', 'USFIRE', 'USGOOD', 'USGOVT', 'USTPU', 'USTRADE', 'VIXCLSx']",,[],[],[],fred_md_2025/macro,6.2236190621,0.0,80.335573443,764e9294023ee081,False,0.7.0,6.2236190621,6.9855690276,0.0866654116,0.0758142866,,,,1020
-Sundial-Base,autogluon/fev_datasets,fred_qd_2025,8,20,-160,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['CPIAUCSL', 'FEDFUNDS', 'PAYEMS']",,[],"['M2REAL', 'NONBORRES', 'PPICMM', 'TOTRESNS']",[],fred_qd_2025/cee,3.6414340592,0.0,5.405373947,d257091c861020bf,False,0.7.0,3.6414340592,4.1237296063,0.2050228651,0.1631968012,,,,60
-Sundial-Base,autogluon/fev_datasets,fred_qd_2025,8,20,-160,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['AAA', 'AWHMAN', 'BAA', 'BUSINVx', 'CPIAUCSL', 'CPIMEDSL', 'CUMFNS', 'DMANEMP', 'EXUSUKx', 'FEDFUNDS', 'GS1', 'GS10', 'GS5', 'HOUST', 'INDPRO', 'INVEST', 'IPBUSEQ', 'IPCONGD', 'IPDCONGD', 'IPDMAT', 'IPFINAL', 'IPMANSICS', 'IPMAT', 'IPNCONGD', 'IPNMAT', 'M2REAL', 'MANEMP', 'NDMANEMP', 'NONBORRES', 'PAYEMS', 'PERMIT', 'PPICMM', 'S&P 500', 'SRVPRD', 'TB3MS', 'TB6MS', 'TOTRESNS', 'UEMP15T26', 'UEMP27OV', 'UEMP5TO14', 'UEMPLT5', 'UEMPMEAN', 'UMCSENTx', 'UNRATE', 'USCONS', 'USFIRE', 'USGOOD', 'USGOVT', 'USTPU', 'USTRADE', 'VIXCLSx']",,[],[],[],fred_qd_2025/macro,4.5427910096,0.0,79.503122584,d257091c861020bf,False,0.7.0,4.5427910096,5.0800217147,0.1156803335,0.1012011908,,,,1020
-Sundial-Base,autogluon/fev_datasets,gvar,8,10,-80,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['Dp', 'ep', 'eq', 'lr', 'r', 'y']",,[],"['pmat', 'pmetal', 'poil']",[],gvar,0.7468286472,0.0,154.825142167,e60f8e1e38f9acca,False,0.7.0,0.7468286472,0.8613958999,0.0219536834,0.0185296964,,,,1980
-Sundial-Base,autogluon/fev_datasets,hermes,52,1,-52,52,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['external'],[],"['category', 'country']",hermes,0.8242736568,0.0,778.202074955,f87501b2bd02803b,False,0.7.0,0.8242736568,0.959480348,0.0036552635,0.0031453384,,,,10000
-Sundial-Base,autogluon/fev_datasets,hierarchical_sales_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hierarchical_sales_1D,0.63854811,0.0,92.39660821,0ecbb4076fd5ba78,False,0.7.0,0.63854811,0.7291028689,0.7362602293,0.647815962,,,,1180
-Sundial-Base,autogluon/fev_datasets,hierarchical_sales_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hierarchical_sales_1W,0.7066222052000001,0.0,92.309253672,691bd281f0ad7adc,False,0.7.0,0.7066222052000001,0.8055524179,0.4750745565,0.4228486488,,,,1180
-Sundial-Base,autogluon/fev_datasets,hospital,12,4,-48,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital,0.8343055996000001,0.0,235.985407399,9c6e8721c2eca10b,False,0.7.0,0.8343055996000001,0.9575868855,0.1026285514,0.0900986355,,,,3068
-Sundial-Base,autogluon/fev_datasets,hospital_admissions_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital_admissions_1D,0.610265181,0.0,13.449246273,51b7fbd3926341eb,False,0.7.0,0.610265181,0.7225061727000001,0.5358891719000001,0.4526293478,,,,160
-Sundial-Base,autogluon/fev_datasets,hospital_admissions_1W,13,16,-208,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital_admissions_1W,0.6410506868,0.0,11.096329643,bff3ae304070efd9,False,0.7.0,0.6410506868,0.7598582682,0.2139370313,0.1802484199,,,,128
-Sundial-Base,autogluon/fev_datasets,jena_weather_10T,144,20,-2880,144,1,,144,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_10T,0.4152438085,0.0,33.623506295,311a660faf591409,False,0.7.0,0.4152438085,0.4900412345,0.3908659499,0.3371179261,,,,420
-Sundial-Base,autogluon/fev_datasets,jena_weather_1D,28,11,-308,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_1D,1.2388075013,0.0,18.993873103,81a9d748210aa612,False,0.7.0,1.2388075013,1.4276462192,0.306889223,0.2665635899,,,,231
-Sundial-Base,autogluon/fev_datasets,jena_weather_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_1H,0.3803257267,0.0,34.348362973,8eb1d310607e8fee,False,0.7.0,0.3803257267,0.4459427668,0.435202554,0.4350680693,,,,420
-Sundial-Base,autogluon/fev_datasets,kdd_cup_2022_10T,288,10,-2880,288,1,,144,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_10T,0.2699963407,0.0,107.107984053,e200b7c6bc525a8d,True,0.7.0,0.2699963407,0.3142160547,0.6564920723000001,0.5695530374000001,,,,1340
-Sundial-Base,autogluon/fev_datasets,kdd_cup_2022_1D,14,10,-140,14,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_1D,0.8018621055,0.0,107.986037061,67f17ff257220281,False,0.7.0,0.8018621055,0.9235145261,0.7455375254000001,0.6469029607,,,,1340
-Sundial-Base,autogluon/fev_datasets,kdd_cup_2022_30T,96,10,-960,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_30T,0.5099402658000001,0.0,106.13935458,257e85b44bdb8154,False,0.7.0,0.5099402658000001,0.5884124519,1.8708190978,1.6183676077,,,,1340
-Sundial-Base,autogluon/fev_datasets,m5_1D,28,1,-28,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1D,0.8516064277000001,0.0,2373.00595933,0d8bfe3780a2c494,False,0.7.0,0.8516064277000001,0.9677992163,0.735691011,0.6369837787,,,,30490
-Sundial-Base,autogluon/fev_datasets,m5_1M,12,1,-12,12,6,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1M,1.0814673882,0.0,2290.891352852,78d200c01b7350ff,False,0.7.0,1.0814673882,1.199580668,0.4508921802,0.3886462021,,,,29364
-Sundial-Base,autogluon/fev_datasets,m5_1W,13,1,-13,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1W,0.9747800888,0.0,2332.306454716,60d0a43fd09b5dcc,False,0.7.0,0.9747800888,1.1330759513,0.4258472919,0.3622685986,,,,30490
-Sundial-Base,autogluon/fev_datasets,proenfo_gfc12,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc12,0.9003739311000001,0.0,9.728411242,e39dc59e1a6af0e2,False,0.7.0,0.9003739311000001,0.9935522058,0.0814341474,0.0732963269,,,,110
-Sundial-Base,autogluon/fev_datasets,proenfo_gfc14,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc14,0.4208035936,0.0,2.521407185,90428df2dbce525e,False,0.7.0,0.4208035936,0.463580052,0.022570387,0.0204786531,,,,20
-Sundial-Base,autogluon/fev_datasets,proenfo_gfc17,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc17,0.5086387805,0.0,13.541828748,f8bf8da06e500162,False,0.7.0,0.5086387805,0.5526319982,0.0343229823,0.0315794369,,,,160
-Sundial-Base,autogluon/fev_datasets,redset_15T,96,10,-960,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_15T,1.160404574,0.0,98.24554745,391e616eee276356,False,0.7.0,1.160404574,1.3649343142,0.3414731026,0.2914044606,,,,1260
-Sundial-Base,autogluon/fev_datasets,redset_1H,24,10,-240,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_1H,1.4505298471,0.0,107.579581425,a7542f5bcc8cf4ab,False,0.7.0,1.4505298471,1.5646420584,0.263667053,0.2287683337,,,,1380
-Sundial-Base,autogluon/fev_datasets,redset_5T,288,10,-2880,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_5T,0.8873768717,0.0,91.825214293,4776bd88b54d8a04,False,0.7.0,0.8873768717,1.0328105291,0.3967622221,0.3372367613,,,,1180
-Sundial-Base,autogluon/fev_datasets,restaurant,28,8,-224,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],"['air_area_name', 'air_genre_name', 'latitude', 'longitude']",restaurant,0.7474752761,0.0,494.888195731,3863ed9dabc164dc,False,0.7.0,0.7474752761,0.8630231098000001,0.3637035079,0.3121784735,,,,6502
-Sundial-Base,autogluon/fev_datasets,rohlik_orders_1D,61,5,2023-05-01T00:00:00,61,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,orders,,"['holiday', 'school_holidays', 'shops_closed', 'winter_school_holidays']","['blackout', 'frankfurt_shutdown', 'mini_shutdown', 'mov_change', 'precipitation', 'shutdown', 'snow', 'user_activity_1', 'user_activity_2']",[],rohlik_orders_1D,1.1963053977,0.0,3.737568743,8334ba19a7f5e7a1,False,0.7.0,1.1963053977,1.3992895671,0.0667062812,0.0570594271,,,,35
-Sundial-Base,autogluon/fev_datasets,rohlik_orders_1W,8,5,2023-05-01T00:00:00,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,orders,,"['holiday', 'school_holidays', 'shops_closed', 'winter_school_holidays']","['blackout', 'frankfurt_shutdown', 'mini_shutdown', 'mov_change', 'precipitation', 'shutdown', 'snow', 'user_activity_1', 'user_activity_2']",[],rohlik_orders_1W,1.8923042995,0.0,3.693388192,63260348a6b49874,False,0.7.0,1.8923042995,2.0951936703,0.0675320886,0.0608989622,,,,35
-Sundial-Base,autogluon/fev_datasets,rohlik_sales_1D,14,1,2023-12-15T00:00:00,14,14,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'school_holidays', 'sell_price_main', 'shops_closed', 'total_orders', 'type_0_discount', 'type_1_discount', 'type_2_discount', 'type_3_discount', 'type_4_discount', 'type_5_discount', 'type_6_discount', 'winter_school_holidays']",['availability'],"['L1_category_name_en', 'L2_category_name_en', 'L3_category_name_en', 'L4_category_name_en', 'name', 'product_unique_id', 'warehouse']",rohlik_sales_1D,1.2026659678,0.0,320.868032144,22fd3891c3b685ce,False,0.7.0,1.2026659678,1.3442522277,0.3645052612,0.3250144355,,,,4116
-Sundial-Base,autogluon/fev_datasets,rohlik_sales_1W,8,1,2023-12-15T00:00:00,8,8,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'school_holidays', 'sell_price_main', 'shops_closed', 'total_orders', 'type_0_discount', 'type_1_discount', 'type_2_discount', 'type_3_discount', 'type_4_discount', 'type_5_discount', 'type_6_discount', 'winter_school_holidays']",['availability'],"['L1_category_name_en', 'L2_category_name_en', 'L3_category_name_en', 'L4_category_name_en', 'name', 'product_unique_id', 'warehouse']",rohlik_sales_1W,1.6933358341,0.0,306.0315988,516398d9cb76a18f,False,0.7.0,1.6933358341,1.8996288065,0.292871207,0.2594374504,,,,3942
-Sundial-Base,autogluon/fev_datasets,rossmann_1D,48,10,-480,48,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Sales,,"['DayOfWeek', 'Open', 'Promo', 'SchoolHoliday', 'StateHoliday']",['Customers'],"['Assortment', 'CompetitionDistance', 'CompetitionOpenSinceMonth', 'CompetitionOpenSinceYear', 'Promo2', 'Promo2SinceWeek', 'Promo2SinceYear', 'PromoInterval', 'Store', 'StoreType']",rossmann_1D,0.5305513714,0.0,883.28789622,7c1cf165ce5e0f8b,False,0.7.0,0.5305513714,0.6154624197,0.2092144758,0.1802362487,,,,11150
-Sundial-Base,autogluon/fev_datasets,rossmann_1W,13,8,-104,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Sales,,"['Open', 'Promo', 'SchoolHoliday', 'StateHoliday']",['Customers'],"['Assortment', 'CompetitionDistance', 'CompetitionOpenSinceMonth', 'CompetitionOpenSinceYear', 'Promo2', 'Promo2SinceWeek', 'Promo2SinceYear', 'PromoInterval', 'Store', 'StoreType']",rossmann_1W,0.5781252095,0.0,680.418751659,cf54ffb87953c85f,False,0.7.0,0.5781252095,0.6790382249,0.1854728833,0.1572071227,,,,8920
-Sundial-Base,autogluon/fev_datasets,solar_1D,28,10,-280,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],solar_1D,0.6669937254,0.0,105.915848403,4a9fb28f2a62f798,False,0.7.0,0.6669937254,0.7866198335,0.2471724987,0.2094179217,,,,1370
-Sundial-Base,autogluon/fev_datasets,solar_1W,13,1,-13,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],solar_1W,0.9287843032,0.0,11.704671042,856de5fa702db186,False,0.7.0,0.9287843032,1.1001413936,0.1854887605,0.1567824467,,,,137
-Sundial-Base,autogluon/fev_datasets,solar_with_weather_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['day_length', 'humidity', 'pressure', 'rain_1h', 'snow_1h', 'temp', 'wind_speed']","['clouds_all', 'global_horizontal_irradiance']",[],solar_with_weather_15T,0.9625972649,0.0,2.840639875,61e547dc95d83f5d,False,0.7.0,0.9625972649,1.1181879294,1.5058858633,1.3507714502,,,,20
-Sundial-Base,autogluon/fev_datasets,solar_with_weather_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['day_length', 'humidity', 'pressure', 'rain_1h', 'snow_1h', 'temp', 'wind_speed']","['clouds_all', 'global_horizontal_irradiance']",[],solar_with_weather_1H,1.1815051767,0.0,2.533551682,a5ce88d03879a959,False,0.7.0,1.1815051767,1.3031564924,1.4480908126,1.3598337832,,,,20
-Sundial-Base,autogluon/fev_datasets,uci_air_quality_1D,28,11,-308,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['C6H6(GT)', 'CO(GT)', 'NO2(GT)', 'NOx(GT)']",,"['AH', 'RH', 'T']",[],[],uci_air_quality_1D,1.2144755341,0.0,4.282784176,1acb95a018b86a63,False,0.7.0,1.2144755341,1.3990875663,0.2892992957,0.2497182101,,,,44
-Sundial-Base,autogluon/fev_datasets,uci_air_quality_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['C6H6(GT)', 'CO(GT)', 'NO2(GT)', 'NOx(GT)']",,"['AH', 'RH', 'T']",[],[],uci_air_quality_1H,1.0009256435,0.0,7.122460654,187086c23269b305,False,0.7.0,1.0009256435,1.1924183278,0.400704702,0.3368853083,,,,80
-Sundial-Base,autogluon/fev_datasets,uk_covid_nation_1D,28,20,-560,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['cumulative_admissions', 'cumulative_cases', 'cumulative_deaths']",,[],"['cumulative_vaccinated_1', 'cumulative_vaccinated_2', 'cumulative_vaccinated_3', 'hospital_cases', 'icu_ventilator_occupancy']",[],uk_covid_nation_1D/cumulative,16.0063232428,0.0,20.139556428,cb76ab66e8a2acda,False,0.7.0,16.0063232428,18.3255496813,0.0455631685,0.0397848581,,,,240
-Sundial-Base,autogluon/fev_datasets,uk_covid_nation_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['new_admissions', 'new_cases', 'new_deaths']",,[],"['hospital_cases', 'icu_ventilator_occupancy', 'new_vaccinated_1', 'new_vaccinated_2', 'new_vaccinated_3']",[],uk_covid_nation_1D/new,2.2998485754,0.0,19.665896388,cb76ab66e8a2acda,False,0.7.0,2.2998485754,2.5802902251,0.4168794766,0.3704647201,,,,240
-Sundial-Base,autogluon/fev_datasets,uk_covid_nation_1W,8,4,-32,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['cumulative_admissions', 'cumulative_cases', 'cumulative_deaths']",,[],"['cumulative_vaccinated_1', 'cumulative_vaccinated_2', 'cumulative_vaccinated_3', 'hospital_cases', 'icu_ventilator_occupancy']",[],uk_covid_nation_1W/cumulative,5.2476339527,0.0,4.749044138,0398b1ae44b0e1ae,False,0.7.0,5.2476339527,5.8508558031,0.0525751226,0.0470469389,,,,48
-Sundial-Base,autogluon/fev_datasets,uk_covid_nation_1W,8,4,-32,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['new_admissions', 'new_cases', 'new_deaths']",,[],"['hospital_cases', 'icu_ventilator_occupancy', 'new_vaccinated_1', 'new_vaccinated_2', 'new_vaccinated_3']",[],uk_covid_nation_1W/new,3.5699175673,0.0,4.6911636990000005,0398b1ae44b0e1ae,False,0.7.0,3.5699175673,4.2487016855,0.4364076927,0.346954435,,,,48
-Sundial-Base,autogluon/fev_datasets,uk_covid_utla_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,new_cases,,[],[],[],uk_covid_utla_1D/new,3.6498480124,0.0,169.640670302,a8353cbb69d9d419,False,0.7.0,3.6498480124,4.1215258287,0.4043421954,0.3594274377,,,,2140
-Sundial-Base,autogluon/fev_datasets,uk_covid_utla_1W,13,5,-65,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,cumulative_cases,,[],[],[],uk_covid_utla_1W/cumulative,26.4381110934,0.0,84.210658576,e882978eeee0c5e3,False,0.7.0,26.4381110934,27.7918750277,0.2817648932,0.2660261673,,,,1070
-Sundial-Base,autogluon/fev_datasets,us_consumption_1M,12,10,-120,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1M,1.8961848647,0.0,25.040507703,6f0b0899ba9d50bb,False,0.7.0,1.8961848647,2.1034739353,0.0353930782,0.032429082,,,,310
-Sundial-Base,autogluon/fev_datasets,us_consumption_1Q,8,10,-80,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1Q,2.8659918221,0.0,25.035186567,34ddaf654b836be3,False,0.7.0,2.8659918221,3.2110317266,0.0549728539,0.050684032,,,,310
-Sundial-Base,autogluon/fev_datasets,us_consumption_1Y,5,10,-50,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1Y,5.8799625833,0.0,24.774984393,69d8accb103bbb77,False,0.7.0,5.8799625833,6.4807387204,0.1102996588,0.0997271328,,,,310
-Sundial-Base,autogluon/fev_datasets,walmart,39,1,-39,39,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['CPI', 'Fuel_Price', 'IsHoliday', 'MarkDown1', 'MarkDown2', 'MarkDown3', 'MarkDown4', 'MarkDown5', 'Temperature', 'Unemployment']",[],"['Dept', 'Size', 'Store', 'Type']",walmart,0.8422492473000001,0.0,230.839530845,f84328c62c91aaf5,False,0.7.0,0.8422492473000001,0.9842192099,0.1211136207,0.1036346439,,,,2936
-Sundial-Base,autogluon/fev_datasets,world_co2_emissions,5,9,-45,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_co2_emissions,3.6825226706,0.0,133.395333519,66fdc0a9c269539c,False,0.7.0,3.6825226706,4.0694291919,0.1067606712,0.0955702861,,,,1719
-Sundial-Base,autogluon/fev_datasets,world_life_expectancy,5,10,-50,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_life_expectancy,1.6015213365,0.0,180.122422217,63f326fa372ad29a,False,0.7.0,1.6015213365,1.7987773288,0.0145865259,0.0129798805,,,,2370
-Sundial-Base,autogluon/fev_datasets,world_tourism,5,2,-10,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_tourism,4.3603502979,0.0,28.539923844,f03e22f4082953f7,False,0.7.0,4.3603502979,4.7392839763,0.1553527489,0.1403522964,,,,356
-TabPFN-TS,autogluon/fev_datasets,ETT_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_15T,0.6023976568,0.0,622.826942601,9f6541408f56392f,False,0.7.0,0.6023976568,0.7625422865,0.122192445,0.0966499793,,,,280
-TabPFN-TS,autogluon/fev_datasets,ETT_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1D,1.2302029516,0.0,192.758975266,ff06ef09d043bd73,False,0.7.0,1.2302029516,1.4991782178,0.3959747152,0.3179643477,,,,280
-TabPFN-TS,autogluon/fev_datasets,ETT_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1H,0.93321436,0.0,574.371845285,1051fcbf7ab489b5,False,0.7.0,0.93321436,1.1773747941,0.2553246886,0.2034494101,,,,280
-TabPFN-TS,autogluon/fev_datasets,ETT_1W,13,5,-65,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1W,2.4105571965,0.0,18.631796632,f7babcd132f54bf3,False,0.7.0,2.4105571965,2.8095121652,0.5109347999,0.4148319078,,,,70
-TabPFN-TS,autogluon/fev_datasets,LOOP_SEATTLE_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_1D,0.7804864737,0.0,816.525347527,02d7b9f04d1c3187,False,0.7.0,0.7804864737,0.9622221749,0.0365180448,0.0295572487,,,,3230
-TabPFN-TS,autogluon/fev_datasets,LOOP_SEATTLE_1H,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_1H,0.6785128884,0.0,5646.124844318,08811ee17f93df42,False,0.7.0,0.6785128884,0.8527195266,0.0731078316,0.0580208445,,,,3230
-TabPFN-TS,autogluon/fev_datasets,LOOP_SEATTLE_5T,288,10,-2880,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_5T,0.6414697138000001,0.0,7730.018708689,c2739a4b195beef3,False,0.7.0,0.6414697138000001,0.7953950095000001,0.0858088784,0.0689450513,,,,3230
-TabPFN-TS,autogluon/fev_datasets,M_DENSE_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],M_DENSE_1D,0.7560067856,0.0,282.412570748,12417cabd3e820d7,False,0.7.0,0.7560067856,0.9194900606,0.0926615007,0.0776412798,,,,300
-TabPFN-TS,autogluon/fev_datasets,M_DENSE_1H,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],M_DENSE_1H,0.6460899053,0.0,562.021668514,e973593b94c21fa6,False,0.7.0,0.6460899053,0.7953014020000001,0.1593384311,0.1296769427,,,,300
-TabPFN-TS,autogluon/fev_datasets,SZ_TAXI_15T,96,10,-960,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],SZ_TAXI_15T,0.4285012823,0.0,1177.181895488,3e6f0d3380ac07cc,False,0.7.0,0.4285012823,0.5231892934,0.2500552535,0.2040341404,,,,1560
-TabPFN-TS,autogluon/fev_datasets,SZ_TAXI_1H,168,2,-336,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],SZ_TAXI_1H,0.4935099732,0.0,91.394116006,7c28d9c08a8a99d2,False,0.7.0,0.4935099732,0.5369530543000001,0.1798963994,0.1666049443,,,,312
-TabPFN-TS,autogluon/fev_datasets,australian_tourism,8,2,-16,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],australian_tourism,0.6989805801,0.0,34.08641208,e3e704ef830bb1f4,False,0.7.0,0.6989805801,0.8868052992000001,0.0927634016,0.07310177,,,,178
-TabPFN-TS,autogluon/fev_datasets,bizitobs_l2c_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_2', 'target_3', 'target_4', 'target_5', 'target_6']",,[],[],[],bizitobs_l2c_1H,0.3540742815,0.0,127.704236993,fd3fb3349ee15a22,False,0.7.0,0.3540742815,0.4458486692,0.360369738,0.3020415377,,,,140
-TabPFN-TS,autogluon/fev_datasets,bizitobs_l2c_5T,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_2', 'target_3', 'target_4', 'target_5', 'target_6']",,[],[],[],bizitobs_l2c_5T,0.4854874227,0.0,386.404248825,9cb515b57514a9ab,False,0.7.0,0.4854874227,0.6193328173,0.8823374127,0.6797159368,,,,140
-TabPFN-TS,autogluon/fev_datasets,boomlet_1062,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1062,0.7083924656,0.0,802.75470844,44381d6f431f8c90,False,0.7.0,0.7083924656,0.6864002083,0.5832466359,0.4854876351,,,,420
-TabPFN-TS,autogluon/fev_datasets,boomlet_1209,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1209,1.0159986311,0.0,2766.104608263,1466ee197c499055,False,0.7.0,1.0159986311,1.107972646,0.3865331056,0.3699793008,,,,1060
-TabPFN-TS,autogluon/fev_datasets,boomlet_1225,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1225,0.2145097606,0.0,1726.650328174,5d9eb3c2d9389376,False,0.7.0,0.2145097606,0.2509252394,0.1326060004,0.1144239787,,,,980
-TabPFN-TS,autogluon/fev_datasets,boomlet_1230,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1230,1.6130013764000002,0.0,1191.053557416,034f57f6576437cc,False,0.7.0,1.6130013764000002,1.6398564855000002,0.3497826156,0.3987332881,,,,460
-TabPFN-TS,autogluon/fev_datasets,boomlet_1282,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1282,0.4252624699,0.0,1827.553535193,de65600e18e27fe8,False,0.7.0,0.4252624699,0.506661869,0.3517501049,0.292132349,,,,700
-TabPFN-TS,autogluon/fev_datasets,boomlet_1487,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1487,0.7454959652,0.0,2792.272376516,17003e37fda85cdd,False,0.7.0,0.7454959652,0.6139593947,0.2418147345,0.2936465116,,,,1080
-TabPFN-TS,autogluon/fev_datasets,boomlet_1631,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1631,0.6970609561000001,0.0,1484.084357255,f5255f15ed8188ab,False,0.7.0,0.6970609561000001,0.8463187427000001,0.3554736745,0.294595714,,,,800
-TabPFN-TS,autogluon/fev_datasets,boomlet_1676,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_75', 'target_76', 'target_77', 'target_78', 'target_79', 'target_8', 'target_80', 'target_81', 'target_82', 'target_83', 'target_84', 'target_85', 'target_86', 'target_87', 'target_88', 'target_89', 'target_9', 'target_90', 'target_91', 'target_92', 'target_93', 'target_94', 'target_95', 'target_96', 'target_97', 'target_98', 'target_99']",,[],[],[],boomlet_1676,0.8311081643,0.0,3651.885903247,20768bc9d5e316c5,False,0.7.0,0.8311081643,0.958687274,0.3439016851,0.2853155601,,,,2000
-TabPFN-TS,autogluon/fev_datasets,boomlet_1855,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1855,0.6233137320000001,0.0,1782.223122468,ca3cf5b18a145f72,False,0.7.0,0.6233137320000001,0.6402148315,0.1950387305,0.1913295293,,,,1040
-TabPFN-TS,autogluon/fev_datasets,boomlet_1975,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_8', 'target_9']",,[],[],[],boomlet_1975,0.2069952508,0.0,2552.555455727,3d8d0f68506b1995,False,0.7.0,0.2069952508,0.2447173505,0.1347071896,0.1155713746,,,,1500
-TabPFN-TS,autogluon/fev_datasets,boomlet_2187,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_75', 'target_76', 'target_77', 'target_78', 'target_79', 'target_8', 'target_80', 'target_81', 'target_82', 'target_83', 'target_84', 'target_85', 'target_86', 'target_87', 'target_88', 'target_89', 'target_9', 'target_90', 'target_91', 'target_92', 'target_93', 'target_94', 'target_95', 'target_96', 'target_97', 'target_98', 'target_99']",,[],[],[],boomlet_2187,0.9340158386,0.0,3371.355002518,c3fe1a491401b248,False,0.7.0,0.9340158386,1.0030305987,0.3217076673,0.2994495011,,,,2000
-TabPFN-TS,autogluon/fev_datasets,boomlet_285,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_8', 'target_9']",,[],[],[],boomlet_285,0.7127008195,0.0,2251.225120419,3dfa571029207f1f,False,0.7.0,0.7127008195,0.3931546055,0.1742876602,0.1553438735,,,,1500
-TabPFN-TS,autogluon/fev_datasets,boomlet_619,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_619,0.3305066441,0.0,1767.957107851,2d514811bddfc52d,False,0.7.0,0.3305066441,0.4305322873,0.3036044294,0.2349216897,,,,1040
-TabPFN-TS,autogluon/fev_datasets,boomlet_772,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_772,0.3295303206,0.0,3601.941862429,66ce5fbc5ad575a2,False,0.7.0,0.3295303206,0.3608040826,0.1705900793,0.1546550252,,,,1340
-TabPFN-TS,autogluon/fev_datasets,boomlet_963,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_963,0.7960581525,0.0,1484.477017497,bd1c23c0fd1a748e,False,0.7.0,0.7960581525,0.8758112548,0.415064609,0.368648075,,,,560
-TabPFN-TS,autogluon/fev_datasets,ecdc_ili,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ecdc_ili,2.3819418015,0.0,52.985427624,0c0a84fa1b54ac63,False,0.7.0,2.3819418015,2.8110944773,0.3879963517,0.3232828815,,,,240
-TabPFN-TS,autogluon/fev_datasets,entsoe_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_15T,0.4837394321,0.0,277.003432296,34c503cb4346b380,False,0.7.0,0.4837394321,0.6094490505,0.0426369185,0.0335205629,,,,120
-TabPFN-TS,autogluon/fev_datasets,entsoe_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_1H,0.4419444303,0.0,296.701026967,0cb6316a70bf9d47,False,0.7.0,0.4419444303,0.5377189816,0.0333449995,0.0272967255,,,,120
-TabPFN-TS,autogluon/fev_datasets,entsoe_30T,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_30T,0.5116608489,0.0,294.146155078,6ff7f68ac7fbd564,False,0.7.0,0.5116608489,0.6350493808000001,0.0390591249,0.0321818804,,,,120
-TabPFN-TS,autogluon/fev_datasets,epf_be,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Generation forecast', 'System load forecast']",[],[],epf_be,0.5324134798,0.0,67.483784867,50acce5fc8987a4f,False,0.7.0,0.5324134798,0.6701844387,0.1179565661,0.0932975438,,,,20
-TabPFN-TS,autogluon/fev_datasets,epf_de,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Ampirion Load Forecast', 'PV+Wind Forecast']",[],[],epf_de,0.4402987265,0.0,67.661415406,491dc89fd5b322b5,False,0.7.0,0.4402987265,0.5674762585,0.3069136301,0.2426255873,,,,20
-TabPFN-TS,autogluon/fev_datasets,epf_fr,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Generation forecast', 'System load forecast']",[],[],epf_fr,0.3307410445,0.0,67.242104675,bc5a57cd5727d527,False,0.7.0,0.3307410445,0.4181703173,0.0618426707,0.0491162423,,,,20
-TabPFN-TS,autogluon/fev_datasets,epf_np,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Grid load forecast', 'Wind power forecast']",[],[],epf_np,0.6592724518,0.0,65.401675639,80b01220b34be222,False,0.7.0,0.6592724518,0.8709423510000001,0.0386706958,0.0293296573,,,,20
-TabPFN-TS,autogluon/fev_datasets,epf_pjm,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['System load forecast', 'Zonal COMED load foecast']",[],[],epf_pjm,0.4270292068,0.0,66.395716168,04be360a47b231a4,False,0.7.0,0.4270292068,0.5339815846,0.092521411,0.0739926826,,,,20
-TabPFN-TS,autogluon/fev_datasets,ercot_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1D,0.9810503129,0.0,304.438810058,d1c9de98a43d4097,False,0.7.0,0.9810503129,1.2627737925,0.0898239311,0.0688811199,,,,160
-TabPFN-TS,autogluon/fev_datasets,ercot_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1H,1.2076871071,0.0,332.245445011,95b91121d95f89c8,False,0.7.0,1.2076871071,1.5551131815,0.0795933543,0.0615615188,,,,160
-TabPFN-TS,autogluon/fev_datasets,ercot_1M,12,15,-180,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1M,0.9028337317,0.0,30.323501934,167e0223cbbc1b69,False,0.7.0,0.9028337317,1.2288572299,0.05342761,0.0407906509,,,,120
-TabPFN-TS,autogluon/fev_datasets,ercot_1W,13,20,-260,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1W,1.2284207021,0.0,270.147918178,091a619858bdabc9,False,0.7.0,1.2284207021,1.6253611467,0.0684465686,0.0531508617,,,,160
-TabPFN-TS,autogluon/fev_datasets,favorita_stores_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'onpromotion']",['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1D,0.9697812299,0.0,7345.838813181,3c676e1d0f771bf4,False,0.7.0,0.9697812299,1.1942878338,0.1485749632,0.1204039869,,,,15790
-TabPFN-TS,autogluon/fev_datasets,favorita_stores_1M,12,2,-24,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,['onpromotion'],['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1M,1.9335734731,0.0,517.691344205,7c94de5b6e2859ff,False,0.7.0,1.9335734731,2.1757603336,0.1158652566,0.0943255732,,,,3158
-TabPFN-TS,autogluon/fev_datasets,favorita_stores_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,['onpromotion'],['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1W,2.1226627361,0.0,3164.105345998,aae27c565b10fe7f,False,0.7.0,2.1226627361,2.5267645799,0.1259902738,0.1011036417,,,,15790
-TabPFN-TS,autogluon/fev_datasets,favorita_transactions_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,['holiday'],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1D,1.2251845822,0.0,242.410962423,af6c7be9c6bf8910,False,0.7.0,1.2251845822,1.6727335501,0.0773345503,0.0603391606,,,,510
-TabPFN-TS,autogluon/fev_datasets,favorita_transactions_1M,12,2,-24,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,[],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1M,1.2438493019,0.0,22.886077933,a9ebe0fd05a285b6,False,0.7.0,1.2438493019,1.4261630874,0.0822258855,0.0718016091,,,,102
-TabPFN-TS,autogluon/fev_datasets,favorita_transactions_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,[],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1W,1.9116392061,0.0,112.386299644,dcf0217a3f159ec8,False,0.7.0,1.9116392061,2.436781004,0.070972002,0.0575076503,,,,510
-TabPFN-TS,autogluon/fev_datasets,fred_md_2025,12,20,-240,12,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['CPIAUCSL', 'FEDFUNDS', 'PAYEMS']",,[],"['M2REAL', 'NONBORRES', 'PPICMM', 'TOTRESNS']",[],fred_md_2025/cee,3.872866885,0.0,24.271172449,764e9294023ee081,False,0.7.0,3.872866885,4.6737821611,0.0853241075,0.0743757483,,,,60
-TabPFN-TS,autogluon/fev_datasets,fred_md_2025,12,20,-240,12,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['AAA', 'AWHMAN', 'BAA', 'BUSINVx', 'CPIAUCSL', 'CPIMEDSL', 'CUMFNS', 'DMANEMP', 'EXUSUKx', 'FEDFUNDS', 'GS1', 'GS10', 'GS5', 'HOUST', 'INDPRO', 'INVEST', 'IPBUSEQ', 'IPCONGD', 'IPDCONGD', 'IPDMAT', 'IPFINAL', 'IPMANSICS', 'IPMAT', 'IPNCONGD', 'IPNMAT', 'M2REAL', 'MANEMP', 'NDMANEMP', 'NONBORRES', 'PAYEMS', 'PERMIT', 'PPICMM', 'S&P 500', 'SRVPRD', 'TB3MS', 'TB6MS', 'TOTRESNS', 'UEMP15T26', 'UEMP27OV', 'UEMP5TO14', 'UEMPLT5', 'UEMPMEAN', 'UMCSENTx', 'UNRATE', 'USCONS', 'USFIRE', 'USGOOD', 'USGOVT', 'USTPU', 'USTRADE', 'VIXCLSx']",,[],[],[],fred_md_2025/macro,6.3986770227,0.0,289.177228128,764e9294023ee081,False,0.7.0,6.3986770227,7.7467550529,0.0845430854,0.0703198143,,,,1020
-TabPFN-TS,autogluon/fev_datasets,fred_qd_2025,8,20,-160,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['CPIAUCSL', 'FEDFUNDS', 'PAYEMS']",,[],"['M2REAL', 'NONBORRES', 'PPICMM', 'TOTRESNS']",[],fred_qd_2025/cee,2.2915507616,0.0,22.044858268,d257091c861020bf,False,0.7.0,2.2915507616,2.9044098381000003,0.1495637866,0.1232875729,,,,60
-TabPFN-TS,autogluon/fev_datasets,fred_qd_2025,8,20,-160,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['AAA', 'AWHMAN', 'BAA', 'BUSINVx', 'CPIAUCSL', 'CPIMEDSL', 'CUMFNS', 'DMANEMP', 'EXUSUKx', 'FEDFUNDS', 'GS1', 'GS10', 'GS5', 'HOUST', 'INDPRO', 'INVEST', 'IPBUSEQ', 'IPCONGD', 'IPDCONGD', 'IPDMAT', 'IPFINAL', 'IPMANSICS', 'IPMAT', 'IPNCONGD', 'IPNMAT', 'M2REAL', 'MANEMP', 'NDMANEMP', 'NONBORRES', 'PAYEMS', 'PERMIT', 'PPICMM', 'S&P 500', 'SRVPRD', 'TB3MS', 'TB6MS', 'TOTRESNS', 'UEMP15T26', 'UEMP27OV', 'UEMP5TO14', 'UEMPLT5', 'UEMPMEAN', 'UMCSENTx', 'UNRATE', 'USCONS', 'USFIRE', 'USGOOD', 'USGOVT', 'USTPU', 'USTRADE', 'VIXCLSx']",,[],[],[],fred_qd_2025/macro,4.2401411107,0.0,200.074460561,d257091c861020bf,False,0.7.0,4.2401411107,5.2932799619,0.1155847,0.0926080385,,,,1020
-TabPFN-TS,autogluon/fev_datasets,gvar,8,10,-80,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['Dp', 'ep', 'eq', 'lr', 'r', 'y']",,[],"['pmat', 'pmetal', 'poil']",[],gvar,0.6741322757,0.0,306.49392464,e60f8e1e38f9acca,False,0.7.0,0.6741322757,0.9010948704,0.0235774602,0.0179419087,,,,1980
-TabPFN-TS,autogluon/fev_datasets,hermes,52,1,-52,52,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['external'],[],"['category', 'country']",hermes,0.7049311249,0.0,3298.342035606,f87501b2bd02803b,False,0.7.0,0.7049311249,0.9123318673,0.003404404,0.0026219625,,,,10000
-TabPFN-TS,autogluon/fev_datasets,hierarchical_sales_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hierarchical_sales_1D,0.5720159668,0.0,579.919207945,0ecbb4076fd5ba78,False,0.7.0,0.5720159668,0.7080055758,0.7258024514,0.5928670205000001,,,,1180
-TabPFN-TS,autogluon/fev_datasets,hierarchical_sales_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hierarchical_sales_1W,0.6369452495,0.0,267.055232427,691bd281f0ad7adc,False,0.7.0,0.6369452495,0.7740136921,0.4384448647,0.3741749103,,,,1180
-TabPFN-TS,autogluon/fev_datasets,hospital,12,4,-48,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital,0.6961291798,0.0,496.649065989,9c6e8721c2eca10b,False,0.7.0,0.6961291798,0.8808779374,0.0931978375,0.0744330876,,,,3068
-TabPFN-TS,autogluon/fev_datasets,hospital_admissions_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital_admissions_1D,0.5622795668,0.0,80.142890459,51b7fbd3926341eb,False,0.7.0,0.5622795668,0.7244514742,0.5375386306000001,0.4170562141,,,,160
-TabPFN-TS,autogluon/fev_datasets,hospital_admissions_1W,13,16,-208,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital_admissions_1W,0.5814141841,0.0,35.95493711,bff3ae304070efd9,False,0.7.0,0.5814141841,0.7534416615,0.2122697207,0.163762699,,,,128
-TabPFN-TS,autogluon/fev_datasets,jena_weather_10T,144,20,-2880,144,1,,144,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_10T,0.412525166,0.0,863.943525893,311a660faf591409,False,0.7.0,0.412525166,0.516391649,0.2988471952,0.2551716964,,,,420
-TabPFN-TS,autogluon/fev_datasets,jena_weather_1D,28,11,-308,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_1D,1.1553103934,0.0,69.238576972,81a9d748210aa612,False,0.7.0,1.1553103934,1.4445769356,0.2843381079,0.2320364869,,,,231
-TabPFN-TS,autogluon/fev_datasets,jena_weather_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_1H,0.4127616053,0.0,774.363291708,8eb1d310607e8fee,False,0.7.0,0.4127616053,0.5111184304,0.2825195241,0.2343045768,,,,420
-TabPFN-TS,autogluon/fev_datasets,kdd_cup_2022_10T,288,10,-2880,288,1,,144,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_10T,0.5550654023,0.0,2650.714077241,e200b7c6bc525a8d,False,0.7.0,0.5550654023,0.6951920674000001,2.9485943079,2.3282104591,,,,1340
-TabPFN-TS,autogluon/fev_datasets,kdd_cup_2022_1D,14,10,-140,14,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_1D,0.7153283882,0.0,271.993962454,67f17ff257220281,False,0.7.0,0.7153283882,0.9150751748,0.729861784,0.5680073145,,,,1340
-TabPFN-TS,autogluon/fev_datasets,kdd_cup_2022_30T,96,10,-960,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_30T,0.5433847052,0.0,2430.690493173,257e85b44bdb8154,False,0.7.0,0.5433847052,0.6765431227,2.7372743011000003,2.2207570053,,,,1340
-TabPFN-TS,autogluon/fev_datasets,m5_1M,12,1,-12,12,6,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1M,1.0016519091,0.0,5159.98158573,78d200c01b7350ff,False,0.7.0,1.0016519091,1.1871283177,0.4364556372,0.3466619129,,,,29364
-TabPFN-TS,autogluon/fev_datasets,m5_1W,13,1,-13,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1W,0.9281611829,0.0,8498.926744264,60d0a43fd09b5dcc,False,0.7.0,0.9281611829,1.1604987437,0.4357982576,0.3436698517,,,,30490
-TabPFN-TS,autogluon/fev_datasets,proenfo_gfc12,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc12,0.8344528413000001,0.0,237.059457211,e39dc59e1a6af0e2,False,0.7.0,0.8344528413000001,1.0338246822,0.0878337689,0.0702222225,,,,110
-TabPFN-TS,autogluon/fev_datasets,proenfo_gfc14,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc14,0.5148198578000001,0.0,59.271923663,90428df2dbce525e,False,0.7.0,0.5148198578000001,0.6406314316,0.0314071138,0.0252054415,,,,20
-TabPFN-TS,autogluon/fev_datasets,proenfo_gfc17,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc17,0.6716514716,0.0,337.373854587,f8bf8da06e500162,False,0.7.0,0.6716514716,0.8553343104000001,0.0562544549,0.0440642892,,,,160
-TabPFN-TS,autogluon/fev_datasets,redset_15T,96,10,-960,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_15T,1.2504740912,0.0,2379.030323521,391e616eee276356,False,0.7.0,1.2504740912,2.1719934434,0.2824990153,0.2325884637,,,,1260
-TabPFN-TS,autogluon/fev_datasets,redset_1H,24,10,-240,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_1H,1.3205339155,0.0,820.337277951,a7542f5bcc8cf4ab,False,0.7.0,1.3205339155,1.4385006498,0.2258856788,0.1873583276,,,,1380
-TabPFN-TS,autogluon/fev_datasets,redset_5T,288,10,-2880,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_5T,0.7111485095000001,0.0,2540.255711945,4776bd88b54d8a04,False,0.7.0,0.7111485095000001,0.8423602104,0.3484145552,0.289831124,,,,1180
-TabPFN-TS,autogluon/fev_datasets,restaurant,28,8,-224,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],"['air_area_name', 'air_genre_name', 'latitude', 'longitude']",restaurant,0.6930359174,0.0,1939.457551525,3863ed9dabc164dc,False,0.7.0,0.6930359174,0.8689264082,0.3642114922,0.286941911,,,,6502
-TabPFN-TS,autogluon/fev_datasets,rohlik_orders_1D,61,5,2023-05-01T00:00:00,61,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,orders,,"['holiday', 'school_holidays', 'shops_closed', 'winter_school_holidays']","['blackout', 'frankfurt_shutdown', 'mini_shutdown', 'mov_change', 'precipitation', 'shutdown', 'snow', 'user_activity_1', 'user_activity_2']",[],rohlik_orders_1D,1.3410638007,0.0,34.902976293,8334ba19a7f5e7a1,False,0.7.0,1.3410638007,1.547892006,0.0655876726,0.0585028628,,,,35
-TabPFN-TS,autogluon/fev_datasets,rohlik_orders_1W,8,5,2023-05-01T00:00:00,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,orders,,"['holiday', 'school_holidays', 'shops_closed', 'winter_school_holidays']","['blackout', 'frankfurt_shutdown', 'mini_shutdown', 'mov_change', 'precipitation', 'shutdown', 'snow', 'user_activity_1', 'user_activity_2']",[],rohlik_orders_1W,1.5240499794,0.0,12.991896232,63260348a6b49874,False,0.7.0,1.5240499794,1.9886917666,0.0652046457,0.049953361,,,,35
-TabPFN-TS,autogluon/fev_datasets,rohlik_sales_1W,8,1,2023-12-15T00:00:00,8,8,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'school_holidays', 'sell_price_main', 'shops_closed', 'total_orders', 'type_0_discount', 'type_1_discount', 'type_2_discount', 'type_3_discount', 'type_4_discount', 'type_5_discount', 'type_6_discount', 'winter_school_holidays']",['availability'],"['L1_category_name_en', 'L2_category_name_en', 'L3_category_name_en', 'L4_category_name_en', 'name', 'product_unique_id', 'warehouse']",rohlik_sales_1W,1.220508006,0.0,877.590754188,516398d9cb76a18f,False,0.7.0,1.220508006,1.5204800642,0.2151686251,0.1697896851,,,,3942
-TabPFN-TS,autogluon/fev_datasets,rossmann_1D,48,10,-480,48,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Sales,,"['DayOfWeek', 'Open', 'Promo', 'SchoolHoliday', 'StateHoliday']",['Customers'],"['Assortment', 'CompetitionDistance', 'CompetitionOpenSinceMonth', 'CompetitionOpenSinceYear', 'Promo2', 'Promo2SinceWeek', 'Promo2SinceYear', 'PromoInterval', 'Store', 'StoreType']",rossmann_1D,0.23207865,0.0,14387.535355731,7c1cf165ce5e0f8b,False,0.7.0,0.23207865,0.2944517637,0.0979018956,0.0772288962,,,,11150
-TabPFN-TS,autogluon/fev_datasets,rossmann_1W,13,8,-104,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Sales,,"['Open', 'Promo', 'SchoolHoliday', 'StateHoliday']",['Customers'],"['Assortment', 'CompetitionDistance', 'CompetitionOpenSinceMonth', 'CompetitionOpenSinceYear', 'Promo2', 'Promo2SinceWeek', 'Promo2SinceYear', 'PromoInterval', 'Store', 'StoreType']",rossmann_1W,0.2538651882,0.0,1488.372172291,cf54ffb87953c85f,False,0.7.0,0.2538651882,0.3046311863,0.0791731263,0.0659741153,,,,8920
-TabPFN-TS,autogluon/fev_datasets,solar_1D,28,10,-280,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],solar_1D,0.6146167789,0.0,356.121102074,4a9fb28f2a62f798,False,0.7.0,0.6146167789,0.7848225151,0.2466564849,0.1919496514,,,,1370
-TabPFN-TS,autogluon/fev_datasets,solar_1W,13,1,-13,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],solar_1W,0.8695612766,0.0,26.700574169,856de5fa702db186,False,0.7.0,0.8695612766,1.0931583831,0.1849420816,0.1459644443,,,,137
-TabPFN-TS,autogluon/fev_datasets,solar_with_weather_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['day_length', 'humidity', 'pressure', 'rain_1h', 'snow_1h', 'temp', 'wind_speed']","['clouds_all', 'global_horizontal_irradiance']",[],solar_with_weather_15T,0.7470578953,0.0,61.940340957,61e547dc95d83f5d,False,0.7.0,0.7470578953,0.9444749979,1.1661535196,0.9712352474,,,,20
-TabPFN-TS,autogluon/fev_datasets,solar_with_weather_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['day_length', 'humidity', 'pressure', 'rain_1h', 'snow_1h', 'temp', 'wind_speed']","['clouds_all', 'global_horizontal_irradiance']",[],solar_with_weather_1H,0.7005612194,0.0,69.248057882,a5ce88d03879a959,False,0.7.0,0.7005612194,0.8628512004000001,0.9096449066,0.7960101453,,,,20
-TabPFN-TS,autogluon/fev_datasets,uci_air_quality_1D,28,11,-308,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['C6H6(GT)', 'CO(GT)', 'NO2(GT)', 'NOx(GT)']",,"['AH', 'RH', 'T']",[],[],uci_air_quality_1D,1.1863454763,0.0,36.414025668,1acb95a018b86a63,False,0.7.0,1.1863454763,1.5308266811,0.3105711883,0.239766452,,,,44
-TabPFN-TS,autogluon/fev_datasets,uci_air_quality_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['C6H6(GT)', 'CO(GT)', 'NO2(GT)', 'NOx(GT)']",,"['AH', 'RH', 'T']",[],[],uci_air_quality_1H,0.9312390864,0.0,186.834506216,187086c23269b305,False,0.7.0,0.9312390864,1.1751368971,0.3857780203,0.3066820684,,,,80
-TabPFN-TS,autogluon/fev_datasets,uk_covid_nation_1D,28,20,-560,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['cumulative_admissions', 'cumulative_cases', 'cumulative_deaths']",,[],"['cumulative_vaccinated_1', 'cumulative_vaccinated_2', 'cumulative_vaccinated_3', 'hospital_cases', 'icu_ventilator_occupancy']",[],uk_covid_nation_1D/cumulative,13.0445256974,0.0,233.156534991,cb76ab66e8a2acda,False,0.7.0,13.0445256974,16.8706126207,0.0419449611,0.0316628726,,,,240
-TabPFN-TS,autogluon/fev_datasets,uk_covid_nation_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['new_admissions', 'new_cases', 'new_deaths']",,[],"['hospital_cases', 'icu_ventilator_occupancy', 'new_vaccinated_1', 'new_vaccinated_2', 'new_vaccinated_3']",[],uk_covid_nation_1D/new,2.0764757709,0.0,180.724875159,cb76ab66e8a2acda,False,0.7.0,2.0764757709,2.5101268505,0.4174416304,0.3652919167,,,,240
-TabPFN-TS,autogluon/fev_datasets,uk_covid_nation_1W,8,4,-32,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['cumulative_admissions', 'cumulative_cases', 'cumulative_deaths']",,[],"['cumulative_vaccinated_1', 'cumulative_vaccinated_2', 'cumulative_vaccinated_3', 'hospital_cases', 'icu_ventilator_occupancy']",[],uk_covid_nation_1W/cumulative,2.8719957749,0.0,13.317467767,0398b1ae44b0e1ae,False,0.7.0,2.8719957749,3.1721656359,0.0386651377,0.0313019374,,,,48
-TabPFN-TS,autogluon/fev_datasets,uk_covid_nation_1W,8,4,-32,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['new_admissions', 'new_cases', 'new_deaths']",,[],"['hospital_cases', 'icu_ventilator_occupancy', 'new_vaccinated_1', 'new_vaccinated_2', 'new_vaccinated_3']",[],uk_covid_nation_1W/new,4.1427702993,0.0,13.727034601,0398b1ae44b0e1ae,False,0.7.0,4.1427702993,4.8064190531,0.626670666,0.5181874025000001,,,,48
-TabPFN-TS,autogluon/fev_datasets,uk_covid_utla_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,new_cases,,[],[],[],uk_covid_utla_1D/new,3.8009751218,0.0,1854.394699517,a8353cbb69d9d419,False,0.7.0,3.8009751218,4.582072345,0.4566554457,0.3768120784,,,,2140
-TabPFN-TS,autogluon/fev_datasets,uk_covid_utla_1W,13,5,-65,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,cumulative_cases,,[],[],[],uk_covid_utla_1W/cumulative,16.9124597959,0.0,163.597468951,e882978eeee0c5e3,False,0.7.0,16.9124597959,19.7677867998,0.1957054086,0.16972636,,,,1070
-TabPFN-TS,autogluon/fev_datasets,us_consumption_1M,12,10,-120,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1M,1.5711057336,0.0,106.80668551,6f0b0899ba9d50bb,False,0.7.0,1.5711057336,1.8857443126,0.0282917617,0.0243746544,,,,310
-TabPFN-TS,autogluon/fev_datasets,us_consumption_1Q,8,10,-80,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1Q,2.6728862979,0.0,106.271390052,34ddaf654b836be3,False,0.7.0,2.6728862979,3.7648783035,0.0508262731,0.039451329,,,,310
-TabPFN-TS,autogluon/fev_datasets,us_consumption_1Y,5,10,-50,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1Y,4.1801774688,0.0,55.193754933,69d8accb103bbb77,False,0.7.0,4.1801774688,5.0551837428,0.0673417844,0.0536317719,,,,310
-TabPFN-TS,autogluon/fev_datasets,walmart,39,1,-39,39,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['CPI', 'Fuel_Price', 'IsHoliday', 'MarkDown1', 'MarkDown2', 'MarkDown3', 'MarkDown4', 'MarkDown5', 'Temperature', 'Unemployment']",[],"['Dept', 'Size', 'Store', 'Type']",walmart,0.6618592710000001,0.0,625.895905024,f84328c62c91aaf5,False,0.7.0,0.6618592710000001,0.8317842871000001,0.0943299681,0.0751515146,,,,2936
-TabPFN-TS,autogluon/fev_datasets,world_co2_emissions,5,9,-45,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_co2_emissions,2.7200799174,0.0,267.598193471,66fdc0a9c269539c,False,0.7.0,2.7200799174,3.2702702323,0.0868360951,0.0717195922,,,,1719
-TabPFN-TS,autogluon/fev_datasets,world_life_expectancy,5,10,-50,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_life_expectancy,1.1492708484,0.0,357.449659468,63f326fa372ad29a,False,0.7.0,1.1492708484,1.3478888107,0.0108183488,0.0093362704,,,,2370
-TabPFN-TS,autogluon/fev_datasets,world_tourism,5,2,-10,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_tourism,2.7953196676000003,0.0,57.327634924,f03e22f4082953f7,False,0.7.0,2.7953196676000003,3.3270326033,0.0676485132,0.0601786476,,,,356
-TimesFM-2.5,autogluon/fev_datasets,ETT_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_15T,0.5771622748,0.0,64.786757655,9f6541408f56392f,False,0.7.0,0.5771622748,0.7295309932,0.1167248718,0.0925313491,2.0.0,,,280
-TimesFM-2.5,autogluon/fev_datasets,ETT_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1D,1.1440582667,0.0,3.459230485,ff06ef09d043bd73,False,0.7.0,1.1440582667,1.3611067371,0.332150948,0.267888696,2.0.0,,,280
-TimesFM-2.5,autogluon/fev_datasets,ETT_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1H,0.8822637379,0.0,66.847923284,1051fcbf7ab489b5,False,0.7.0,0.8822637379,1.1239074995,0.245201607,0.1916135933,2.0.0,,,280
-TimesFM-2.5,autogluon/fev_datasets,ETT_1W,13,5,-65,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1W,2.2485701754,0.0,0.642457335,f7babcd132f54bf3,False,0.7.0,2.2485701754,2.6215325512,0.4956519336,0.3998766685,2.0.0,,,70
-TimesFM-2.5,autogluon/fev_datasets,LOOP_SEATTLE_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_1D,0.7738014961,0.0,6.011495267,02d7b9f04d1c3187,False,0.7.0,0.7738014961,0.9509504834,0.0359623253,0.0292182088,2.0.0,,,3230
-TimesFM-2.5,autogluon/fev_datasets,LOOP_SEATTLE_1H,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_1H,0.6206804936,0.0,106.692232849,08811ee17f93df42,False,0.7.0,0.6206804936,0.7539313166,0.0643115029,0.0529133781,2.0.0,,,3230
-TimesFM-2.5,autogluon/fev_datasets,LOOP_SEATTLE_5T,288,10,-2880,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_5T,0.5953126390000001,0.0,202.939028706,c2739a4b195beef3,False,0.7.0,0.5953126390000001,0.7344527308000001,0.0792618439,0.0643709018,2.0.0,,,3230
-TimesFM-2.5,autogluon/fev_datasets,M_DENSE_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],M_DENSE_1D,0.7075343346,0.0,1.847663017,12417cabd3e820d7,False,0.7.0,0.7075343346,0.8575514804000001,0.0935403809,0.0773717212,2.0.0,,,300
-TimesFM-2.5,autogluon/fev_datasets,M_DENSE_1H,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],M_DENSE_1H,0.556059175,0.0,33.107849628,e973593b94c21fa6,False,0.7.0,0.556059175,0.6693472657,0.13799605,0.1143436056,2.0.0,,,300
-TimesFM-2.5,autogluon/fev_datasets,SZ_TAXI_15T,96,10,-960,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],SZ_TAXI_15T,0.3966454244,0.0,16.42275307,3e6f0d3380ac07cc,False,0.7.0,0.3966454244,0.5037458638,0.2409728497,0.1894354422,2.0.0,,,1560
-TimesFM-2.5,autogluon/fev_datasets,SZ_TAXI_1H,168,2,-336,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],SZ_TAXI_1H,0.4156030479,0.0,1.66766593,7c28d9c08a8a99d2,False,0.7.0,0.4156030479,0.5174781061,0.1730356291,0.1394973218,2.0.0,,,312
-TimesFM-2.5,autogluon/fev_datasets,australian_tourism,8,2,-16,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],australian_tourism,0.7323027992000001,0.0,0.542670728,e3e704ef830bb1f4,False,0.7.0,0.7323027992000001,0.9190089649,0.0948839262,0.0761527549,2.0.0,,,178
-TimesFM-2.5,autogluon/fev_datasets,bizitobs_l2c_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_2', 'target_3', 'target_4', 'target_5', 'target_6']",,[],[],[],bizitobs_l2c_1H,0.3261346281,0.0,10.172930753,fd3fb3349ee15a22,False,0.7.0,0.3261346281,0.4101674728,0.3901138266,0.3062390652,2.0.0,,,140
-TimesFM-2.5,autogluon/fev_datasets,bizitobs_l2c_5T,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_2', 'target_3', 'target_4', 'target_5', 'target_6']",,[],[],[],bizitobs_l2c_5T,0.4610602059,0.0,68.706033288,9cb515b57514a9ab,False,0.7.0,0.4610602059,0.5787129625,0.9057201819,0.7904916189000001,2.0.0,,,140
-TimesFM-2.5,autogluon/fev_datasets,boomlet_1062,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1062,0.5732470754,0.0,68.968922648,44381d6f431f8c90,False,0.7.0,0.5732470754,0.6916399154,0.5789273618,0.4710064002,2.0.0,,,420
-TimesFM-2.5,autogluon/fev_datasets,boomlet_1209,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1209,0.7045922388,0.0,68.969377764,1466ee197c499055,False,0.7.0,0.7045922388,0.8179153246,0.3045249204,0.2609844697,2.0.0,,,1060
-TimesFM-2.5,autogluon/fev_datasets,boomlet_1225,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1225,0.1900803084,0.0,64.118523548,5d9eb3c2d9389376,False,0.7.0,0.1900803084,0.2365234795,0.1242312214,0.1000748977,2.0.0,,,980
-TimesFM-2.5,autogluon/fev_datasets,boomlet_1230,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1230,1.1874247824,0.0,68.965870854,034f57f6576437cc,False,0.7.0,1.1874247824,1.3669883226,0.2999179457,0.2547608466,2.0.0,,,460
-TimesFM-2.5,autogluon/fev_datasets,boomlet_1282,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1282,0.4034160537,0.0,64.407945479,de65600e18e27fe8,False,0.7.0,0.4034160537,0.4938256811,0.3418466096,0.2769507583,2.0.0,,,700
-TimesFM-2.5,autogluon/fev_datasets,boomlet_1487,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1487,0.4122943587,0.0,68.936164665,17003e37fda85cdd,False,0.7.0,0.4122943587,0.5025569448,0.1978987699,0.1621616582,2.0.0,,,1080
-TimesFM-2.5,autogluon/fev_datasets,boomlet_1631,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1631,0.5790200299,0.0,41.430236064,f5255f15ed8188ab,False,0.7.0,0.5790200299,0.7223220370000001,0.3155328254,0.2521962154,2.0.0,,,800
-TimesFM-2.5,autogluon/fev_datasets,boomlet_1676,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_75', 'target_76', 'target_77', 'target_78', 'target_79', 'target_8', 'target_80', 'target_81', 'target_82', 'target_83', 'target_84', 'target_85', 'target_86', 'target_87', 'target_88', 'target_89', 'target_9', 'target_90', 'target_91', 'target_92', 'target_93', 'target_94', 'target_95', 'target_96', 'target_97', 'target_98', 'target_99']",,[],[],[],boomlet_1676,0.562625503,0.0,82.524484714,20768bc9d5e316c5,False,0.7.0,0.562625503,0.6981823962,0.3195228016,0.2519960915,2.0.0,,,2000
-TimesFM-2.5,autogluon/fev_datasets,boomlet_1855,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1855,0.4725778373,0.0,19.752206435,ca3cf5b18a145f72,False,0.7.0,0.4725778373,0.5502667915,0.1647552303,0.1418942616,2.0.0,,,1040
-TimesFM-2.5,autogluon/fev_datasets,boomlet_1975,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_8', 'target_9']",,[],[],[],boomlet_1975,0.1671766157,0.0,39.327994472,3d8d0f68506b1995,False,0.7.0,0.1671766157,0.2045403051,0.1160976808,0.0946619153,2.0.0,,,1500
-TimesFM-2.5,autogluon/fev_datasets,boomlet_2187,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_75', 'target_76', 'target_77', 'target_78', 'target_79', 'target_8', 'target_80', 'target_81', 'target_82', 'target_83', 'target_84', 'target_85', 'target_86', 'target_87', 'target_88', 'target_89', 'target_9', 'target_90', 'target_91', 'target_92', 'target_93', 'target_94', 'target_95', 'target_96', 'target_97', 'target_98', 'target_99']",,[],[],[],boomlet_2187,0.8020040101,0.0,39.126769561,c3fe1a491401b248,False,0.7.0,0.8020040101,0.8936367348,0.2903383515,0.2575487452,2.0.0,,,2000
-TimesFM-2.5,autogluon/fev_datasets,boomlet_285,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_8', 'target_9']",,[],[],[],boomlet_285,0.3965655545,0.0,128.783831147,3dfa571029207f1f,False,0.7.0,0.3965655545,0.4216519838,0.1907992813,0.1683399577,2.0.0,,,1500
-TimesFM-2.5,autogluon/fev_datasets,boomlet_619,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_619,0.3398320588,0.0,64.102726139,2d514811bddfc52d,False,0.7.0,0.3398320588,0.4363557101,0.3117435689,0.2458341339,2.0.0,,,1040
-TimesFM-2.5,autogluon/fev_datasets,boomlet_772,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_772,0.2948668716,0.0,129.371284201,66ce5fbc5ad575a2,False,0.7.0,0.2948668716,0.3429964064,0.160275506,0.1358824185,2.0.0,,,1340
-TimesFM-2.5,autogluon/fev_datasets,boomlet_963,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_963,0.7387586339000001,0.0,65.219353237,bd1c23c0fd1a748e,False,0.7.0,0.7387586339000001,0.8600331800000001,0.397875566,0.3291269599,2.0.0,,,560
-TimesFM-2.5,autogluon/fev_datasets,ecdc_ili,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ecdc_ili,2.2150356629,0.0,1.122880586,0c0a84fa1b54ac63,False,0.7.0,2.2150356629,2.6316220318,0.4172024563,0.3434282741,2.0.0,,,240
-TimesFM-2.5,autogluon/fev_datasets,entsoe_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_15T,0.4709170997,0.0,64.761682793,34c503cb4346b380,False,0.7.0,0.4709170997,0.5903166384,0.0416073938,0.0334792124,2.0.0,,,120
-TimesFM-2.5,autogluon/fev_datasets,entsoe_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_1H,0.4680893711,0.0,66.894658597,0cb6316a70bf9d47,False,0.7.0,0.4680893711,0.5848723966,0.0358633269,0.029016943,2.0.0,,,120
-TimesFM-2.5,autogluon/fev_datasets,entsoe_30T,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_30T,0.5657877209000001,0.0,64.413108111,6ff7f68ac7fbd564,False,0.7.0,0.5657877209000001,0.6957880272,0.0473410125,0.0388367365,2.0.0,,,120
-TimesFM-2.5,autogluon/fev_datasets,epf_be,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Generation forecast', 'System load forecast']",[],[],epf_be,0.4937475347,0.0,64.80552466,50acce5fc8987a4f,False,0.7.0,0.4937475347,0.6101898021000001,0.11255784,0.0904647786,2.0.0,,,20
-TimesFM-2.5,autogluon/fev_datasets,epf_de,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Ampirion Load Forecast', 'PV+Wind Forecast']",[],[],epf_de,1.0300427797,0.0,64.929761657,491dc89fd5b322b5,False,0.7.0,1.0300427797,1.2798889483,0.5914115101,0.4775486473,2.0.0,,,20
-TimesFM-2.5,autogluon/fev_datasets,epf_fr,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Generation forecast', 'System load forecast']",[],[],epf_fr,0.4091649941,0.0,64.79303989,bc5a57cd5727d527,False,0.7.0,0.4091649941,0.4906901724,0.0771284029,0.0640304463,2.0.0,,,20
-TimesFM-2.5,autogluon/fev_datasets,epf_np,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Grid load forecast', 'Wind power forecast']",[],[],epf_np,1.1706350574,0.0,64.989520255,80b01220b34be222,False,0.7.0,1.1706350574,1.4402381231,0.0639044802,0.0519221,2.0.0,,,20
-TimesFM-2.5,autogluon/fev_datasets,epf_pjm,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['System load forecast', 'Zonal COMED load foecast']",[],[],epf_pjm,0.4263079971,0.0,64.228356423,04be360a47b231a4,False,0.7.0,0.4263079971,0.5310653587,0.0941735437,0.0757086151,2.0.0,,,20
-TimesFM-2.5,autogluon/fev_datasets,ercot_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1D,0.8296777262,0.0,24.778023257,d1c9de98a43d4097,False,0.7.0,0.8296777262,1.068637649,0.0756690312,0.0590120341,2.0.0,,,160
-TimesFM-2.5,autogluon/fev_datasets,ercot_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1H,1.1510446297,0.0,66.773171154,95b91121d95f89c8,False,0.7.0,1.1510446297,1.4902437934,0.0764717873,0.0584985426,2.0.0,,,160
-TimesFM-2.5,autogluon/fev_datasets,ercot_1M,12,15,-180,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1M,0.7715311289,0.0,1.516793084,167e0223cbbc1b69,False,0.7.0,0.7715311289,0.9788665964,0.0484172593,0.0380629909,2.0.0,,,120
-TimesFM-2.5,autogluon/fev_datasets,ercot_1W,13,20,-260,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1W,0.9324255927,0.0,3.970952545,091a619858bdabc9,False,0.7.0,0.9324255927,1.1887344162,0.059191324,0.0465659059,2.0.0,,,160
-TimesFM-2.5,autogluon/fev_datasets,favorita_stores_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'onpromotion']",['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1D,0.9493623591,0.0,79.267849388,3c676e1d0f771bf4,False,0.7.0,0.9493623591,1.1675502677,0.1452467814,0.1184216613,2.0.0,,,15790
-TimesFM-2.5,autogluon/fev_datasets,favorita_stores_1M,12,2,-24,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,['onpromotion'],['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1M,1.9983090236,0.0,4.05050632,7c94de5b6e2859ff,False,0.7.0,1.9983090236,2.2337935781,0.2102531455,0.1508910378,2.0.0,,,3158
-TimesFM-2.5,autogluon/fev_datasets,favorita_stores_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,['onpromotion'],['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1W,1.9683866102,0.0,20.574313662,aae27c565b10fe7f,False,0.7.0,1.9683866102,2.2900534378,0.1308373965,0.109472936,2.0.0,,,15790
-TimesFM-2.5,autogluon/fev_datasets,favorita_transactions_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,['holiday'],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1D,0.8735982101,0.0,3.421699087,af6c7be9c6bf8910,True,0.7.0,0.8735982101,1.0842086137,0.0654605195,0.0538691253,2.0.0,,,510
-TimesFM-2.5,autogluon/fev_datasets,favorita_transactions_1M,12,2,-24,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,[],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1M,1.1326951058,0.0,0.395571238,a9ebe0fd05a285b6,False,0.7.0,1.1326951058,1.331599249,0.0741879094,0.0642577109,2.0.0,,,102
-TimesFM-2.5,autogluon/fev_datasets,favorita_transactions_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,[],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1W,1.2227952571,0.0,1.093473089,dcf0217a3f159ec8,True,0.7.0,1.2227952571,1.4718312759,0.0558837991,0.0472163008,2.0.0,,,510
-TimesFM-2.5,autogluon/fev_datasets,fred_md_2025,12,20,-240,12,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['CPIAUCSL', 'FEDFUNDS', 'PAYEMS']",,[],"['M2REAL', 'NONBORRES', 'PPICMM', 'TOTRESNS']",[],fred_md_2025/cee,2.9696966418,0.0,3.564951523,764e9294023ee081,True,0.7.0,2.9696966418,3.5672054431,0.0702077883,0.0602612246,2.0.0,,,60
-TimesFM-2.5,autogluon/fev_datasets,fred_md_2025,12,20,-240,12,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['AAA', 'AWHMAN', 'BAA', 'BUSINVx', 'CPIAUCSL', 'CPIMEDSL', 'CUMFNS', 'DMANEMP', 'EXUSUKx', 'FEDFUNDS', 'GS1', 'GS10', 'GS5', 'HOUST', 'INDPRO', 'INVEST', 'IPBUSEQ', 'IPCONGD', 'IPDCONGD', 'IPDMAT', 'IPFINAL', 'IPMANSICS', 'IPMAT', 'IPNCONGD', 'IPNMAT', 'M2REAL', 'MANEMP', 'NDMANEMP', 'NONBORRES', 'PAYEMS', 'PERMIT', 'PPICMM', 'S&P 500', 'SRVPRD', 'TB3MS', 'TB6MS', 'TOTRESNS', 'UEMP15T26', 'UEMP27OV', 'UEMP5TO14', 'UEMPLT5', 'UEMPMEAN', 'UMCSENTx', 'UNRATE', 'USCONS', 'USFIRE', 'USGOOD', 'USGOVT', 'USTPU', 'USTRADE', 'VIXCLSx']",,[],[],[],fred_md_2025/macro,3.9903461967,0.0,3.548469249,764e9294023ee081,True,0.7.0,3.9903461967,4.7766576668,0.0651858868,0.0537474081,2.0.0,,,1020
-TimesFM-2.5,autogluon/fev_datasets,fred_qd_2025,8,20,-160,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['CPIAUCSL', 'FEDFUNDS', 'PAYEMS']",,[],"['M2REAL', 'NONBORRES', 'PPICMM', 'TOTRESNS']",[],fred_qd_2025/cee,2.1807036186,0.0,1.965229405,d257091c861020bf,False,0.7.0,2.1807036186,2.5230363656,0.1558658059,0.1290291477,2.0.0,,,60
-TimesFM-2.5,autogluon/fev_datasets,fred_qd_2025,8,20,-160,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['AAA', 'AWHMAN', 'BAA', 'BUSINVx', 'CPIAUCSL', 'CPIMEDSL', 'CUMFNS', 'DMANEMP', 'EXUSUKx', 'FEDFUNDS', 'GS1', 'GS10', 'GS5', 'HOUST', 'INDPRO', 'INVEST', 'IPBUSEQ', 'IPCONGD', 'IPDCONGD', 'IPDMAT', 'IPFINAL', 'IPMANSICS', 'IPMAT', 'IPNCONGD', 'IPNMAT', 'M2REAL', 'MANEMP', 'NDMANEMP', 'NONBORRES', 'PAYEMS', 'PERMIT', 'PPICMM', 'S&P 500', 'SRVPRD', 'TB3MS', 'TB6MS', 'TOTRESNS', 'UEMP15T26', 'UEMP27OV', 'UEMP5TO14', 'UEMPLT5', 'UEMPMEAN', 'UMCSENTx', 'UNRATE', 'USCONS', 'USFIRE', 'USGOOD', 'USGOVT', 'USTPU', 'USTRADE', 'VIXCLSx']",,[],[],[],fred_qd_2025/macro,3.5932767502000003,0.0,1.920538253,d257091c861020bf,False,0.7.0,3.5932767502000003,4.2312964035,0.1036789802,0.0852353396,2.0.0,,,1020
-TimesFM-2.5,autogluon/fev_datasets,gvar,8,10,-80,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['Dp', 'ep', 'eq', 'lr', 'r', 'y']",,[],"['pmat', 'pmetal', 'poil']",[],gvar,0.5902138174,0.0,3.565754851,e60f8e1e38f9acca,False,0.7.0,0.5902138174,0.7192074299,0.0187466032,0.0152665936,2.0.0,,,1980
-TimesFM-2.5,autogluon/fev_datasets,hermes,52,1,-52,52,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['external'],[],"['category', 'country']",hermes,0.6183988819,0.0,14.230830653,f87501b2bd02803b,False,0.7.0,0.6183988819,0.7871785508,0.0029142732,0.0022928048,2.0.0,,,10000
-TimesFM-2.5,autogluon/fev_datasets,hierarchical_sales_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hierarchical_sales_1D,0.5516009983,0.0,7.050097473,0ecbb4076fd5ba78,False,0.7.0,0.5516009983,0.6882027162000001,0.6943961620000001,0.5615462267,2.0.0,,,1180
-TimesFM-2.5,autogluon/fev_datasets,hierarchical_sales_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hierarchical_sales_1W,0.6177938232,0.0,1.988342158,691bd281f0ad7adc,False,0.7.0,0.6177938232,0.7507699991,0.4307300597,0.36900549,2.0.0,,,1180
-TimesFM-2.5,autogluon/fev_datasets,hospital,12,4,-48,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital,0.6797112236,0.0,4.018070421,9c6e8721c2eca10b,False,0.7.0,0.6797112236,0.8629412822,0.0891746506,0.0714240645,2.0.0,,,3068
-TimesFM-2.5,autogluon/fev_datasets,hospital_admissions_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital_admissions_1D,0.5560606379,0.0,6.87825906,51b7fbd3926341eb,False,0.7.0,0.5560606379,0.7193032164000001,0.533603767,0.4124642645,2.0.0,,,160
-TimesFM-2.5,autogluon/fev_datasets,hospital_admissions_1W,13,16,-208,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital_admissions_1W,0.5795336813,0.0,1.6037517490000002,bff3ae304070efd9,False,0.7.0,0.5795336813,0.7544838609000001,0.212422525,0.1632100946,2.0.0,,,128
-TimesFM-2.5,autogluon/fev_datasets,jena_weather_10T,144,20,-2880,144,1,,144,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_10T,0.3571555639,0.0,66.091358073,311a660faf591409,False,0.7.0,0.3571555639,0.4373143782,0.257587004,0.2127668736,2.0.0,,,420
-TimesFM-2.5,autogluon/fev_datasets,jena_weather_1D,28,11,-308,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_1D,1.0903437431,0.0,1.275078208,81a9d748210aa612,False,0.7.0,1.0903437431,1.3763415621,0.2713017484,0.218506197,2.0.0,,,231
-TimesFM-2.5,autogluon/fev_datasets,jena_weather_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_1H,0.3588962212,0.0,34.306519789,8eb1d310607e8fee,False,0.7.0,0.3588962212,0.4392356659,0.2603537007,0.2233014541,2.0.0,,,420
-TimesFM-2.5,autogluon/fev_datasets,kdd_cup_2022_10T,288,10,-2880,288,1,,144,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_10T,0.0763043831,0.0,102.447561924,e200b7c6bc525a8d,True,0.7.0,0.0763043831,0.0851123025,0.2208641335,0.2090577891,2.0.0,,,1340
-TimesFM-2.5,autogluon/fev_datasets,kdd_cup_2022_1D,14,10,-140,14,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_1D,0.6975119247,0.0,2.747804891,67f17ff257220281,False,0.7.0,0.6975119247,0.8934942013,0.7140720218000001,0.5527344226,2.0.0,,,1340
-TimesFM-2.5,autogluon/fev_datasets,kdd_cup_2022_30T,96,10,-960,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_30T,0.505462759,0.0,67.977367734,257e85b44bdb8154,False,0.7.0,0.505462759,0.6348935773000001,1.9992301464,1.6757596515,2.0.0,,,1340
-TimesFM-2.5,autogluon/fev_datasets,m5_1D,28,1,-28,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1D,0.7188651141,0.0,169.268368778,0d8bfe3780a2c494,True,0.7.0,0.7188651141,0.8720930389,0.696829617,0.5506692878,2.0.0,,,30490
-TimesFM-2.5,autogluon/fev_datasets,m5_1M,12,1,-12,12,6,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1M,0.9798127249,0.0,34.202356599,78d200c01b7350ff,False,0.7.0,0.9798127249,1.1576052027,0.4248805046,0.3370295405,2.0.0,,,29364
-TimesFM-2.5,autogluon/fev_datasets,m5_1W,13,1,-13,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1W,0.8890017946000001,0.0,42.14969986,60d0a43fd09b5dcc,True,0.7.0,0.8890017946000001,1.1221684935,0.4200999141,0.3312204437,2.0.0,,,30490
-TimesFM-2.5,autogluon/fev_datasets,proenfo_gfc12,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc12,0.1876463126,0.0,33.50083739,e39dc59e1a6af0e2,True,0.7.0,0.1876463126,0.2167778164,0.0163352717,0.0143022806,2.0.0,,,110
-TimesFM-2.5,autogluon/fev_datasets,proenfo_gfc14,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc14,0.1403355325,0.0,66.706564989,90428df2dbce525e,True,0.7.0,0.1403355325,0.168757596,0.008334265,0.0069257919,2.0.0,,,20
-TimesFM-2.5,autogluon/fev_datasets,proenfo_gfc17,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc17,0.1601353062,0.0,67.093669031,f8bf8da06e500162,True,0.7.0,0.1601353062,0.1898164227,0.0119547108,0.0101112618,2.0.0,,,160
-TimesFM-2.5,autogluon/fev_datasets,redset_15T,96,10,-960,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_15T,0.7405330074,0.0,33.970893608,391e616eee276356,False,0.7.0,0.7405330074,0.8687945356000001,0.3049023062,0.2501147518,2.0.0,,,1260
-TimesFM-2.5,autogluon/fev_datasets,redset_1H,24,10,-240,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_1H,1.366509388,0.0,12.799936874,a7542f5bcc8cf4ab,False,0.7.0,1.366509388,1.4842036779,0.2327233687,0.1953408446,2.0.0,,,1380
-TimesFM-2.5,autogluon/fev_datasets,redset_5T,288,10,-2880,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_5T,0.7231351044000001,0.0,68.397080925,4776bd88b54d8a04,False,0.7.0,0.7231351044000001,0.8482881600000001,0.3443454772,0.288140782,2.0.0,,,1180
-TimesFM-2.5,autogluon/fev_datasets,restaurant,28,8,-224,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],"['air_area_name', 'air_genre_name', 'latitude', 'longitude']",restaurant,0.6773501614,0.0,11.601169848,3863ed9dabc164dc,False,0.7.0,0.6773501614,0.8503096514,0.3569885604,0.2808265082,2.0.0,,,6502
-TimesFM-2.5,autogluon/fev_datasets,rohlik_orders_1D,61,5,2023-05-01T00:00:00,61,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,orders,,"['holiday', 'school_holidays', 'shops_closed', 'winter_school_holidays']","['blackout', 'frankfurt_shutdown', 'mini_shutdown', 'mov_change', 'precipitation', 'shutdown', 'snow', 'user_activity_1', 'user_activity_2']",[],rohlik_orders_1D,1.0057460708,0.0,1.440450199,8334ba19a7f5e7a1,False,0.7.0,1.0057460708,1.2504095981,0.0590882786,0.0473405217,2.0.0,,,35
-TimesFM-2.5,autogluon/fev_datasets,rohlik_orders_1W,8,5,2023-05-01T00:00:00,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,orders,,"['holiday', 'school_holidays', 'shops_closed', 'winter_school_holidays']","['blackout', 'frankfurt_shutdown', 'mini_shutdown', 'mov_change', 'precipitation', 'shutdown', 'snow', 'user_activity_1', 'user_activity_2']",[],rohlik_orders_1W,1.32777854,0.0,0.65969898,63260348a6b49874,False,0.7.0,1.32777854,1.6591862082,0.0541592546,0.0430425121,2.0.0,,,35
-TimesFM-2.5,autogluon/fev_datasets,rohlik_sales_1D,14,1,2023-12-15T00:00:00,14,14,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'school_holidays', 'sell_price_main', 'shops_closed', 'total_orders', 'type_0_discount', 'type_1_discount', 'type_2_discount', 'type_3_discount', 'type_4_discount', 'type_5_discount', 'type_6_discount', 'winter_school_holidays']",['availability'],"['L1_category_name_en', 'L2_category_name_en', 'L3_category_name_en', 'L4_category_name_en', 'name', 'product_unique_id', 'warehouse']",rohlik_sales_1D,1.0957943217,0.0,17.438903593,22fd3891c3b685ce,False,0.7.0,1.0957943217,1.3237942192,0.3586171567,0.2983877224,2.0.0,,,4116
-TimesFM-2.5,autogluon/fev_datasets,rohlik_sales_1W,8,1,2023-12-15T00:00:00,8,8,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'school_holidays', 'sell_price_main', 'shops_closed', 'total_orders', 'type_0_discount', 'type_1_discount', 'type_2_discount', 'type_3_discount', 'type_4_discount', 'type_5_discount', 'type_6_discount', 'winter_school_holidays']",['availability'],"['L1_category_name_en', 'L2_category_name_en', 'L3_category_name_en', 'L4_category_name_en', 'name', 'product_unique_id', 'warehouse']",rohlik_sales_1W,1.4010447148,0.0,5.308269138,516398d9cb76a18f,False,0.7.0,1.4010447148,1.6890705942,0.2667129934,0.2196835891,2.0.0,,,3942
-TimesFM-2.5,autogluon/fev_datasets,rossmann_1D,48,10,-480,48,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Sales,,"['DayOfWeek', 'Open', 'Promo', 'SchoolHoliday', 'StateHoliday']",['Customers'],"['Assortment', 'CompetitionDistance', 'CompetitionOpenSinceMonth', 'CompetitionOpenSinceYear', 'Promo2', 'Promo2SinceWeek', 'Promo2SinceYear', 'PromoInterval', 'Store', 'StoreType']",rossmann_1D,0.5015787540000001,0.0,34.178752926,7c1cf165ce5e0f8b,False,0.7.0,0.5015787540000001,0.6105528999000001,0.2085952148,0.171116383,2.0.0,,,11150
-TimesFM-2.5,autogluon/fev_datasets,rossmann_1W,13,8,-104,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Sales,,"['Open', 'Promo', 'SchoolHoliday', 'StateHoliday']",['Customers'],"['Assortment', 'CompetitionDistance', 'CompetitionOpenSinceMonth', 'CompetitionOpenSinceYear', 'Promo2', 'Promo2SinceWeek', 'Promo2SinceYear', 'PromoInterval', 'Store', 'StoreType']",rossmann_1W,0.4951771693,0.0,12.359979509,cf54ffb87953c85f,False,0.7.0,0.4951771693,0.654277349,0.1802897658,0.1350575869,2.0.0,,,8920
-TimesFM-2.5,autogluon/fev_datasets,solar_1D,28,10,-280,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],solar_1D,0.6181956031,0.0,3.134634706,4a9fb28f2a62f798,False,0.7.0,0.6181956031,0.7870867805,0.2471472979,0.1938342095,2.0.0,,,1370
-TimesFM-2.5,autogluon/fev_datasets,solar_1W,13,1,-13,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],solar_1W,1.0958866195,0.0,0.465018074,856de5fa702db186,False,0.7.0,1.0958866195,1.4613966872000002,0.246641323,0.1848997811,2.0.0,,,137
-TimesFM-2.5,autogluon/fev_datasets,solar_with_weather_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['day_length', 'humidity', 'pressure', 'rain_1h', 'snow_1h', 'temp', 'wind_speed']","['clouds_all', 'global_horizontal_irradiance']",[],solar_with_weather_15T,0.9063360715,0.0,65.197461979,61e547dc95d83f5d,False,0.7.0,0.9063360715,1.1152651553,1.4700251039,1.2404817956,2.0.0,,,20
-TimesFM-2.5,autogluon/fev_datasets,solar_with_weather_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['day_length', 'humidity', 'pressure', 'rain_1h', 'snow_1h', 'temp', 'wind_speed']","['clouds_all', 'global_horizontal_irradiance']",[],solar_with_weather_1H,0.8153876375,0.0,64.751820934,a5ce88d03879a959,False,0.7.0,0.8153876375,1.0512633641,1.2011471927,0.9695951652,2.0.0,,,20
-TimesFM-2.5,autogluon/fev_datasets,uci_air_quality_1D,28,11,-308,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['C6H6(GT)', 'CO(GT)', 'NO2(GT)', 'NOx(GT)']",,"['AH', 'RH', 'T']",[],[],uci_air_quality_1D,1.205083714,0.0,1.333174532,1acb95a018b86a63,False,0.7.0,1.205083714,1.5147124464,0.3069281131,0.2425060369,2.0.0,,,44
-TimesFM-2.5,autogluon/fev_datasets,uci_air_quality_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['C6H6(GT)', 'CO(GT)', 'NO2(GT)', 'NOx(GT)']",,"['AH', 'RH', 'T']",[],[],uci_air_quality_1H,0.8769395756,0.0,38.162736966,187086c23269b305,False,0.7.0,0.8769395756,1.1225931257,0.371518901,0.2903775779,2.0.0,,,80
-TimesFM-2.5,autogluon/fev_datasets,uk_covid_nation_1D,28,20,-560,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['cumulative_admissions', 'cumulative_cases', 'cumulative_deaths']",,[],"['cumulative_vaccinated_1', 'cumulative_vaccinated_2', 'cumulative_vaccinated_3', 'hospital_cases', 'icu_ventilator_occupancy']",[],uk_covid_nation_1D/cumulative,7.050808391,0.0,3.533940513,cb76ab66e8a2acda,False,0.7.0,7.050808391,7.9247162242,0.0172808705,0.0153292336,2.0.0,,,240
-TimesFM-2.5,autogluon/fev_datasets,uk_covid_nation_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['new_admissions', 'new_cases', 'new_deaths']",,[],"['hospital_cases', 'icu_ventilator_occupancy', 'new_vaccinated_1', 'new_vaccinated_2', 'new_vaccinated_3']",[],uk_covid_nation_1D/new,2.135267758,0.0,3.490053468,cb76ab66e8a2acda,False,0.7.0,2.135267758,2.5834199323,0.3887864605,0.3156210831,2.0.0,,,240
-TimesFM-2.5,autogluon/fev_datasets,uk_covid_nation_1W,8,4,-32,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['cumulative_admissions', 'cumulative_cases', 'cumulative_deaths']",,[],"['cumulative_vaccinated_1', 'cumulative_vaccinated_2', 'cumulative_vaccinated_3', 'hospital_cases', 'icu_ventilator_occupancy']",[],uk_covid_nation_1W/cumulative,4.01082831,0.0,0.554566821,0398b1ae44b0e1ae,False,0.7.0,4.01082831,5.0226305819,0.0420784587,0.0334625898,2.0.0,,,48
-TimesFM-2.5,autogluon/fev_datasets,uk_covid_nation_1W,8,4,-32,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['new_admissions', 'new_cases', 'new_deaths']",,[],"['hospital_cases', 'icu_ventilator_occupancy', 'new_vaccinated_1', 'new_vaccinated_2', 'new_vaccinated_3']",[],uk_covid_nation_1W/new,3.7830532019,0.0,0.551951174,0398b1ae44b0e1ae,False,0.7.0,3.7830532019,4.6024864277,0.4691022187,0.3916377081,2.0.0,,,48
-TimesFM-2.5,autogluon/fev_datasets,uk_covid_utla_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,new_cases,,[],[],[],uk_covid_utla_1D/new,3.5117739729,0.0,6.738575816,a8353cbb69d9d419,False,0.7.0,3.5117739729,4.1803353814,0.4222944811,0.3533112754,2.0.0,,,2140
-TimesFM-2.5,autogluon/fev_datasets,uk_covid_utla_1W,13,5,-65,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,cumulative_cases,,[],[],[],uk_covid_utla_1W/cumulative,18.4860520309,0.0,1.7788910100000002,e882978eeee0c5e3,False,0.7.0,18.4860520309,21.5163025658,0.2217276141,0.1901138083,2.0.0,,,1070
-TimesFM-2.5,autogluon/fev_datasets,us_consumption_1M,12,10,-120,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1M,1.6053660409,0.0,1.922439573,6f0b0899ba9d50bb,False,0.7.0,1.6053660409,1.931250606,0.0262938315,0.0226701155,2.0.0,,,310
-TimesFM-2.5,autogluon/fev_datasets,us_consumption_1Q,8,10,-80,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1Q,1.9266298936,0.0,1.127839325,34ddaf654b836be3,False,0.7.0,1.9266298936,2.3646254512,0.0319971864,0.026686332,2.0.0,,,310
-TimesFM-2.5,autogluon/fev_datasets,us_consumption_1Y,5,10,-50,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1Y,4.007463063,0.0,1.028275244,69d8accb103bbb77,False,0.7.0,4.007463063,4.8010821783,0.0577691134,0.0465564099,2.0.0,,,310
-TimesFM-2.5,autogluon/fev_datasets,walmart,39,1,-39,39,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['CPI', 'Fuel_Price', 'IsHoliday', 'MarkDown1', 'MarkDown2', 'MarkDown3', 'MarkDown4', 'MarkDown5', 'Temperature', 'Unemployment']",[],"['Dept', 'Size', 'Store', 'Type']",walmart,0.6794198494,0.0,3.93519075,f84328c62c91aaf5,False,0.7.0,0.6794198494,0.8614820536000001,0.1015809998,0.0803039051,2.0.0,,,2936
-TimesFM-2.5,autogluon/fev_datasets,world_co2_emissions,5,9,-45,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_co2_emissions,2.8764182979,0.0,2.3225473450000003,66fdc0a9c269539c,False,0.7.0,2.8764182979,3.4342160899,0.0879381941,0.0751862129,2.0.0,,,1719
-TimesFM-2.5,autogluon/fev_datasets,world_life_expectancy,5,10,-50,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_life_expectancy,1.2103954021,0.0,3.34724698,63f326fa372ad29a,False,0.7.0,1.2103954021,1.4011006524,0.0112725816,0.0097525655,2.0.0,,,2370
-TimesFM-2.5,autogluon/fev_datasets,world_tourism,5,2,-10,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_tourism,3.5616996609,0.0,0.690590669,f03e22f4082953f7,False,0.7.0,3.5616996609,4.1100857021,0.1209704466,0.0984825726,2.0.0,,,356
-TiRex,autogluon/fev_datasets,ETT_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_15T,0.5682984928,0.0,1.65207055,9f6541408f56392f,False,0.7.0,0.5682984928,0.7187969186000001,0.1158377729,0.0914609728,1.0.0,,,280
-TiRex,autogluon/fev_datasets,ETT_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1D,1.1014613305,0.0,0.77708764,ff06ef09d043bd73,False,0.7.0,1.1014613305,1.3268087247,0.3280948972,0.2612366718,1.0.0,,,280
-TiRex,autogluon/fev_datasets,ETT_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1H,0.8735827998000001,0.0,2.810295,1051fcbf7ab489b5,False,0.7.0,0.8735827998000001,1.1177931379,0.2477475438,0.1923900276,1.0.0,,,280
-TiRex,autogluon/fev_datasets,ETT_1W,13,5,-65,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1W,2.264520334,0.0,0.392968194,f7babcd132f54bf3,False,0.7.0,2.264520334,2.6203818352,0.4771292359,0.3834384084,1.0.0,,,70
-TiRex,autogluon/fev_datasets,LOOP_SEATTLE_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_1D,0.7923359463,0.0,2.062045309,02d7b9f04d1c3187,False,0.7.0,0.7923359463,0.9691232143,0.0367103025,0.029926259,1.0.0,,,3230
-TiRex,autogluon/fev_datasets,LOOP_SEATTLE_1H,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_1H,0.6558214249000001,0.0,10.81366919,08811ee17f93df42,False,0.7.0,0.6558214249000001,0.8196171978,0.0704373386,0.0562291392,1.0.0,,,3230
-TiRex,autogluon/fev_datasets,LOOP_SEATTLE_5T,288,10,-2880,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_5T,0.5488731010000001,0.0,16.674254537,c2739a4b195beef3,False,0.7.0,0.5488731010000001,0.6919744542,0.0750445005,0.0594513843,1.0.0,,,3230
-TiRex,autogluon/fev_datasets,M_DENSE_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],M_DENSE_1D,0.7460414464,0.0,0.564100803,12417cabd3e820d7,False,0.7.0,0.7460414464,0.9065688429,0.0993285432,0.0821914373,1.0.0,,,300
-TiRex,autogluon/fev_datasets,M_DENSE_1H,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],M_DENSE_1H,0.5867504602,0.0,1.839344752,e973593b94c21fa6,False,0.7.0,0.5867504602,0.7118568012000001,0.1467316881,0.1208851977,1.0.0,,,300
-TiRex,autogluon/fev_datasets,SZ_TAXI_15T,96,10,-960,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],SZ_TAXI_15T,0.3955981846,0.0,2.92539489,3e6f0d3380ac07cc,False,0.7.0,0.3955981846,0.5028743392,0.2404616728,0.1889248146,1.0.0,,,1560
-TiRex,autogluon/fev_datasets,SZ_TAXI_1H,168,2,-336,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],SZ_TAXI_1H,0.4050422075,0.0,1.307250161,7c28d9c08a8a99d2,False,0.7.0,0.4050422075,0.4985809825,0.1678203642,0.1368741884,1.0.0,,,312
-TiRex,autogluon/fev_datasets,australian_tourism,8,2,-16,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],australian_tourism,0.7859715496,0.0,0.385973531,e3e704ef830bb1f4,False,0.7.0,0.7859715496,0.9757973332,0.1068701223,0.0861105624,1.0.0,,,178
-TiRex,autogluon/fev_datasets,bizitobs_l2c_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_2', 'target_3', 'target_4', 'target_5', 'target_6']",,[],[],[],bizitobs_l2c_1H,0.3662951077,0.0,0.7050331200000001,fd3fb3349ee15a22,False,0.7.0,0.3662951077,0.4680641032,0.4282031118,0.3395892762,1.0.0,,,140
-TiRex,autogluon/fev_datasets,bizitobs_l2c_5T,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_2', 'target_3', 'target_4', 'target_5', 'target_6']",,[],[],[],bizitobs_l2c_5T,0.6788551053,0.0,3.976261692,9cb515b57514a9ab,False,0.7.0,0.6788551053,0.7958700059,1.4135781384,1.2724528657,1.0.0,,,140
-TiRex,autogluon/fev_datasets,boomlet_1062,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1062,0.5548997157000001,0.0,4.19537329,44381d6f431f8c90,False,0.7.0,0.5548997157000001,0.6804959751,0.5749673398,0.462540047,1.0.0,,,420
-TiRex,autogluon/fev_datasets,boomlet_1209,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1209,0.7293072077,0.0,6.824736111,1466ee197c499055,False,0.7.0,0.7293072077,0.8520639537,0.3234299188,0.2759885511,1.0.0,,,1060
-TiRex,autogluon/fev_datasets,boomlet_1225,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1225,0.1876278604,0.0,1.690004979,5d9eb3c2d9389376,False,0.7.0,0.1876278604,0.2338512692,0.1230602603,0.0990409314,1.0.0,,,980
-TiRex,autogluon/fev_datasets,boomlet_1230,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1230,1.1859324313,0.0,4.311595843,034f57f6576437cc,False,0.7.0,1.1859324313,1.3783150604,0.3117769108,0.2653064283,1.0.0,,,460
-TiRex,autogluon/fev_datasets,boomlet_1282,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1282,0.4089033383,0.0,1.41035913,de65600e18e27fe8,False,0.7.0,0.4089033383,0.4966357089,0.3447100926,0.2813823066,1.0.0,,,700
-TiRex,autogluon/fev_datasets,boomlet_1487,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1487,0.4270074608,0.0,6.890417779,17003e37fda85cdd,False,0.7.0,0.4270074608,0.5187314221,0.2042655856,0.1679334305,1.0.0,,,1080
-TiRex,autogluon/fev_datasets,boomlet_1631,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1631,0.5981611197000001,0.0,2.064599672,f5255f15ed8188ab,False,0.7.0,0.5981611197000001,0.7478094028000001,0.3227136546,0.2578011825,1.0.0,,,800
-TiRex,autogluon/fev_datasets,boomlet_1676,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_75', 'target_76', 'target_77', 'target_78', 'target_79', 'target_8', 'target_80', 'target_81', 'target_82', 'target_83', 'target_84', 'target_85', 'target_86', 'target_87', 'target_88', 'target_89', 'target_9', 'target_90', 'target_91', 'target_92', 'target_93', 'target_94', 'target_95', 'target_96', 'target_97', 'target_98', 'target_99']",,[],[],[],boomlet_1676,0.5712459165,0.0,3.89651161,20768bc9d5e316c5,False,0.7.0,0.5712459165,0.7093011606,0.3219743376,0.2548401001,1.0.0,,,2000
-TiRex,autogluon/fev_datasets,boomlet_1855,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1855,0.4500166174,0.0,1.036788624,ca3cf5b18a145f72,False,0.7.0,0.4500166174,0.5278191175,0.157446321,0.1348268939,1.0.0,,,1040
-TiRex,autogluon/fev_datasets,boomlet_1975,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_8', 'target_9']",,[],[],[],boomlet_1975,0.1921381366,0.0,1.256885476,3d8d0f68506b1995,False,0.7.0,0.1921381366,0.2344681763,0.1343890613,0.1095269694,1.0.0,,,1500
-TiRex,autogluon/fev_datasets,boomlet_2187,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_75', 'target_76', 'target_77', 'target_78', 'target_79', 'target_8', 'target_80', 'target_81', 'target_82', 'target_83', 'target_84', 'target_85', 'target_86', 'target_87', 'target_88', 'target_89', 'target_9', 'target_90', 'target_91', 'target_92', 'target_93', 'target_94', 'target_95', 'target_96', 'target_97', 'target_98', 'target_99']",,[],[],[],boomlet_2187,0.7105001322000001,0.0,1.5226238630000002,c3fe1a491401b248,False,0.7.0,0.7105001322000001,0.8085306304000001,0.2640573038,0.2304085287,1.0.0,,,2000
-TiRex,autogluon/fev_datasets,boomlet_285,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_8', 'target_9']",,[],[],[],boomlet_285,0.3453755039,0.0,2.211785118,3dfa571029207f1f,False,0.7.0,0.3453755039,0.4007113979,0.1807812872,0.148143136,1.0.0,,,1500
-TiRex,autogluon/fev_datasets,boomlet_619,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_619,0.3410809257,0.0,1.7688646010000002,2d514811bddfc52d,False,0.7.0,0.3410809257,0.4418338294,0.317407313,0.2471279568,1.0.0,,,1040
-TiRex,autogluon/fev_datasets,boomlet_772,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_772,0.2962086426,0.0,2.114922749,66ce5fbc5ad575a2,False,0.7.0,0.2962086426,0.3435360993,0.16101018,0.136682574,1.0.0,,,1340
-TiRex,autogluon/fev_datasets,boomlet_963,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_963,0.7184034841,0.0,1.27597056,bd1c23c0fd1a748e,False,0.7.0,0.7184034841,0.8276719248000001,0.3901485342,0.3257730396,1.0.0,,,560
-TiRex,autogluon/fev_datasets,ecdc_ili,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ecdc_ili,2.4106397038000003,0.0,0.540699444,0c0a84fa1b54ac63,False,0.7.0,2.4106397038000003,2.8841261459,0.4242536306,0.3706244122,1.0.0,,,240
-TiRex,autogluon/fev_datasets,entsoe_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_15T,0.4692753774,0.0,1.663930145,34c503cb4346b380,False,0.7.0,0.4692753774,0.5986061889000001,0.0420496514,0.03370606,1.0.0,,,120
-TiRex,autogluon/fev_datasets,entsoe_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_1H,0.4701221987,0.0,2.871716862,0cb6316a70bf9d47,False,0.7.0,0.4701221987,0.585380389,0.0363473815,0.0293722588,1.0.0,,,120
-TiRex,autogluon/fev_datasets,entsoe_30T,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_30T,0.5229834486,0.0,1.641426231,6ff7f68ac7fbd564,False,0.7.0,0.5229834486,0.6645923404,0.0399606742,0.0314140317,1.0.0,,,120
-TiRex,autogluon/fev_datasets,epf_be,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Generation forecast', 'System load forecast']",[],[],epf_be,0.5270142745,0.0,0.70574625,50acce5fc8987a4f,False,0.7.0,0.5270142745,0.6743990368,0.1230011668,0.0962218885,1.0.0,,,20
-TiRex,autogluon/fev_datasets,epf_de,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Ampirion Load Forecast', 'PV+Wind Forecast']",[],[],epf_de,1.0321659189,0.0,0.70938062,491dc89fd5b322b5,False,0.7.0,1.0321659189,1.2971032281,0.5786662247000001,0.468452292,1.0.0,,,20
-TiRex,autogluon/fev_datasets,epf_fr,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Generation forecast', 'System load forecast']",[],[],epf_fr,0.4013687759,0.0,0.707450122,bc5a57cd5727d527,False,0.7.0,0.4013687759,0.5040405462,0.0797966965,0.063925129,1.0.0,,,20
-TiRex,autogluon/fev_datasets,epf_np,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Grid load forecast', 'Wind power forecast']",[],[],epf_np,0.9662474004,0.0,0.722700203,80b01220b34be222,False,0.7.0,0.9662474004,1.22255132,0.0554376821,0.0438147562,1.0.0,,,20
-TiRex,autogluon/fev_datasets,epf_pjm,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['System load forecast', 'Zonal COMED load foecast']",[],[],epf_pjm,0.4041710148,0.0,0.716165182,04be360a47b231a4,False,0.7.0,0.4041710148,0.5057793683,0.08936894,0.071403604,1.0.0,,,20
-TiRex,autogluon/fev_datasets,ercot_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1D,0.8182837121000001,0.0,0.775582799,d1c9de98a43d4097,False,0.7.0,0.8182837121000001,1.0650322509,0.075154368,0.0583644776,1.0.0,,,160
-TiRex,autogluon/fev_datasets,ercot_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1H,1.0649765384,0.0,2.931710848,95b91121d95f89c8,False,0.7.0,1.0649765384,1.3770443905,0.0705278089,0.0542294904,1.0.0,,,160
-TiRex,autogluon/fev_datasets,ercot_1M,12,15,-180,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1M,0.8060543809,0.0,0.6346206670000001,167e0223cbbc1b69,False,0.7.0,0.8060543809,1.0121701532,0.0524891056,0.0419160577,1.0.0,,,120
-TiRex,autogluon/fev_datasets,ercot_1W,13,20,-260,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1W,0.954652414,0.0,0.7646730700000001,091a619858bdabc9,False,0.7.0,0.954652414,1.2277888798,0.0586846132,0.0457429263,1.0.0,,,160
-TiRex,autogluon/fev_datasets,favorita_stores_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'onpromotion']",['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1D,0.9681608123,0.0,9.068734943,3c676e1d0f771bf4,False,0.7.0,0.9681608123,1.1934094375,0.1518204361,0.1242660249,1.0.0,,,15790
-TiRex,autogluon/fev_datasets,favorita_stores_1M,12,2,-24,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,['onpromotion'],['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1M,1.8559124197,0.0,1.998728057,7c94de5b6e2859ff,False,0.7.0,1.8559124197,2.2147063817,0.1893665791,0.1421527991,1.0.0,,,3158
-TiRex,autogluon/fev_datasets,favorita_stores_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,['onpromotion'],['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1W,2.046240588,0.0,8.985850864,aae27c565b10fe7f,False,0.7.0,2.046240588,2.4234607638,0.1345634833,0.1134128786,1.0.0,,,15790
-TiRex,autogluon/fev_datasets,favorita_transactions_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,['holiday'],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1D,1.0314215727,0.0,0.6624016110000001,af6c7be9c6bf8910,False,0.7.0,1.0314215727,1.3492617128,0.0820303043,0.067704191,1.0.0,,,510
-TiRex,autogluon/fev_datasets,favorita_transactions_1M,12,2,-24,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,[],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1M,1.0893114126,0.0,0.347895769,a9ebe0fd05a285b6,False,0.7.0,1.0893114126,1.3596174423,0.0772057417,0.0683964364,1.0.0,,,102
-TiRex,autogluon/fev_datasets,favorita_transactions_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,[],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1W,1.3836394276,0.0,0.6595792930000001,dcf0217a3f159ec8,False,0.7.0,1.3836394276,1.7464561746,0.0590786255,0.049259837,1.0.0,,,510
-TiRex,autogluon/fev_datasets,fred_md_2025,12,20,-240,12,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['CPIAUCSL', 'FEDFUNDS', 'PAYEMS']",,[],"['M2REAL', 'NONBORRES', 'PPICMM', 'TOTRESNS']",[],fred_md_2025/cee,3.3490390729,0.0,0.70631739,764e9294023ee081,False,0.7.0,3.3490390729,3.9913296592,0.0771422869,0.0670834958,1.0.0,,,60
-TiRex,autogluon/fev_datasets,fred_md_2025,12,20,-240,12,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['AAA', 'AWHMAN', 'BAA', 'BUSINVx', 'CPIAUCSL', 'CPIMEDSL', 'CUMFNS', 'DMANEMP', 'EXUSUKx', 'FEDFUNDS', 'GS1', 'GS10', 'GS5', 'HOUST', 'INDPRO', 'INVEST', 'IPBUSEQ', 'IPCONGD', 'IPDCONGD', 'IPDMAT', 'IPFINAL', 'IPMANSICS', 'IPMAT', 'IPNCONGD', 'IPNMAT', 'M2REAL', 'MANEMP', 'NDMANEMP', 'NONBORRES', 'PAYEMS', 'PERMIT', 'PPICMM', 'S&P 500', 'SRVPRD', 'TB3MS', 'TB6MS', 'TOTRESNS', 'UEMP15T26', 'UEMP27OV', 'UEMP5TO14', 'UEMPLT5', 'UEMPMEAN', 'UMCSENTx', 'UNRATE', 'USCONS', 'USFIRE', 'USGOOD', 'USGOVT', 'USTPU', 'USTRADE', 'VIXCLSx']",,[],[],[],fred_md_2025/macro,5.3069669462,0.0,1.015879049,764e9294023ee081,False,0.7.0,5.3069669462,6.2436277327,0.0786031675,0.0651736736,1.0.0,,,1020
-TiRex,autogluon/fev_datasets,fred_qd_2025,8,20,-160,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['CPIAUCSL', 'FEDFUNDS', 'PAYEMS']",,[],"['M2REAL', 'NONBORRES', 'PPICMM', 'TOTRESNS']",[],fred_qd_2025/cee,2.0461814654,0.0,0.699750647,d257091c861020bf,False,0.7.0,2.0461814654,2.5007210568,0.146726247,0.1205702323,1.0.0,,,60
-TiRex,autogluon/fev_datasets,fred_qd_2025,8,20,-160,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['AAA', 'AWHMAN', 'BAA', 'BUSINVx', 'CPIAUCSL', 'CPIMEDSL', 'CUMFNS', 'DMANEMP', 'EXUSUKx', 'FEDFUNDS', 'GS1', 'GS10', 'GS5', 'HOUST', 'INDPRO', 'INVEST', 'IPBUSEQ', 'IPCONGD', 'IPDCONGD', 'IPDMAT', 'IPFINAL', 'IPMANSICS', 'IPMAT', 'IPNCONGD', 'IPNMAT', 'M2REAL', 'MANEMP', 'NDMANEMP', 'NONBORRES', 'PAYEMS', 'PERMIT', 'PPICMM', 'S&P 500', 'SRVPRD', 'TB3MS', 'TB6MS', 'TOTRESNS', 'UEMP15T26', 'UEMP27OV', 'UEMP5TO14', 'UEMPLT5', 'UEMPMEAN', 'UMCSENTx', 'UNRATE', 'USCONS', 'USFIRE', 'USGOOD', 'USGOVT', 'USTPU', 'USTRADE', 'VIXCLSx']",,[],[],[],fred_qd_2025/macro,3.5296543064,0.0,1.010644953,d257091c861020bf,False,0.7.0,3.5296543064,4.2532915346,0.1035667702,0.0847291191,1.0.0,,,1020
-TiRex,autogluon/fev_datasets,gvar,8,10,-80,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['Dp', 'ep', 'eq', 'lr', 'r', 'y']",,[],"['pmat', 'pmetal', 'poil']",[],gvar,0.576786326,0.0,1.395678759,e60f8e1e38f9acca,False,0.7.0,0.576786326,0.7074487020000001,0.0185361033,0.0150792847,1.0.0,,,1980
-TiRex,autogluon/fev_datasets,hermes,52,1,-52,52,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['external'],[],"['category', 'country']",hermes,0.6510189412,0.0,10.995476637,f87501b2bd02803b,False,0.7.0,0.6510189412,0.8309937727000001,0.0030851755,0.0024187939,1.0.0,,,10000
-TiRex,autogluon/fev_datasets,hierarchical_sales_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hierarchical_sales_1D,0.5472671449000001,0.0,1.003094499,0ecbb4076fd5ba78,False,0.7.0,0.5472671449000001,0.6853563806,0.6893573284000001,0.5556084899,1.0.0,,,1180
-TiRex,autogluon/fev_datasets,hierarchical_sales_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hierarchical_sales_1W,0.6208684057,0.0,0.992709459,691bd281f0ad7adc,False,0.7.0,0.6208684057,0.756678049,0.4324219674,0.3675267983,1.0.0,,,1180
-TiRex,autogluon/fev_datasets,hospital,12,4,-48,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital,0.6884080716000001,0.0,1.947504547,9c6e8721c2eca10b,False,0.7.0,0.6884080716000001,0.8749408193,0.0908275228,0.0726720337,1.0.0,,,3068
-TiRex,autogluon/fev_datasets,hospital_admissions_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital_admissions_1D,0.5551415729,0.0,0.772153372,51b7fbd3926341eb,False,0.7.0,0.5551415729,0.717979448,0.532626473,0.4117757474,1.0.0,,,160
-TiRex,autogluon/fev_datasets,hospital_admissions_1W,13,16,-208,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital_admissions_1W,0.5850609146,0.0,0.6826248500000001,bff3ae304070efd9,False,0.7.0,0.5850609146,0.7609831368000001,0.2142321087,0.1647817222,1.0.0,,,128
-TiRex,autogluon/fev_datasets,jena_weather_10T,144,20,-2880,144,1,,144,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_10T,0.3893025483,0.0,2.4417597410000003,311a660faf591409,False,0.7.0,0.3893025483,0.4789954609,0.2777656166,0.2661828374,1.0.0,,,420
-TiRex,autogluon/fev_datasets,jena_weather_1D,28,11,-308,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_1D,1.0716473753,0.0,0.51018699,81a9d748210aa612,False,0.7.0,1.0716473753,1.366539178,0.2731164291,0.2210204491,1.0.0,,,231
-TiRex,autogluon/fev_datasets,jena_weather_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_1H,0.3556668986,0.0,0.740258543,8eb1d310607e8fee,False,0.7.0,0.3556668986,0.437909858,0.2506694068,0.2168159034,1.0.0,,,420
-TiRex,autogluon/fev_datasets,kdd_cup_2022_10T,288,10,-2880,288,1,,144,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_10T,0.4433662459,0.0,7.285033058,e200b7c6bc525a8d,True,0.7.0,0.4433662459,0.5438422633000001,1.5734694541,1.2789649944,1.0.0,,,1340
-TiRex,autogluon/fev_datasets,kdd_cup_2022_1D,14,10,-140,14,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_1D,0.6974981294,0.0,1.074210639,67f17ff257220281,False,0.7.0,0.6974981294,0.8990205149,0.722069484,0.556621323,1.0.0,,,1340
-TiRex,autogluon/fev_datasets,kdd_cup_2022_30T,96,10,-960,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_30T,0.4319676071,0.0,2.659500603,257e85b44bdb8154,False,0.7.0,0.4319676071,0.5339588215000001,1.5899849832,1.3401124353,1.0.0,,,1340
-TiRex,autogluon/fev_datasets,m5_1D,28,1,-28,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1D,0.7143626546,0.0,17.393967477,0d8bfe3780a2c494,False,0.7.0,0.7143626546,0.8753446971000001,0.7024515271,0.5522750547,1.0.0,,,30490
-TiRex,autogluon/fev_datasets,m5_1M,12,1,-12,12,6,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1M,0.9740068956,0.0,16.203905866,78d200c01b7350ff,False,0.7.0,0.9740068956,1.1629101784,0.4305847585,0.3446529974,1.0.0,,,29364
-TiRex,autogluon/fev_datasets,m5_1W,13,1,-13,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1W,0.9025800625,0.0,16.986704969,60d0a43fd09b5dcc,False,0.7.0,0.9025800625,1.1476955468,0.4280506968,0.3359465585,1.0.0,,,30490
-TiRex,autogluon/fev_datasets,proenfo_gfc12,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc12,0.9081089751,0.0,1.559683873,e39dc59e1a6af0e2,False,0.7.0,0.9081089751,1.1241553096,0.0953878213,0.0771150803,1.0.0,,,110
-TiRex,autogluon/fev_datasets,proenfo_gfc14,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc14,0.7205809869,0.0,2.651049489,90428df2dbce525e,False,0.7.0,0.7205809869,0.9119046182,0.0447395099,0.0353901819,1.0.0,,,20
-TiRex,autogluon/fev_datasets,proenfo_gfc17,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc17,0.8894497071,0.0,2.882867384,f8bf8da06e500162,False,0.7.0,0.8894497071,1.1380901313,0.0764463827,0.0597007945,1.0.0,,,160
-TiRex,autogluon/fev_datasets,redset_15T,96,10,-960,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_15T,0.8326109518,0.0,2.509395931,391e616eee276356,False,0.7.0,0.8326109518,1.0022286368,0.2957181528,0.2431114555,1.0.0,,,1260
-TiRex,autogluon/fev_datasets,redset_1H,24,10,-240,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_1H,1.3365796216,0.0,1.1053905,a7542f5bcc8cf4ab,False,0.7.0,1.3365796216,1.4573336789,0.2140746087,0.1792595698,1.0.0,,,1380
-TiRex,autogluon/fev_datasets,redset_5T,288,10,-2880,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_5T,0.7872933801,0.0,6.513939162,4776bd88b54d8a04,False,0.7.0,0.7872933801,0.9453718328,0.3807104856,0.3109114114,1.0.0,,,1180
-TiRex,autogluon/fev_datasets,restaurant,28,8,-224,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],"['air_area_name', 'air_genre_name', 'latitude', 'longitude']",restaurant,0.6816216488,0.0,3.876236678,3863ed9dabc164dc,False,0.7.0,0.6816216488,0.8522179843000001,0.3583980985,0.282683528,1.0.0,,,6502
-TiRex,autogluon/fev_datasets,rohlik_orders_1D,61,5,2023-05-01T00:00:00,61,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,orders,,"['holiday', 'school_holidays', 'shops_closed', 'winter_school_holidays']","['blackout', 'frankfurt_shutdown', 'mini_shutdown', 'mov_change', 'precipitation', 'shutdown', 'snow', 'user_activity_1', 'user_activity_2']",[],rohlik_orders_1D,0.9857545101,0.0,0.49893511,8334ba19a7f5e7a1,False,0.7.0,0.9857545101,1.2033753235,0.0571725398,0.046778087,1.0.0,,,35
-TiRex,autogluon/fev_datasets,rohlik_orders_1W,8,5,2023-05-01T00:00:00,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,orders,,"['holiday', 'school_holidays', 'shops_closed', 'winter_school_holidays']","['blackout', 'frankfurt_shutdown', 'mini_shutdown', 'mov_change', 'precipitation', 'shutdown', 'snow', 'user_activity_1', 'user_activity_2']",[],rohlik_orders_1W,1.3004244287,0.0,0.395654266,63260348a6b49874,False,0.7.0,1.3004244287,1.5828643626,0.0520526886,0.0425926735,1.0.0,,,35
-TiRex,autogluon/fev_datasets,rohlik_sales_1D,14,1,2023-12-15T00:00:00,14,14,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'school_holidays', 'sell_price_main', 'shops_closed', 'total_orders', 'type_0_discount', 'type_1_discount', 'type_2_discount', 'type_3_discount', 'type_4_discount', 'type_5_discount', 'type_6_discount', 'winter_school_holidays']",['availability'],"['L1_category_name_en', 'L2_category_name_en', 'L3_category_name_en', 'L4_category_name_en', 'name', 'product_unique_id', 'warehouse']",rohlik_sales_1D,1.1480800218,0.0,2.550835136,22fd3891c3b685ce,False,0.7.0,1.1480800218,1.3844809879,0.3783946335,0.3154378947,1.0.0,,,4116
-TiRex,autogluon/fev_datasets,rohlik_sales_1W,8,1,2023-12-15T00:00:00,8,8,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'school_holidays', 'sell_price_main', 'shops_closed', 'total_orders', 'type_0_discount', 'type_1_discount', 'type_2_discount', 'type_3_discount', 'type_4_discount', 'type_5_discount', 'type_6_discount', 'winter_school_holidays']",['availability'],"['L1_category_name_en', 'L2_category_name_en', 'L3_category_name_en', 'L4_category_name_en', 'name', 'product_unique_id', 'warehouse']",rohlik_sales_1W,1.4251751964,0.0,2.411057716,516398d9cb76a18f,False,0.7.0,1.4251751964,1.7354311654,0.2736291289,0.2252347071,1.0.0,,,3942
-TiRex,autogluon/fev_datasets,rossmann_1D,48,10,-480,48,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Sales,,"['DayOfWeek', 'Open', 'Promo', 'SchoolHoliday', 'StateHoliday']",['Customers'],"['Assortment', 'CompetitionDistance', 'CompetitionOpenSinceMonth', 'CompetitionOpenSinceYear', 'Promo2', 'Promo2SinceWeek', 'Promo2SinceYear', 'PromoInterval', 'Store', 'StoreType']",rossmann_1D,0.539134486,0.0,12.404235374,7c1cf165ce5e0f8b,False,0.7.0,0.539134486,0.6600669122,0.2251284003,0.1837160416,1.0.0,,,11150
-TiRex,autogluon/fev_datasets,rossmann_1W,13,8,-104,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Sales,,"['Open', 'Promo', 'SchoolHoliday', 'StateHoliday']",['Customers'],"['Assortment', 'CompetitionDistance', 'CompetitionOpenSinceMonth', 'CompetitionOpenSinceYear', 'Promo2', 'Promo2SinceWeek', 'Promo2SinceYear', 'PromoInterval', 'Store', 'StoreType']",rossmann_1W,0.4815594255,0.0,5.181880747,cf54ffb87953c85f,False,0.7.0,0.4815594255,0.6218198341,0.1696977001,0.1304017962,1.0.0,,,8920
-TiRex,autogluon/fev_datasets,solar_1D,28,10,-280,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],solar_1D,0.6141032699,0.0,1.085512377,4a9fb28f2a62f798,False,0.7.0,0.6141032699,0.7780027014,0.2452487931,0.1929553199,1.0.0,,,1370
-TiRex,autogluon/fev_datasets,solar_1W,13,1,-13,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],solar_1W,1.1207884648,0.0,0.348422336,856de5fa702db186,False,0.7.0,1.1207884648,1.5031298228,0.2531014979,0.1885658631,1.0.0,,,137
-TiRex,autogluon/fev_datasets,solar_with_weather_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['day_length', 'humidity', 'pressure', 'rain_1h', 'snow_1h', 'temp', 'wind_speed']","['clouds_all', 'global_horizontal_irradiance']",[],solar_with_weather_15T,0.8456990474,0.0,1.5090596120000002,61e547dc95d83f5d,False,0.7.0,0.8456990474,1.0486903807,1.4235610306,1.2067686983,1.0.0,,,20
-TiRex,autogluon/fev_datasets,solar_with_weather_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['day_length', 'humidity', 'pressure', 'rain_1h', 'snow_1h', 'temp', 'wind_speed']","['clouds_all', 'global_horizontal_irradiance']",[],solar_with_weather_1H,0.9000403927,0.0,0.706085474,a5ce88d03879a959,False,0.7.0,0.9000403927,1.1582715132,1.5260583486,1.2498913502,1.0.0,,,20
-TiRex,autogluon/fev_datasets,uci_air_quality_1D,28,11,-308,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['C6H6(GT)', 'CO(GT)', 'NO2(GT)', 'NOx(GT)']",,"['AH', 'RH', 'T']",[],[],uci_air_quality_1D,1.1279764862,0.0,0.505930308,1acb95a018b86a63,False,0.7.0,1.1279764862,1.4312317693,0.2942162712,0.2321704936,1.0.0,,,44
-TiRex,autogluon/fev_datasets,uci_air_quality_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['C6H6(GT)', 'CO(GT)', 'NO2(GT)', 'NOx(GT)']",,"['AH', 'RH', 'T']",[],[],uci_air_quality_1H,0.8650050244,0.0,2.779986801,187086c23269b305,False,0.7.0,0.8650050244,1.1061991604,0.3697669104,0.2890236922,1.0.0,,,80
-TiRex,autogluon/fev_datasets,uk_covid_nation_1D,28,20,-560,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['cumulative_admissions', 'cumulative_cases', 'cumulative_deaths']",,[],"['cumulative_vaccinated_1', 'cumulative_vaccinated_2', 'cumulative_vaccinated_3', 'hospital_cases', 'icu_ventilator_occupancy']",[],uk_covid_nation_1D/cumulative,7.6534868379,0.0,0.759064466,cb76ab66e8a2acda,False,0.7.0,7.6534868379,8.929376688,0.0159650212,0.0138342964,1.0.0,,,240
-TiRex,autogluon/fev_datasets,uk_covid_nation_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['new_admissions', 'new_cases', 'new_deaths']",,[],"['hospital_cases', 'icu_ventilator_occupancy', 'new_vaccinated_1', 'new_vaccinated_2', 'new_vaccinated_3']",[],uk_covid_nation_1D/new,1.9920440399,0.0,0.762991329,cb76ab66e8a2acda,False,0.7.0,1.9920440399,2.3835910907,0.3817302555,0.3109536889,1.0.0,,,240
-TiRex,autogluon/fev_datasets,uk_covid_nation_1W,8,4,-32,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['cumulative_admissions', 'cumulative_cases', 'cumulative_deaths']",,[],"['cumulative_vaccinated_1', 'cumulative_vaccinated_2', 'cumulative_vaccinated_3', 'hospital_cases', 'icu_ventilator_occupancy']",[],uk_covid_nation_1W/cumulative,3.1923854702,0.0,0.36686456,0398b1ae44b0e1ae,False,0.7.0,3.1923854702,3.609263087,0.0336664002,0.0306531397,1.0.0,,,48
-TiRex,autogluon/fev_datasets,uk_covid_nation_1W,8,4,-32,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['new_admissions', 'new_cases', 'new_deaths']",,[],"['hospital_cases', 'icu_ventilator_occupancy', 'new_vaccinated_1', 'new_vaccinated_2', 'new_vaccinated_3']",[],uk_covid_nation_1W/new,4.5324987152,0.0,0.367138503,0398b1ae44b0e1ae,False,0.7.0,4.5324987152,5.4013881506,0.6047020033,0.5056475261,1.0.0,,,48
-TiRex,autogluon/fev_datasets,uk_covid_utla_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,new_cases,,[],[],[],uk_covid_utla_1D/new,3.7286792775,0.0,1.504742794,a8353cbb69d9d419,False,0.7.0,3.7286792775,4.4705040881,0.4611622334,0.3797951228,1.0.0,,,2140
-TiRex,autogluon/fev_datasets,uk_covid_utla_1W,13,5,-65,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,cumulative_cases,,[],[],[],uk_covid_utla_1W/cumulative,19.434962205,0.0,0.8784171380000001,e882978eeee0c5e3,False,0.7.0,19.434962205,21.7652806241,0.2228221811,0.2003527874,1.0.0,,,1070
-TiRex,autogluon/fev_datasets,us_consumption_1M,12,10,-120,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1M,1.4670456897,0.0,0.5674320620000001,6f0b0899ba9d50bb,False,0.7.0,1.4670456897,1.7646639097,0.0229767126,0.0197402218,1.0.0,,,310
-TiRex,autogluon/fev_datasets,us_consumption_1Q,8,10,-80,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1Q,1.8028657315,0.0,0.564845272,34ddaf654b836be3,False,0.7.0,1.8028657315,2.2808950609,0.0341675981,0.0279758108,1.0.0,,,310
-TiRex,autogluon/fev_datasets,us_consumption_1Y,5,10,-50,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1Y,3.6344846883,0.0,0.564914715,69d8accb103bbb77,False,0.7.0,3.6344846883,4.5542723191,0.0570256105,0.0438966964,1.0.0,,,310
-TiRex,autogluon/fev_datasets,walmart,39,1,-39,39,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['CPI', 'Fuel_Price', 'IsHoliday', 'MarkDown1', 'MarkDown2', 'MarkDown3', 'MarkDown4', 'MarkDown5', 'Temperature', 'Unemployment']",[],"['Dept', 'Size', 'Store', 'Type']",walmart,0.7074857338,0.0,3.408170628,f84328c62c91aaf5,False,0.7.0,0.7074857338,0.8862297442,0.1053567082,0.0849769317,1.0.0,,,2936
-TiRex,autogluon/fev_datasets,world_co2_emissions,5,9,-45,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_co2_emissions,2.6434689128,0.0,1.253928653,66fdc0a9c269539c,False,0.7.0,2.6434689128,3.218938845,0.0871799563,0.0707450544,1.0.0,,,1719
-TiRex,autogluon/fev_datasets,world_life_expectancy,5,10,-50,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_life_expectancy,1.1086152308,0.0,1.595249869,63f326fa372ad29a,False,0.7.0,1.1086152308,1.3385484305,0.0107911893,0.0089847076,1.0.0,,,2370
-TiRex,autogluon/fev_datasets,world_tourism,5,2,-10,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_tourism,3.0521218421,0.0,0.474383953,f03e22f4082953f7,False,0.7.0,3.0521218421,3.8100716189,0.1137896851,0.0849997606,1.0.0,,,356
-Toto-1.0,autogluon/fev_datasets,ETT_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_15T,0.5930359987,0.0,146.559065672,9f6541408f56392f,False,0.7.0,0.5930359987,0.7577736165000001,0.121559811,0.0951691601,0.1.3,,,280
-Toto-1.0,autogluon/fev_datasets,ETT_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1D,1.1431991194,0.0,24.979966263,ff06ef09d043bd73,False,0.7.0,1.1431991194,1.3679488602,0.3407840222,0.2741924035,0.1.3,,,280
-Toto-1.0,autogluon/fev_datasets,ETT_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1H,0.8726715063,0.0,164.092419206,1051fcbf7ab489b5,False,0.7.0,0.8726715063,1.1128977698,0.2432126313,0.189981304,0.1.3,,,280
-Toto-1.0,autogluon/fev_datasets,ETT_1W,13,5,-65,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['HUFL', 'HULL', 'LUFL', 'LULL', 'MUFL', 'MULL', 'OT']",,[],[],[],ETT_1W,2.2807752001,0.0,5.07888292,f7babcd132f54bf3,False,0.7.0,2.2807752001,2.6388480518,0.4972649187,0.3901701003,0.1.3,,,70
-Toto-1.0,autogluon/fev_datasets,LOOP_SEATTLE_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_1D,0.8309489631,0.0,161.949701605,02d7b9f04d1c3187,False,0.7.0,0.8309489631,1.0267654131,0.0387991458,0.0313094796,0.1.3,,,3230
-Toto-1.0,autogluon/fev_datasets,LOOP_SEATTLE_1H,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_1H,0.6981449455000001,0.0,1786.301063385,08811ee17f93df42,False,0.7.0,0.6981449455000001,0.8716561378000001,0.0749491051,0.0599067065,0.1.3,,,3230
-Toto-1.0,autogluon/fev_datasets,LOOP_SEATTLE_5T,288,10,-2880,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],LOOP_SEATTLE_5T,0.5612747662,0.0,2062.056452025,c2739a4b195beef3,False,0.7.0,0.5612747662,0.6999688034,0.075644061,0.0606719844,0.1.3,,,3230
-Toto-1.0,autogluon/fev_datasets,M_DENSE_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],M_DENSE_1D,0.8417803746,0.0,31.168621564,12417cabd3e820d7,False,0.7.0,0.8417803746,1.0278691722,0.1092759416,0.0906527349,0.1.3,,,300
-Toto-1.0,autogluon/fev_datasets,M_DENSE_1H,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],M_DENSE_1H,0.6211696495,0.0,178.430779824,e973593b94c21fa6,False,0.7.0,0.6211696495,0.7547859889,0.1535322428,0.1267713853,0.1.3,,,300
-Toto-1.0,autogluon/fev_datasets,SZ_TAXI_15T,96,10,-960,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],SZ_TAXI_15T,0.4014560725,0.0,515.508241996,3e6f0d3380ac07cc,False,0.7.0,0.4014560725,0.5100538324,0.2440994486,0.1918294193,0.1.3,,,1560
-Toto-1.0,autogluon/fev_datasets,SZ_TAXI_1H,168,2,-336,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],SZ_TAXI_1H,0.4183039495,0.0,47.641705764,7c28d9c08a8a99d2,False,0.7.0,0.4183039495,0.4938355877,0.1653927863,0.1399772683,0.1.3,,,312
-Toto-1.0,autogluon/fev_datasets,australian_tourism,8,2,-16,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],australian_tourism,0.8897084606000001,0.0,7.656393248,e3e704ef830bb1f4,False,0.7.0,0.8897084606000001,1.1349816052,0.1337763593,0.1044141415,0.1.3,,,178
-Toto-1.0,autogluon/fev_datasets,bizitobs_l2c_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_2', 'target_3', 'target_4', 'target_5', 'target_6']",,[],[],[],bizitobs_l2c_1H,0.3700783044,0.0,45.422302023,fd3fb3349ee15a22,False,0.7.0,0.3700783044,0.4671656853,0.5299379429000001,0.4180692521,0.1.3,,,140
-Toto-1.0,autogluon/fev_datasets,bizitobs_l2c_5T,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_2', 'target_3', 'target_4', 'target_5', 'target_6']",,[],[],[],bizitobs_l2c_5T,0.5953979102,0.0,128.320778127,9cb515b57514a9ab,False,0.7.0,0.5953979102,0.7135649119,1.2221172807,1.0846777557,0.1.3,,,140
-Toto-1.0,autogluon/fev_datasets,boomlet_1062,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1062,0.5478320341,0.0,269.714769528,44381d6f431f8c90,False,0.7.0,0.5478320341,0.669096311,0.5677611841,0.4560339911,0.1.3,,,420
-Toto-1.0,autogluon/fev_datasets,boomlet_1209,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1209,0.645080569,0.0,598.719859316,1466ee197c499055,False,0.7.0,0.645080569,0.7440166652,0.2916179846,0.2511164388,0.1.3,,,1060
-Toto-1.0,autogluon/fev_datasets,boomlet_1225,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1225,0.1833820954,0.0,433.608598707,5d9eb3c2d9389376,False,0.7.0,0.1833820954,0.2291020931,0.1206233559,0.0968533979,0.1.3,,,980
-Toto-1.0,autogluon/fev_datasets,boomlet_1230,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1230,1.1375594979,0.0,287.953929679,034f57f6576437cc,False,0.7.0,1.1375594979,1.2932815419,0.2909953139,0.2477353188,0.1.3,,,460
-Toto-1.0,autogluon/fev_datasets,boomlet_1282,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1282,0.4069384603,0.0,308.854253989,de65600e18e27fe8,False,0.7.0,0.4069384603,0.4982816626,0.3443926057,0.2786303196,0.1.3,,,700
-Toto-1.0,autogluon/fev_datasets,boomlet_1487,288,20,-5760,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1487,0.4003928432,0.0,610.266354104,17003e37fda85cdd,False,0.7.0,0.4003928432,0.4821270726,0.1894979433,0.1572610369,0.1.3,,,1080
-Toto-1.0,autogluon/fev_datasets,boomlet_1631,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1631,0.5808311118,0.0,382.048504133,f5255f15ed8188ab,False,0.7.0,0.5808311118,0.7231858750000001,0.3156198487,0.2530865122,0.1.3,,,800
-Toto-1.0,autogluon/fev_datasets,boomlet_1676,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_75', 'target_76', 'target_77', 'target_78', 'target_79', 'target_8', 'target_80', 'target_81', 'target_82', 'target_83', 'target_84', 'target_85', 'target_86', 'target_87', 'target_88', 'target_89', 'target_9', 'target_90', 'target_91', 'target_92', 'target_93', 'target_94', 'target_95', 'target_96', 'target_97', 'target_98', 'target_99']",,[],[],[],boomlet_1676,0.5544290679,0.0,968.80267804,20768bc9d5e316c5,False,0.7.0,0.5544290679,0.6906502502,0.3173684891,0.2495295993,0.1.3,,,2000
-Toto-1.0,autogluon/fev_datasets,boomlet_1855,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_1855,0.4524286557,0.0,461.475054668,ca3cf5b18a145f72,False,0.7.0,0.4524286557,0.5280890902,0.1576757028,0.1355059408,0.1.3,,,1040
-Toto-1.0,autogluon/fev_datasets,boomlet_1975,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_8', 'target_9']",,[],[],[],boomlet_1975,0.1262384828,0.0,682.699530003,3d8d0f68506b1995,False,0.7.0,0.1262384828,0.149489781,0.0860611707,0.0726927455,0.1.3,,,1500
-Toto-1.0,autogluon/fev_datasets,boomlet_2187,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_75', 'target_76', 'target_77', 'target_78', 'target_79', 'target_8', 'target_80', 'target_81', 'target_82', 'target_83', 'target_84', 'target_85', 'target_86', 'target_87', 'target_88', 'target_89', 'target_9', 'target_90', 'target_91', 'target_92', 'target_93', 'target_94', 'target_95', 'target_96', 'target_97', 'target_98', 'target_99']",,[],[],[],boomlet_2187,0.7637500168,0.0,914.915222887,c3fe1a491401b248,False,0.7.0,0.7637500168,0.881456274,0.2836815666,0.24435445,0.1.3,,,2000
-Toto-1.0,autogluon/fev_datasets,boomlet_285,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_67', 'target_68', 'target_69', 'target_7', 'target_70', 'target_71', 'target_72', 'target_73', 'target_74', 'target_8', 'target_9']",,[],[],[],boomlet_285,0.3185360094,0.0,689.862797376,3dfa571029207f1f,False,0.7.0,0.3185360094,0.3609691019,0.1596092123,0.1331450908,0.1.3,,,1500
-Toto-1.0,autogluon/fev_datasets,boomlet_619,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_619,0.309878085,0.0,462.866423823,2d514811bddfc52d,False,0.7.0,0.309878085,0.403240616,0.2789135486,0.2162579975,0.1.3,,,1040
-Toto-1.0,autogluon/fev_datasets,boomlet_772,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_28', 'target_29', 'target_3', 'target_30', 'target_31', 'target_32', 'target_33', 'target_34', 'target_35', 'target_36', 'target_37', 'target_38', 'target_39', 'target_4', 'target_40', 'target_41', 'target_42', 'target_43', 'target_44', 'target_45', 'target_46', 'target_47', 'target_48', 'target_49', 'target_5', 'target_50', 'target_51', 'target_52', 'target_53', 'target_54', 'target_55', 'target_56', 'target_57', 'target_58', 'target_59', 'target_6', 'target_60', 'target_61', 'target_62', 'target_63', 'target_64', 'target_65', 'target_66', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_772,0.2810029794,0.0,589.324631153,66ce5fbc5ad575a2,False,0.7.0,0.2810029794,0.3279337304,0.1544767227,0.1307594429,0.1.3,,,1340
-Toto-1.0,autogluon/fev_datasets,boomlet_963,60,20,-1200,60,1,,1440,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_21', 'target_22', 'target_23', 'target_24', 'target_25', 'target_26', 'target_27', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],boomlet_963,0.7199999526,0.0,246.557404445,bd1c23c0fd1a748e,False,0.7.0,0.7199999526,0.8253396814,0.3792164679,0.3152013005,0.1.3,,,560
-Toto-1.0,autogluon/fev_datasets,ecdc_ili,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ecdc_ili,2.554483793,0.0,15.763646343,0c0a84fa1b54ac63,False,0.7.0,2.554483793,3.0233475859,0.4693168223,0.3944662068,0.1.3,,,240
-Toto-1.0,autogluon/fev_datasets,entsoe_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_15T,0.5909160927,0.0,77.076302233,34c503cb4346b380,False,0.7.0,0.5909160927,0.7502653602,0.0522911714,0.0413516905,0.1.3,,,120
-Toto-1.0,autogluon/fev_datasets,entsoe_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_1H,0.4795713506,0.0,93.520897081,0cb6316a70bf9d47,False,0.7.0,0.4795713506,0.5907812391,0.0365800265,0.0302241335,0.1.3,,,120
-Toto-1.0,autogluon/fev_datasets,entsoe_30T,96,20,-1920,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['radiation_diffuse_horizontal', 'radiation_direct_horizontal', 'temperature']",[],[],entsoe_30T,0.4958133037,0.0,77.950067369,6ff7f68ac7fbd564,False,0.7.0,0.4958133037,0.6254143824,0.0378812171,0.0301774471,0.1.3,,,120
-Toto-1.0,autogluon/fev_datasets,epf_be,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Generation forecast', 'System load forecast']",[],[],epf_be,0.5648275564,0.0,20.915533226,50acce5fc8987a4f,False,0.7.0,0.5648275564,0.7065052879,0.1323491182,0.1057693667,0.1.3,,,20
-Toto-1.0,autogluon/fev_datasets,epf_de,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Ampirion Load Forecast', 'PV+Wind Forecast']",[],[],epf_de,1.1058453126,0.0,20.783449721,491dc89fd5b322b5,False,0.7.0,1.1058453126,1.3369704527,0.6772215117,0.5515425934,0.1.3,,,20
-Toto-1.0,autogluon/fev_datasets,epf_fr,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Generation forecast', 'System load forecast']",[],[],epf_fr,0.4256540696,0.0,20.681319443,bc5a57cd5727d527,False,0.7.0,0.4256540696,0.5253012985000001,0.0836794117,0.0682821872,0.1.3,,,20
-Toto-1.0,autogluon/fev_datasets,epf_np,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['Grid load forecast', 'Wind power forecast']",[],[],epf_np,1.0368665291,0.0,20.729408993,80b01220b34be222,False,0.7.0,1.0368665291,1.3589475358,0.0616097255,0.0471320493,0.1.3,,,20
-Toto-1.0,autogluon/fev_datasets,epf_pjm,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['System load forecast', 'Zonal COMED load foecast']",[],[],epf_pjm,0.4518928599,0.0,20.919066216,04be360a47b231a4,False,0.7.0,0.4518928599,0.5821871052,0.1030592872,0.0799833604,0.1.3,,,20
-Toto-1.0,autogluon/fev_datasets,ercot_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1D,0.8800154437000001,0.0,81.041731249,d1c9de98a43d4097,False,0.7.0,0.8800154437000001,1.1712118632,0.0810110342,0.0621409451,0.1.3,,,160
-Toto-1.0,autogluon/fev_datasets,ercot_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1H,1.095463785,0.0,110.59960604,95b91121d95f89c8,False,0.7.0,1.095463785,1.4168899965,0.0721937651,0.0555864688,0.1.3,,,160
-Toto-1.0,autogluon/fev_datasets,ercot_1M,12,15,-180,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1M,1.007020102,0.0,13.062878412,167e0223cbbc1b69,False,0.7.0,1.007020102,1.2709588716,0.0669821394,0.0530588211,0.1.3,,,120
-Toto-1.0,autogluon/fev_datasets,ercot_1W,13,20,-260,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],ercot_1W,1.0602182535,0.0,25.175141362,091a619858bdabc9,False,0.7.0,1.0602182535,1.3470027368,0.0654530676,0.0515355854,0.1.3,,,160
-Toto-1.0,autogluon/fev_datasets,favorita_stores_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'onpromotion']",['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1D,1.0363827033,0.0,3011.958720892,3c676e1d0f771bf4,False,0.7.0,1.0363827033,1.2803612723,0.1783829153,0.1439165317,0.1.3,,,15790
-Toto-1.0,autogluon/fev_datasets,favorita_stores_1M,12,2,-24,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,['onpromotion'],['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1M,2.0093638587,0.0,108.544327164,7c94de5b6e2859ff,False,0.7.0,2.0093638587,2.2864924589,0.1978285983,0.1391907522,0.1.3,,,3158
-Toto-1.0,autogluon/fev_datasets,favorita_stores_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,['onpromotion'],['oil_price'],"['city', 'cluster', 'family', 'state', 'store_nbr', 'type']",favorita_stores_1W,2.1277442598,0.0,701.625553882,aae27c565b10fe7f,False,0.7.0,2.1277442598,2.5080339706,0.1511486098,0.1223103152,0.1.3,,,15790
-Toto-1.0,autogluon/fev_datasets,favorita_transactions_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,['holiday'],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1D,1.1139462706,0.0,101.682283444,af6c7be9c6bf8910,True,0.7.0,1.1139462706,1.430749945,0.0947262709,0.0770406002,0.1.3,,,510
-Toto-1.0,autogluon/fev_datasets,favorita_transactions_1M,12,2,-24,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,[],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1M,1.3968989653,0.0,6.061210575,a9ebe0fd05a285b6,False,0.7.0,1.3968989653,1.6656037195,0.0891149079,0.0770716759,0.1.3,,,102
-Toto-1.0,autogluon/fev_datasets,favorita_transactions_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,transactions,,[],['oil_price'],"['city', 'cluster', 'state', 'store_nbr', 'type']",favorita_transactions_1W,1.5565627963000002,0.0,30.752386089,dcf0217a3f159ec8,False,0.7.0,1.5565627963000002,1.9303724027,0.0686957029,0.0575771001,0.1.3,,,510
-Toto-1.0,autogluon/fev_datasets,fred_md_2025,12,20,-240,12,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['CPIAUCSL', 'FEDFUNDS', 'PAYEMS']",,[],"['M2REAL', 'NONBORRES', 'PPICMM', 'TOTRESNS']",[],fred_md_2025/cee,3.374988685,0.0,17.733474393,764e9294023ee081,True,0.7.0,3.374988685,3.9146034155,0.0717385187,0.0603929339,0.1.3,,,60
-Toto-1.0,autogluon/fev_datasets,fred_md_2025,12,20,-240,12,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['AAA', 'AWHMAN', 'BAA', 'BUSINVx', 'CPIAUCSL', 'CPIMEDSL', 'CUMFNS', 'DMANEMP', 'EXUSUKx', 'FEDFUNDS', 'GS1', 'GS10', 'GS5', 'HOUST', 'INDPRO', 'INVEST', 'IPBUSEQ', 'IPCONGD', 'IPDCONGD', 'IPDMAT', 'IPFINAL', 'IPMANSICS', 'IPMAT', 'IPNCONGD', 'IPNMAT', 'M2REAL', 'MANEMP', 'NDMANEMP', 'NONBORRES', 'PAYEMS', 'PERMIT', 'PPICMM', 'S&P 500', 'SRVPRD', 'TB3MS', 'TB6MS', 'TOTRESNS', 'UEMP15T26', 'UEMP27OV', 'UEMP5TO14', 'UEMPLT5', 'UEMPMEAN', 'UMCSENTx', 'UNRATE', 'USCONS', 'USFIRE', 'USGOOD', 'USGOVT', 'USTPU', 'USTRADE', 'VIXCLSx']",,[],[],[],fred_md_2025/macro,5.051854648,0.0,86.884967886,764e9294023ee081,True,0.7.0,5.051854648,5.9470834222,0.0761600307,0.0623272651,0.1.3,,,1020
-Toto-1.0,autogluon/fev_datasets,fred_qd_2025,8,20,-160,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['CPIAUCSL', 'FEDFUNDS', 'PAYEMS']",,[],"['M2REAL', 'NONBORRES', 'PPICMM', 'TOTRESNS']",[],fred_qd_2025/cee,1.7726716319,0.0,16.206212414,d257091c861020bf,False,0.7.0,1.7726716319,2.1472810882,0.1320567852,0.1111966207,0.1.3,,,60
-Toto-1.0,autogluon/fev_datasets,fred_qd_2025,8,20,-160,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['AAA', 'AWHMAN', 'BAA', 'BUSINVx', 'CPIAUCSL', 'CPIMEDSL', 'CUMFNS', 'DMANEMP', 'EXUSUKx', 'FEDFUNDS', 'GS1', 'GS10', 'GS5', 'HOUST', 'INDPRO', 'INVEST', 'IPBUSEQ', 'IPCONGD', 'IPDCONGD', 'IPDMAT', 'IPFINAL', 'IPMANSICS', 'IPMAT', 'IPNCONGD', 'IPNMAT', 'M2REAL', 'MANEMP', 'NDMANEMP', 'NONBORRES', 'PAYEMS', 'PERMIT', 'PPICMM', 'S&P 500', 'SRVPRD', 'TB3MS', 'TB6MS', 'TOTRESNS', 'UEMP15T26', 'UEMP27OV', 'UEMP5TO14', 'UEMPLT5', 'UEMPMEAN', 'UMCSENTx', 'UNRATE', 'USCONS', 'USFIRE', 'USGOOD', 'USGOVT', 'USTPU', 'USTRADE', 'VIXCLSx']",,[],[],[],fred_qd_2025/macro,3.4020827998,0.0,35.546488538,d257091c861020bf,False,0.7.0,3.4020827998,4.0310227379,0.1019809656,0.0836177008,0.1.3,,,1020
-Toto-1.0,autogluon/fev_datasets,gvar,8,10,-80,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['Dp', 'ep', 'eq', 'lr', 'r', 'y']",,[],"['pmat', 'pmetal', 'poil']",[],gvar,0.5758663156,0.0,87.832761483,e60f8e1e38f9acca,False,0.7.0,0.5758663156,0.7017595921,0.0183949311,0.0149166365,0.1.3,,,1980
-Toto-1.0,autogluon/fev_datasets,hermes,52,1,-52,52,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['external'],[],"['category', 'country']",hermes,0.9852562723,0.0,491.723927217,f87501b2bd02803b,False,0.7.0,0.9852562723,1.2023433786,0.0043706582,0.0036102677,0.1.3,,,10000
-Toto-1.0,autogluon/fev_datasets,hierarchical_sales_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hierarchical_sales_1D,0.5468045976,0.0,245.630729867,0ecbb4076fd5ba78,False,0.7.0,0.5468045976,0.6820968126,0.6904558182,0.5599444088000001,0.1.3,,,1180
-Toto-1.0,autogluon/fev_datasets,hierarchical_sales_1W,13,10,-130,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hierarchical_sales_1W,0.6372998817000001,0.0,57.508599053,691bd281f0ad7adc,False,0.7.0,0.6372998817000001,0.7789897858,0.4364300489,0.3702396077,0.1.3,,,1180
-Toto-1.0,autogluon/fev_datasets,hospital,12,4,-48,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital,0.7333522854000001,0.0,106.514238577,9c6e8721c2eca10b,False,0.7.0,0.7333522854000001,0.9208820395,0.0951568279,0.0782312026,0.1.3,,,3068
-Toto-1.0,autogluon/fev_datasets,hospital_admissions_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital_admissions_1D,0.555491233,0.0,35.034611568,51b7fbd3926341eb,False,0.7.0,0.555491233,0.7172821424,0.5320996389,0.4120033633,0.1.3,,,160
-Toto-1.0,autogluon/fev_datasets,hospital_admissions_1W,13,16,-208,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],hospital_admissions_1W,0.597604554,0.0,14.187508191,bff3ae304070efd9,False,0.7.0,0.597604554,0.7781410151,0.2188375845,0.1680866908,0.1.3,,,128
-Toto-1.0,autogluon/fev_datasets,jena_weather_10T,144,20,-2880,144,1,,144,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_10T,0.3684159974,0.0,227.785087132,311a660faf591409,False,0.7.0,0.3684159974,0.4522280598,0.2483462442,0.2353999499,0.1.3,,,420
-Toto-1.0,autogluon/fev_datasets,jena_weather_1D,28,11,-308,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_1D,1.1121551269,0.0,12.905111127,81a9d748210aa612,False,0.7.0,1.1121551269,1.411132821,0.2763100538,0.2246469289,0.1.3,,,231
-Toto-1.0,autogluon/fev_datasets,jena_weather_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['target_0', 'target_1', 'target_10', 'target_11', 'target_12', 'target_13', 'target_14', 'target_15', 'target_16', 'target_17', 'target_18', 'target_19', 'target_2', 'target_20', 'target_3', 'target_4', 'target_5', 'target_6', 'target_7', 'target_8', 'target_9']",,[],[],[],jena_weather_1H,0.3616362418,0.0,190.013383081,8eb1d310607e8fee,False,0.7.0,0.3616362418,0.4476285627,0.2467585944,0.2068719624,0.1.3,,,420
-Toto-1.0,autogluon/fev_datasets,kdd_cup_2022_10T,288,10,-2880,288,1,,144,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_10T,0.4031542373,0.0,874.146822139,e200b7c6bc525a8d,True,0.7.0,0.4031542373,0.4880648526,1.1945028663,1.0652990736,0.1.3,,,1340
-Toto-1.0,autogluon/fev_datasets,kdd_cup_2022_1D,14,10,-140,14,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_1D,0.7036948238,0.0,63.697545107,67f17ff257220281,False,0.7.0,0.7036948238,0.8967645421,0.709543103,0.5570149360000001,0.1.3,,,1340
-Toto-1.0,autogluon/fev_datasets,kdd_cup_2022_30T,96,10,-960,96,1,,48,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Patv,,[],"['Etmp', 'Itmp', 'Ndir', 'Pab1', 'Pab2', 'Pab3', 'Prtv', 'Wdir', 'Wspd']",[],kdd_cup_2022_30T,0.4288668087,0.0,685.874228206,257e85b44bdb8154,False,0.7.0,0.4288668087,0.5309168604,1.6237983048,1.3756596821,0.1.3,,,1340
-Toto-1.0,autogluon/fev_datasets,m5_1D,28,1,-28,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1D,0.7075512235,0.0,7037.441518083,0d8bfe3780a2c494,True,0.7.0,0.7075512235,0.8682978035000001,0.6985757947,0.5495026666,0.1.3,,,30490
-Toto-1.0,autogluon/fev_datasets,m5_1M,12,1,-12,12,6,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1M,1.0439813048,0.0,951.775820785,78d200c01b7350ff,False,0.7.0,1.0439813048,1.2421800194,0.459651649,0.3648378977,0.1.3,,,29364
-Toto-1.0,autogluon/fev_datasets,m5_1W,13,1,-13,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['event_Cultural', 'event_National', 'event_Religious', 'event_Sporting', 'sell_price', 'snap_CA', 'snap_TX', 'snap_WI']",[],"['cat_id', 'dept_id', 'item_id', 'state_id', 'store_id']",m5_1W,0.904968291,0.0,1656.967411432,60d0a43fd09b5dcc,False,0.7.0,0.904968291,1.1448252405,0.4278151095,0.3368808055,0.1.3,,,30490
-Toto-1.0,autogluon/fev_datasets,proenfo_gfc12,168,10,-1680,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc12,0.9343672202,0.0,69.892890966,e39dc59e1a6af0e2,True,0.7.0,0.9343672202,1.1370938293,0.0971559245,0.0794889274,0.1.3,,,110
-Toto-1.0,autogluon/fev_datasets,proenfo_gfc14,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc14,0.734572648,0.0,50.838003188,90428df2dbce525e,True,0.7.0,0.734572648,0.9215267457,0.0452061813,0.0360173803,0.1.3,,,20
-Toto-1.0,autogluon/fev_datasets,proenfo_gfc17,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,['airtemperature'],[],[],proenfo_gfc17,0.9388292832,0.0,110.234444055,f8bf8da06e500162,True,0.7.0,0.9388292832,1.1960851435,0.0798578905,0.0625664898,0.1.3,,,160
-Toto-1.0,autogluon/fev_datasets,redset_15T,96,10,-960,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_15T,0.8177766808,0.0,644.568623537,391e616eee276356,False,0.7.0,0.8177766808,0.9533624543,0.3032550395,0.2510706717,0.1.3,,,1260
-Toto-1.0,autogluon/fev_datasets,redset_1H,24,10,-240,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_1H,1.3064391449,0.0,344.986736714,a7542f5bcc8cf4ab,False,0.7.0,1.3064391449,1.4166961403,0.2279421866,0.1912104253,0.1.3,,,1380
-Toto-1.0,autogluon/fev_datasets,redset_5T,288,10,-2880,288,1,,288,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],['subset'],redset_5T,0.7192159039,0.0,759.411714565,4776bd88b54d8a04,False,0.7.0,0.7192159039,0.8563860838,0.343882215,0.2789818321,0.1.3,,,1180
-Toto-1.0,autogluon/fev_datasets,restaurant,28,8,-224,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],"['air_area_name', 'air_genre_name', 'latitude', 'longitude']",restaurant,0.7040430265000001,0.0,403.695122926,3863ed9dabc164dc,False,0.7.0,0.7040430265000001,0.8858745474,0.3731744513,0.2932229182,0.1.3,,,6502
-Toto-1.0,autogluon/fev_datasets,rohlik_orders_1D,61,5,2023-05-01T00:00:00,61,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,orders,,"['holiday', 'school_holidays', 'shops_closed', 'winter_school_holidays']","['blackout', 'frankfurt_shutdown', 'mini_shutdown', 'mov_change', 'precipitation', 'shutdown', 'snow', 'user_activity_1', 'user_activity_2']",[],rohlik_orders_1D,1.1350889685,0.0,7.609591389,8334ba19a7f5e7a1,False,0.7.0,1.1350889685,1.3775879584,0.0646083735,0.0531957347,0.1.3,,,35
-Toto-1.0,autogluon/fev_datasets,rohlik_orders_1W,8,5,2023-05-01T00:00:00,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,orders,,"['holiday', 'school_holidays', 'shops_closed', 'winter_school_holidays']","['blackout', 'frankfurt_shutdown', 'mini_shutdown', 'mov_change', 'precipitation', 'shutdown', 'snow', 'user_activity_1', 'user_activity_2']",[],rohlik_orders_1W,1.4933704304,0.0,5.165034355,63260348a6b49874,False,0.7.0,1.4933704304,1.7980310562,0.0591418616,0.0489199152,0.1.3,,,35
-Toto-1.0,autogluon/fev_datasets,rohlik_sales_1D,14,1,2023-12-15T00:00:00,14,14,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'school_holidays', 'sell_price_main', 'shops_closed', 'total_orders', 'type_0_discount', 'type_1_discount', 'type_2_discount', 'type_3_discount', 'type_4_discount', 'type_5_discount', 'type_6_discount', 'winter_school_holidays']",['availability'],"['L1_category_name_en', 'L2_category_name_en', 'L3_category_name_en', 'L4_category_name_en', 'name', 'product_unique_id', 'warehouse']",rohlik_sales_1D,1.2180556543,0.0,659.540199864,22fd3891c3b685ce,False,0.7.0,1.2180556543,1.4539084863,0.3974789381,0.3351760018,0.1.3,,,4116
-Toto-1.0,autogluon/fev_datasets,rohlik_sales_1W,8,1,2023-12-15T00:00:00,8,8,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,sales,,"['holiday', 'school_holidays', 'sell_price_main', 'shops_closed', 'total_orders', 'type_0_discount', 'type_1_discount', 'type_2_discount', 'type_3_discount', 'type_4_discount', 'type_5_discount', 'type_6_discount', 'winter_school_holidays']",['availability'],"['L1_category_name_en', 'L2_category_name_en', 'L3_category_name_en', 'L4_category_name_en', 'name', 'product_unique_id', 'warehouse']",rohlik_sales_1W,1.504562043,0.0,176.478885307,516398d9cb76a18f,False,0.7.0,1.504562043,1.8031174582,0.2812094092,0.2348251568,0.1.3,,,3942
-Toto-1.0,autogluon/fev_datasets,rossmann_1D,48,10,-480,48,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Sales,,"['DayOfWeek', 'Open', 'Promo', 'SchoolHoliday', 'StateHoliday']",['Customers'],"['Assortment', 'CompetitionDistance', 'CompetitionOpenSinceMonth', 'CompetitionOpenSinceYear', 'Promo2', 'Promo2SinceWeek', 'Promo2SinceYear', 'PromoInterval', 'Store', 'StoreType']",rossmann_1D,0.5677454284,0.0,1069.729170435,7c1cf165ce5e0f8b,False,0.7.0,0.5677454284,0.6814055866000001,0.2320613816,0.1931728074,0.1.3,,,11150
-Toto-1.0,autogluon/fev_datasets,rossmann_1W,13,8,-104,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,Sales,,"['Open', 'Promo', 'SchoolHoliday', 'StateHoliday']",['Customers'],"['Assortment', 'CompetitionDistance', 'CompetitionOpenSinceMonth', 'CompetitionOpenSinceYear', 'Promo2', 'Promo2SinceWeek', 'Promo2SinceYear', 'PromoInterval', 'Store', 'StoreType']",rossmann_1W,0.4944119667,0.0,334.659645733,cf54ffb87953c85f,False,0.7.0,0.4944119667,0.6318509753,0.1733398307,0.1345092339,0.1.3,,,8920
-Toto-1.0,autogluon/fev_datasets,solar_1D,28,10,-280,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],solar_1D,0.6223902809,0.0,69.733774149,4a9fb28f2a62f798,False,0.7.0,0.6223902809,0.7929503108,0.2500299245,0.1955625549,0.1.3,,,1370
-Toto-1.0,autogluon/fev_datasets,solar_1W,13,1,-13,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],solar_1W,1.3917193313,0.0,6.017513428,856de5fa702db186,False,0.7.0,1.3917193313,1.798309645,0.3023860455,0.2335483112,0.1.3,,,137
-Toto-1.0,autogluon/fev_datasets,solar_with_weather_15T,96,20,-1920,96,1,,96,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['day_length', 'humidity', 'pressure', 'rain_1h', 'snow_1h', 'temp', 'wind_speed']","['clouds_all', 'global_horizontal_irradiance']",[],solar_with_weather_15T,0.7839335449,0.0,35.660607714,61e547dc95d83f5d,False,0.7.0,0.7839335449,0.9403149212,1.1480220269,0.9998316485,0.1.3,,,20
-Toto-1.0,autogluon/fev_datasets,solar_with_weather_1H,24,20,-480,24,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['day_length', 'humidity', 'pressure', 'rain_1h', 'snow_1h', 'temp', 'wind_speed']","['clouds_all', 'global_horizontal_irradiance']",[],solar_with_weather_1H,0.876018842,0.0,20.720227338,a5ce88d03879a959,False,0.7.0,0.876018842,1.0585275477,1.4068397004,1.2191318813,0.1.3,,,20
-Toto-1.0,autogluon/fev_datasets,uci_air_quality_1D,28,11,-308,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['C6H6(GT)', 'CO(GT)', 'NO2(GT)', 'NOx(GT)']",,"['AH', 'RH', 'T']",[],[],uci_air_quality_1D,1.2602294231,0.0,9.783228251,1acb95a018b86a63,False,0.7.0,1.2602294231,1.5881022678,0.3233137009,0.2553475038,0.1.3,,,44
-Toto-1.0,autogluon/fev_datasets,uci_air_quality_1H,168,20,-3360,168,1,,24,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['C6H6(GT)', 'CO(GT)', 'NO2(GT)', 'NOx(GT)']",,"['AH', 'RH', 'T']",[],[],uci_air_quality_1H,0.8700071749,0.0,73.182441658,187086c23269b305,False,0.7.0,0.8700071749,1.1111893485,0.3658213586,0.2863033352,0.1.3,,,80
-Toto-1.0,autogluon/fev_datasets,uk_covid_nation_1D,28,20,-560,28,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['cumulative_admissions', 'cumulative_cases', 'cumulative_deaths']",,[],"['cumulative_vaccinated_1', 'cumulative_vaccinated_2', 'cumulative_vaccinated_3', 'hospital_cases', 'icu_ventilator_occupancy']",[],uk_covid_nation_1D/cumulative,6.1880495911,0.0,23.859243237,cb76ab66e8a2acda,False,0.7.0,6.1880495911,7.7416129012,0.0158421656,0.0125938684,0.1.3,,,240
-Toto-1.0,autogluon/fev_datasets,uk_covid_nation_1D,28,20,-560,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['new_admissions', 'new_cases', 'new_deaths']",,[],"['hospital_cases', 'icu_ventilator_occupancy', 'new_vaccinated_1', 'new_vaccinated_2', 'new_vaccinated_3']",[],uk_covid_nation_1D/new,2.0391528653,0.0,24.06041127,cb76ab66e8a2acda,False,0.7.0,2.0391528653,2.4705193977,0.3457811862,0.2838323856,0.1.3,,,240
-Toto-1.0,autogluon/fev_datasets,uk_covid_nation_1W,8,4,-32,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['cumulative_admissions', 'cumulative_cases', 'cumulative_deaths']",,[],"['cumulative_vaccinated_1', 'cumulative_vaccinated_2', 'cumulative_vaccinated_3', 'hospital_cases', 'icu_ventilator_occupancy']",[],uk_covid_nation_1W/cumulative,2.8235902828,0.0,4.42264259,0398b1ae44b0e1ae,False,0.7.0,2.8235902828,3.6488116454,0.0338043142,0.0259156466,0.1.3,,,48
-Toto-1.0,autogluon/fev_datasets,uk_covid_nation_1W,8,4,-32,8,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,"['new_admissions', 'new_cases', 'new_deaths']",,[],"['hospital_cases', 'icu_ventilator_occupancy', 'new_vaccinated_1', 'new_vaccinated_2', 'new_vaccinated_3']",[],uk_covid_nation_1W/new,5.0981213862,0.0,4.45256205,0398b1ae44b0e1ae,False,0.7.0,5.0981213862,6.3940786735,0.7679864317,0.5874941513,0.1.3,,,48
-Toto-1.0,autogluon/fev_datasets,uk_covid_utla_1D,28,10,-280,28,1,,7,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,new_cases,,[],[],[],uk_covid_utla_1D/new,4.0356930401,0.0,189.173412962,a8353cbb69d9d419,False,0.7.0,4.0356930401,4.8383241752,0.4977396607,0.4097196009,0.1.3,,,2140
-Toto-1.0,autogluon/fev_datasets,uk_covid_utla_1W,13,5,-65,13,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,cumulative_cases,,[],[],[],uk_covid_utla_1W/cumulative,16.2859178099,0.0,41.226464927,e882978eeee0c5e3,False,0.7.0,16.2859178099,18.8192829039,0.1818175469,0.1555521636,0.1.3,,,1070
-Toto-1.0,autogluon/fev_datasets,us_consumption_1M,12,10,-120,12,1,,12,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1M,1.5639307325,0.0,36.16883635,6f0b0899ba9d50bb,False,0.7.0,1.5639307325,1.8634380437,0.0234064611,0.0205041485,0.1.3,,,310
-Toto-1.0,autogluon/fev_datasets,us_consumption_1Q,8,10,-80,8,1,,4,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1Q,1.7074351120000002,0.0,20.850931677,34ddaf654b836be3,False,0.7.0,1.7074351120000002,2.1108276882,0.0322923365,0.0270793373,0.1.3,,,310
-Toto-1.0,autogluon/fev_datasets,us_consumption_1Y,5,10,-50,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],us_consumption_1Y,3.8978014747,0.0,17.233694865,69d8accb103bbb77,False,0.7.0,3.8978014747,4.7990321771,0.0712195709,0.0546159459,0.1.3,,,310
-Toto-1.0,autogluon/fev_datasets,walmart,39,1,-39,39,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,"['CPI', 'Fuel_Price', 'IsHoliday', 'MarkDown1', 'MarkDown2', 'MarkDown3', 'MarkDown4', 'MarkDown5', 'Temperature', 'Unemployment']",[],"['Dept', 'Size', 'Store', 'Type']",walmart,0.9071550498,0.0,114.504726031,f84328c62c91aaf5,False,0.7.0,0.9071550498,1.1257617414,0.1384944916,0.113539905,0.1.3,,,2936
-Toto-1.0,autogluon/fev_datasets,world_co2_emissions,5,9,-45,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_co2_emissions,2.7160328031,0.0,59.500575804,66fdc0a9c269539c,False,0.7.0,2.7160328031,3.2426033895,0.0830718834,0.0712556895,0.1.3,,,1719
-Toto-1.0,autogluon/fev_datasets,world_life_expectancy,5,10,-50,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_life_expectancy,1.6394210102,0.0,82.653073609,63f326fa372ad29a,False,0.7.0,1.6394210102,2.0742068807,0.0150144563,0.0120911181,0.1.3,,,2370
-Toto-1.0,autogluon/fev_datasets,world_tourism,5,2,-10,5,1,,1,SQL,"['MASE', {'name': 'WAPE', 'epsilon': 1.0}, {'name': 'WQL', 'epsilon': 1.0}]","[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]",id,timestamp,target,,[],[],[],world_tourism,3.2075602319,0.0,14.137221737,f03e22f4082953f7,False,0.7.0,3.2075602319,3.7867597144,0.1073285565,0.0868200211,0.1.3,,,356
diff --git a/uv.lock b/uv.lock
deleted file mode 100644
index 22d86b661d176fc5058fb9f5ca1effbf9dc10167..0000000000000000000000000000000000000000
--- a/uv.lock
+++ /dev/null
@@ -1,2125 +0,0 @@
-version = 1
-revision = 3
-requires-python = ">=3.11"
-resolution-markers = [
- "python_full_version >= '3.14' and sys_platform == 'win32'",
- "python_full_version >= '3.14' and sys_platform == 'emscripten'",
- "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'",
- "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'",
- "python_full_version < '3.12' and sys_platform == 'win32'",
- "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'",
- "python_full_version < '3.12' and sys_platform == 'emscripten'",
- "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'",
- "python_full_version < '3.12' and sys_platform != 'emscripten' and sys_platform != 'win32'",
-]
-
-[[package]]
-name = "aiobotocore"
-version = "2.26.0"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "aiohttp" },
- { name = "aioitertools" },
- { name = "botocore" },
- { name = "jmespath" },
- { name = "multidict" },
- { name = "python-dateutil" },
- { name = "wrapt" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/4d/f8/99fa90d9c25b78292899fd4946fce97b6353838b5ecc139ad8ba1436e70c/aiobotocore-2.26.0.tar.gz", hash = "sha256:50567feaf8dfe2b653570b4491f5bc8c6e7fb9622479d66442462c021db4fadc", size = 122026, upload-time = "2025-11-28T07:54:59.956Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/b7/58/3bf0b7d474607dc7fd67dd1365c4e0f392c8177eaf4054e5ddee3ebd53b5/aiobotocore-2.26.0-py3-none-any.whl", hash = "sha256:a793db51c07930513b74ea7a95bd79aaa42f545bdb0f011779646eafa216abec", size = 87333, upload-time = "2025-11-28T07:54:58.457Z" },
-]
-
-[[package]]
-name = "aiohappyeyeballs"
-version = "2.6.1"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/26/30/f84a107a9c4331c14b2b586036f40965c128aa4fee4dda5d3d51cb14ad54/aiohappyeyeballs-2.6.1.tar.gz", hash = "sha256:c3f9d0113123803ccadfdf3f0faa505bc78e6a72d1cc4806cbd719826e943558", size = 22760, upload-time = "2025-03-12T01:42:48.764Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/0f/15/5bf3b99495fb160b63f95972b81750f18f7f4e02ad051373b669d17d44f2/aiohappyeyeballs-2.6.1-py3-none-any.whl", hash = "sha256:f349ba8f4b75cb25c99c5c2d84e997e485204d2902a9597802b0371f09331fb8", size = 15265, upload-time = "2025-03-12T01:42:47.083Z" },
-]
-
-[[package]]
-name = "aiohttp"
-version = "3.13.3"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "aiohappyeyeballs" },
- { name = "aiosignal" },
- { name = "attrs" },
- { name = "frozenlist" },
- { name = "multidict" },
- { name = "propcache" },
- { name = "yarl" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/50/42/32cf8e7704ceb4481406eb87161349abb46a57fee3f008ba9cb610968646/aiohttp-3.13.3.tar.gz", hash = "sha256:a949eee43d3782f2daae4f4a2819b2cb9b0c5d3b7f7a927067cc84dafdbb9f88", size = 7844556, upload-time = "2026-01-03T17:33:05.204Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/f1/4c/a164164834f03924d9a29dc3acd9e7ee58f95857e0b467f6d04298594ebb/aiohttp-3.13.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:5b6073099fb654e0a068ae678b10feff95c5cae95bbfcbfa7af669d361a8aa6b", size = 746051, upload-time = "2026-01-03T17:29:43.287Z" },
- { url = "https://files.pythonhosted.org/packages/82/71/d5c31390d18d4f58115037c432b7e0348c60f6f53b727cad33172144a112/aiohttp-3.13.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1cb93e166e6c28716c8c6aeb5f99dfb6d5ccf482d29fe9bf9a794110e6d0ab64", size = 499234, upload-time = "2026-01-03T17:29:44.822Z" },
- { url = "https://files.pythonhosted.org/packages/0e/c9/741f8ac91e14b1d2e7100690425a5b2b919a87a5075406582991fb7de920/aiohttp-3.13.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:28e027cf2f6b641693a09f631759b4d9ce9165099d2b5d92af9bd4e197690eea", size = 494979, upload-time = "2026-01-03T17:29:46.405Z" },
- { url = "https://files.pythonhosted.org/packages/75/b5/31d4d2e802dfd59f74ed47eba48869c1c21552c586d5e81a9d0d5c2ad640/aiohttp-3.13.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3b61b7169ababd7802f9568ed96142616a9118dd2be0d1866e920e77ec8fa92a", size = 1748297, upload-time = "2026-01-03T17:29:48.083Z" },
- { url = "https://files.pythonhosted.org/packages/1a/3e/eefad0ad42959f226bb79664826883f2687d602a9ae2941a18e0484a74d3/aiohttp-3.13.3-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:80dd4c21b0f6237676449c6baaa1039abae86b91636b6c91a7f8e61c87f89540", size = 1707172, upload-time = "2026-01-03T17:29:49.648Z" },
- { url = "https://files.pythonhosted.org/packages/c5/3a/54a64299fac2891c346cdcf2aa6803f994a2e4beeaf2e5a09dcc54acc842/aiohttp-3.13.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:65d2ccb7eabee90ce0503c17716fc77226be026dcc3e65cce859a30db715025b", size = 1805405, upload-time = "2026-01-03T17:29:51.244Z" },
- { url = "https://files.pythonhosted.org/packages/6c/70/ddc1b7169cf64075e864f64595a14b147a895a868394a48f6a8031979038/aiohttp-3.13.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5b179331a481cb5529fca8b432d8d3c7001cb217513c94cd72d668d1248688a3", size = 1899449, upload-time = "2026-01-03T17:29:53.938Z" },
- { url = "https://files.pythonhosted.org/packages/a1/7e/6815aab7d3a56610891c76ef79095677b8b5be6646aaf00f69b221765021/aiohttp-3.13.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9d4c940f02f49483b18b079d1c27ab948721852b281f8b015c058100e9421dd1", size = 1748444, upload-time = "2026-01-03T17:29:55.484Z" },
- { url = "https://files.pythonhosted.org/packages/6b/f2/073b145c4100da5511f457dc0f7558e99b2987cf72600d42b559db856fbc/aiohttp-3.13.3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:f9444f105664c4ce47a2a7171a2418bce5b7bae45fb610f4e2c36045d85911d3", size = 1606038, upload-time = "2026-01-03T17:29:57.179Z" },
- { url = "https://files.pythonhosted.org/packages/0a/c1/778d011920cae03ae01424ec202c513dc69243cf2db303965615b81deeea/aiohttp-3.13.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:694976222c711d1d00ba131904beb60534f93966562f64440d0c9d41b8cdb440", size = 1724156, upload-time = "2026-01-03T17:29:58.914Z" },
- { url = "https://files.pythonhosted.org/packages/0e/cb/3419eabf4ec1e9ec6f242c32b689248365a1cf621891f6f0386632525494/aiohttp-3.13.3-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:f33ed1a2bf1997a36661874b017f5c4b760f41266341af36febaf271d179f6d7", size = 1722340, upload-time = "2026-01-03T17:30:01.962Z" },
- { url = "https://files.pythonhosted.org/packages/7a/e5/76cf77bdbc435bf233c1f114edad39ed4177ccbfab7c329482b179cff4f4/aiohttp-3.13.3-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:e636b3c5f61da31a92bf0d91da83e58fdfa96f178ba682f11d24f31944cdd28c", size = 1783041, upload-time = "2026-01-03T17:30:03.609Z" },
- { url = "https://files.pythonhosted.org/packages/9d/d4/dd1ca234c794fd29c057ce8c0566b8ef7fd6a51069de5f06fa84b9a1971c/aiohttp-3.13.3-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:5d2d94f1f5fcbe40838ac51a6ab5704a6f9ea42e72ceda48de5e6b898521da51", size = 1596024, upload-time = "2026-01-03T17:30:05.132Z" },
- { url = "https://files.pythonhosted.org/packages/55/58/4345b5f26661a6180afa686c473620c30a66afdf120ed3dd545bbc809e85/aiohttp-3.13.3-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:2be0e9ccf23e8a94f6f0650ce06042cefc6ac703d0d7ab6c7a917289f2539ad4", size = 1804590, upload-time = "2026-01-03T17:30:07.135Z" },
- { url = "https://files.pythonhosted.org/packages/7b/06/05950619af6c2df7e0a431d889ba2813c9f0129cec76f663e547a5ad56f2/aiohttp-3.13.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9af5e68ee47d6534d36791bbe9b646d2a7c7deb6fc24d7943628edfbb3581f29", size = 1740355, upload-time = "2026-01-03T17:30:09.083Z" },
- { url = "https://files.pythonhosted.org/packages/3e/80/958f16de79ba0422d7c1e284b2abd0c84bc03394fbe631d0a39ffa10e1eb/aiohttp-3.13.3-cp311-cp311-win32.whl", hash = "sha256:a2212ad43c0833a873d0fb3c63fa1bacedd4cf6af2fee62bf4b739ceec3ab239", size = 433701, upload-time = "2026-01-03T17:30:10.869Z" },
- { url = "https://files.pythonhosted.org/packages/dc/f2/27cdf04c9851712d6c1b99df6821a6623c3c9e55956d4b1e318c337b5a48/aiohttp-3.13.3-cp311-cp311-win_amd64.whl", hash = "sha256:642f752c3eb117b105acbd87e2c143de710987e09860d674e068c4c2c441034f", size = 457678, upload-time = "2026-01-03T17:30:12.719Z" },
- { url = "https://files.pythonhosted.org/packages/a0/be/4fc11f202955a69e0db803a12a062b8379c970c7c84f4882b6da17337cc1/aiohttp-3.13.3-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:b903a4dfee7d347e2d87697d0713be59e0b87925be030c9178c5faa58ea58d5c", size = 739732, upload-time = "2026-01-03T17:30:14.23Z" },
- { url = "https://files.pythonhosted.org/packages/97/2c/621d5b851f94fa0bb7430d6089b3aa970a9d9b75196bc93bb624b0db237a/aiohttp-3.13.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:a45530014d7a1e09f4a55f4f43097ba0fd155089372e105e4bff4ca76cb1b168", size = 494293, upload-time = "2026-01-03T17:30:15.96Z" },
- { url = "https://files.pythonhosted.org/packages/5d/43/4be01406b78e1be8320bb8316dc9c42dbab553d281c40364e0f862d5661c/aiohttp-3.13.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:27234ef6d85c914f9efeb77ff616dbf4ad2380be0cda40b4db086ffc7ddd1b7d", size = 493533, upload-time = "2026-01-03T17:30:17.431Z" },
- { url = "https://files.pythonhosted.org/packages/8d/a8/5a35dc56a06a2c90d4742cbf35294396907027f80eea696637945a106f25/aiohttp-3.13.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d32764c6c9aafb7fb55366a224756387cd50bfa720f32b88e0e6fa45b27dcf29", size = 1737839, upload-time = "2026-01-03T17:30:19.422Z" },
- { url = "https://files.pythonhosted.org/packages/bf/62/4b9eeb331da56530bf2e198a297e5303e1c1ebdceeb00fe9b568a65c5a0c/aiohttp-3.13.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:b1a6102b4d3ebc07dad44fbf07b45bb600300f15b552ddf1851b5390202ea2e3", size = 1703932, upload-time = "2026-01-03T17:30:21.756Z" },
- { url = "https://files.pythonhosted.org/packages/7c/f6/af16887b5d419e6a367095994c0b1332d154f647e7dc2bd50e61876e8e3d/aiohttp-3.13.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c014c7ea7fb775dd015b2d3137378b7be0249a448a1612268b5a90c2d81de04d", size = 1771906, upload-time = "2026-01-03T17:30:23.932Z" },
- { url = "https://files.pythonhosted.org/packages/ce/83/397c634b1bcc24292fa1e0c7822800f9f6569e32934bdeef09dae7992dfb/aiohttp-3.13.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:2b8d8ddba8f95ba17582226f80e2de99c7a7948e66490ef8d947e272a93e9463", size = 1871020, upload-time = "2026-01-03T17:30:26Z" },
- { url = "https://files.pythonhosted.org/packages/86/f6/a62cbbf13f0ac80a70f71b1672feba90fdb21fd7abd8dbf25c0105fb6fa3/aiohttp-3.13.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9ae8dd55c8e6c4257eae3a20fd2c8f41edaea5992ed67156642493b8daf3cecc", size = 1755181, upload-time = "2026-01-03T17:30:27.554Z" },
- { url = "https://files.pythonhosted.org/packages/0a/87/20a35ad487efdd3fba93d5843efdfaa62d2f1479eaafa7453398a44faf13/aiohttp-3.13.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:01ad2529d4b5035578f5081606a465f3b814c542882804e2e8cda61adf5c71bf", size = 1561794, upload-time = "2026-01-03T17:30:29.254Z" },
- { url = "https://files.pythonhosted.org/packages/de/95/8fd69a66682012f6716e1bc09ef8a1a2a91922c5725cb904689f112309c4/aiohttp-3.13.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:bb4f7475e359992b580559e008c598091c45b5088f28614e855e42d39c2f1033", size = 1697900, upload-time = "2026-01-03T17:30:31.033Z" },
- { url = "https://files.pythonhosted.org/packages/e5/66/7b94b3b5ba70e955ff597672dad1691333080e37f50280178967aff68657/aiohttp-3.13.3-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:c19b90316ad3b24c69cd78d5c9b4f3aa4497643685901185b65166293d36a00f", size = 1728239, upload-time = "2026-01-03T17:30:32.703Z" },
- { url = "https://files.pythonhosted.org/packages/47/71/6f72f77f9f7d74719692ab65a2a0252584bf8d5f301e2ecb4c0da734530a/aiohttp-3.13.3-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:96d604498a7c782cb15a51c406acaea70d8c027ee6b90c569baa6e7b93073679", size = 1740527, upload-time = "2026-01-03T17:30:34.695Z" },
- { url = "https://files.pythonhosted.org/packages/fa/b4/75ec16cbbd5c01bdaf4a05b19e103e78d7ce1ef7c80867eb0ace42ff4488/aiohttp-3.13.3-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:084911a532763e9d3dd95adf78a78f4096cd5f58cdc18e6fdbc1b58417a45423", size = 1554489, upload-time = "2026-01-03T17:30:36.864Z" },
- { url = "https://files.pythonhosted.org/packages/52/8f/bc518c0eea29f8406dcf7ed1f96c9b48e3bc3995a96159b3fc11f9e08321/aiohttp-3.13.3-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:7a4a94eb787e606d0a09404b9c38c113d3b099d508021faa615d70a0131907ce", size = 1767852, upload-time = "2026-01-03T17:30:39.433Z" },
- { url = "https://files.pythonhosted.org/packages/9d/f2/a07a75173124f31f11ea6f863dc44e6f09afe2bca45dd4e64979490deab1/aiohttp-3.13.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:87797e645d9d8e222e04160ee32aa06bc5c163e8499f24db719e7852ec23093a", size = 1722379, upload-time = "2026-01-03T17:30:41.081Z" },
- { url = "https://files.pythonhosted.org/packages/3c/4a/1a3fee7c21350cac78e5c5cef711bac1b94feca07399f3d406972e2d8fcd/aiohttp-3.13.3-cp312-cp312-win32.whl", hash = "sha256:b04be762396457bef43f3597c991e192ee7da460a4953d7e647ee4b1c28e7046", size = 428253, upload-time = "2026-01-03T17:30:42.644Z" },
- { url = "https://files.pythonhosted.org/packages/d9/b7/76175c7cb4eb73d91ad63c34e29fc4f77c9386bba4a65b53ba8e05ee3c39/aiohttp-3.13.3-cp312-cp312-win_amd64.whl", hash = "sha256:e3531d63d3bdfa7e3ac5e9b27b2dd7ec9df3206a98e0b3445fa906f233264c57", size = 455407, upload-time = "2026-01-03T17:30:44.195Z" },
- { url = "https://files.pythonhosted.org/packages/97/8a/12ca489246ca1faaf5432844adbfce7ff2cc4997733e0af120869345643a/aiohttp-3.13.3-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:5dff64413671b0d3e7d5918ea490bdccb97a4ad29b3f311ed423200b2203e01c", size = 734190, upload-time = "2026-01-03T17:30:45.832Z" },
- { url = "https://files.pythonhosted.org/packages/32/08/de43984c74ed1fca5c014808963cc83cb00d7bb06af228f132d33862ca76/aiohttp-3.13.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:87b9aab6d6ed88235aa2970294f496ff1a1f9adcd724d800e9b952395a80ffd9", size = 491783, upload-time = "2026-01-03T17:30:47.466Z" },
- { url = "https://files.pythonhosted.org/packages/17/f8/8dd2cf6112a5a76f81f81a5130c57ca829d101ad583ce57f889179accdda/aiohttp-3.13.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:425c126c0dc43861e22cb1c14ba4c8e45d09516d0a3ae0a3f7494b79f5f233a3", size = 490704, upload-time = "2026-01-03T17:30:49.373Z" },
- { url = "https://files.pythonhosted.org/packages/6d/40/a46b03ca03936f832bc7eaa47cfbb1ad012ba1be4790122ee4f4f8cba074/aiohttp-3.13.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7f9120f7093c2a32d9647abcaf21e6ad275b4fbec5b55969f978b1a97c7c86bf", size = 1720652, upload-time = "2026-01-03T17:30:50.974Z" },
- { url = "https://files.pythonhosted.org/packages/f7/7e/917fe18e3607af92657e4285498f500dca797ff8c918bd7d90b05abf6c2a/aiohttp-3.13.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:697753042d57f4bf7122cab985bf15d0cef23c770864580f5af4f52023a56bd6", size = 1692014, upload-time = "2026-01-03T17:30:52.729Z" },
- { url = "https://files.pythonhosted.org/packages/71/b6/cefa4cbc00d315d68973b671cf105b21a609c12b82d52e5d0c9ae61d2a09/aiohttp-3.13.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:6de499a1a44e7de70735d0b39f67c8f25eb3d91eb3103be99ca0fa882cdd987d", size = 1759777, upload-time = "2026-01-03T17:30:54.537Z" },
- { url = "https://files.pythonhosted.org/packages/fb/e3/e06ee07b45e59e6d81498b591fc589629be1553abb2a82ce33efe2a7b068/aiohttp-3.13.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:37239e9f9a7ea9ac5bf6b92b0260b01f8a22281996da609206a84df860bc1261", size = 1861276, upload-time = "2026-01-03T17:30:56.512Z" },
- { url = "https://files.pythonhosted.org/packages/7c/24/75d274228acf35ceeb2850b8ce04de9dd7355ff7a0b49d607ee60c29c518/aiohttp-3.13.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f76c1e3fe7d7c8afad7ed193f89a292e1999608170dcc9751a7462a87dfd5bc0", size = 1743131, upload-time = "2026-01-03T17:30:58.256Z" },
- { url = "https://files.pythonhosted.org/packages/04/98/3d21dde21889b17ca2eea54fdcff21b27b93f45b7bb94ca029c31ab59dc3/aiohttp-3.13.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:fc290605db2a917f6e81b0e1e0796469871f5af381ce15c604a3c5c7e51cb730", size = 1556863, upload-time = "2026-01-03T17:31:00.445Z" },
- { url = "https://files.pythonhosted.org/packages/9e/84/da0c3ab1192eaf64782b03971ab4055b475d0db07b17eff925e8c93b3aa5/aiohttp-3.13.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:4021b51936308aeea0367b8f006dc999ca02bc118a0cc78c303f50a2ff6afb91", size = 1682793, upload-time = "2026-01-03T17:31:03.024Z" },
- { url = "https://files.pythonhosted.org/packages/ff/0f/5802ada182f575afa02cbd0ec5180d7e13a402afb7c2c03a9aa5e5d49060/aiohttp-3.13.3-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:49a03727c1bba9a97d3e93c9f93ca03a57300f484b6e935463099841261195d3", size = 1716676, upload-time = "2026-01-03T17:31:04.842Z" },
- { url = "https://files.pythonhosted.org/packages/3f/8c/714d53bd8b5a4560667f7bbbb06b20c2382f9c7847d198370ec6526af39c/aiohttp-3.13.3-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:3d9908a48eb7416dc1f4524e69f1d32e5d90e3981e4e37eb0aa1cd18f9cfa2a4", size = 1733217, upload-time = "2026-01-03T17:31:06.868Z" },
- { url = "https://files.pythonhosted.org/packages/7d/79/e2176f46d2e963facea939f5be2d26368ce543622be6f00a12844d3c991f/aiohttp-3.13.3-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:2712039939ec963c237286113c68dbad80a82a4281543f3abf766d9d73228998", size = 1552303, upload-time = "2026-01-03T17:31:08.958Z" },
- { url = "https://files.pythonhosted.org/packages/ab/6a/28ed4dea1759916090587d1fe57087b03e6c784a642b85ef48217b0277ae/aiohttp-3.13.3-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:7bfdc049127717581866fa4708791220970ce291c23e28ccf3922c700740fdc0", size = 1763673, upload-time = "2026-01-03T17:31:10.676Z" },
- { url = "https://files.pythonhosted.org/packages/e8/35/4a3daeb8b9fab49240d21c04d50732313295e4bd813a465d840236dd0ce1/aiohttp-3.13.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8057c98e0c8472d8846b9c79f56766bcc57e3e8ac7bfd510482332366c56c591", size = 1721120, upload-time = "2026-01-03T17:31:12.575Z" },
- { url = "https://files.pythonhosted.org/packages/bc/9f/d643bb3c5fb99547323e635e251c609fbbc660d983144cfebec529e09264/aiohttp-3.13.3-cp313-cp313-win32.whl", hash = "sha256:1449ceddcdbcf2e0446957863af03ebaaa03f94c090f945411b61269e2cb5daf", size = 427383, upload-time = "2026-01-03T17:31:14.382Z" },
- { url = "https://files.pythonhosted.org/packages/4e/f1/ab0395f8a79933577cdd996dd2f9aa6014af9535f65dddcf88204682fe62/aiohttp-3.13.3-cp313-cp313-win_amd64.whl", hash = "sha256:693781c45a4033d31d4187d2436f5ac701e7bbfe5df40d917736108c1cc7436e", size = 453899, upload-time = "2026-01-03T17:31:15.958Z" },
- { url = "https://files.pythonhosted.org/packages/99/36/5b6514a9f5d66f4e2597e40dea2e3db271e023eb7a5d22defe96ba560996/aiohttp-3.13.3-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:ea37047c6b367fd4bd632bff8077449b8fa034b69e812a18e0132a00fae6e808", size = 737238, upload-time = "2026-01-03T17:31:17.909Z" },
- { url = "https://files.pythonhosted.org/packages/f7/49/459327f0d5bcd8c6c9ca69e60fdeebc3622861e696490d8674a6d0cb90a6/aiohttp-3.13.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:6fc0e2337d1a4c3e6acafda6a78a39d4c14caea625124817420abceed36e2415", size = 492292, upload-time = "2026-01-03T17:31:19.919Z" },
- { url = "https://files.pythonhosted.org/packages/e8/0b/b97660c5fd05d3495b4eb27f2d0ef18dc1dc4eff7511a9bf371397ff0264/aiohttp-3.13.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:c685f2d80bb67ca8c3837823ad76196b3694b0159d232206d1e461d3d434666f", size = 493021, upload-time = "2026-01-03T17:31:21.636Z" },
- { url = "https://files.pythonhosted.org/packages/54/d4/438efabdf74e30aeceb890c3290bbaa449780583b1270b00661126b8aae4/aiohttp-3.13.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:48e377758516d262bde50c2584fc6c578af272559c409eecbdd2bae1601184d6", size = 1717263, upload-time = "2026-01-03T17:31:23.296Z" },
- { url = "https://files.pythonhosted.org/packages/71/f2/7bddc7fd612367d1459c5bcf598a9e8f7092d6580d98de0e057eb42697ad/aiohttp-3.13.3-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:34749271508078b261c4abb1767d42b8d0c0cc9449c73a4df494777dc55f0687", size = 1669107, upload-time = "2026-01-03T17:31:25.334Z" },
- { url = "https://files.pythonhosted.org/packages/00/5a/1aeaecca40e22560f97610a329e0e5efef5e0b5afdf9f857f0d93839ab2e/aiohttp-3.13.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:82611aeec80eb144416956ec85b6ca45a64d76429c1ed46ae1b5f86c6e0c9a26", size = 1760196, upload-time = "2026-01-03T17:31:27.394Z" },
- { url = "https://files.pythonhosted.org/packages/f8/f8/0ff6992bea7bd560fc510ea1c815f87eedd745fe035589c71ce05612a19a/aiohttp-3.13.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:2fff83cfc93f18f215896e3a190e8e5cb413ce01553901aca925176e7568963a", size = 1843591, upload-time = "2026-01-03T17:31:29.238Z" },
- { url = "https://files.pythonhosted.org/packages/e3/d1/e30e537a15f53485b61f5be525f2157da719819e8377298502aebac45536/aiohttp-3.13.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bbe7d4cecacb439e2e2a8a1a7b935c25b812af7a5fd26503a66dadf428e79ec1", size = 1720277, upload-time = "2026-01-03T17:31:31.053Z" },
- { url = "https://files.pythonhosted.org/packages/84/45/23f4c451d8192f553d38d838831ebbc156907ea6e05557f39563101b7717/aiohttp-3.13.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:b928f30fe49574253644b1ca44b1b8adbd903aa0da4b9054a6c20fc7f4092a25", size = 1548575, upload-time = "2026-01-03T17:31:32.87Z" },
- { url = "https://files.pythonhosted.org/packages/6a/ed/0a42b127a43712eda7807e7892c083eadfaf8429ca8fb619662a530a3aab/aiohttp-3.13.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:7b5e8fe4de30df199155baaf64f2fcd604f4c678ed20910db8e2c66dc4b11603", size = 1679455, upload-time = "2026-01-03T17:31:34.76Z" },
- { url = "https://files.pythonhosted.org/packages/2e/b5/c05f0c2b4b4fe2c9d55e73b6d3ed4fd6c9dc2684b1d81cbdf77e7fad9adb/aiohttp-3.13.3-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:8542f41a62bcc58fc7f11cf7c90e0ec324ce44950003feb70640fc2a9092c32a", size = 1687417, upload-time = "2026-01-03T17:31:36.699Z" },
- { url = "https://files.pythonhosted.org/packages/c9/6b/915bc5dad66aef602b9e459b5a973529304d4e89ca86999d9d75d80cbd0b/aiohttp-3.13.3-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:5e1d8c8b8f1d91cd08d8f4a3c2b067bfca6ec043d3ff36de0f3a715feeedf926", size = 1729968, upload-time = "2026-01-03T17:31:38.622Z" },
- { url = "https://files.pythonhosted.org/packages/11/3b/e84581290a9520024a08640b63d07673057aec5ca548177a82026187ba73/aiohttp-3.13.3-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:90455115e5da1c3c51ab619ac57f877da8fd6d73c05aacd125c5ae9819582aba", size = 1545690, upload-time = "2026-01-03T17:31:40.57Z" },
- { url = "https://files.pythonhosted.org/packages/f5/04/0c3655a566c43fd647c81b895dfe361b9f9ad6d58c19309d45cff52d6c3b/aiohttp-3.13.3-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:042e9e0bcb5fba81886c8b4fbb9a09d6b8a00245fd8d88e4d989c1f96c74164c", size = 1746390, upload-time = "2026-01-03T17:31:42.857Z" },
- { url = "https://files.pythonhosted.org/packages/1f/53/71165b26978f719c3419381514c9690bd5980e764a09440a10bb816ea4ab/aiohttp-3.13.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:2eb752b102b12a76ca02dff751a801f028b4ffbbc478840b473597fc91a9ed43", size = 1702188, upload-time = "2026-01-03T17:31:44.984Z" },
- { url = "https://files.pythonhosted.org/packages/29/a7/cbe6c9e8e136314fa1980da388a59d2f35f35395948a08b6747baebb6aa6/aiohttp-3.13.3-cp314-cp314-win32.whl", hash = "sha256:b556c85915d8efaed322bf1bdae9486aa0f3f764195a0fb6ee962e5c71ef5ce1", size = 433126, upload-time = "2026-01-03T17:31:47.463Z" },
- { url = "https://files.pythonhosted.org/packages/de/56/982704adea7d3b16614fc5936014e9af85c0e34b58f9046655817f04306e/aiohttp-3.13.3-cp314-cp314-win_amd64.whl", hash = "sha256:9bf9f7a65e7aa20dd764151fb3d616c81088f91f8df39c3893a536e279b4b984", size = 459128, upload-time = "2026-01-03T17:31:49.2Z" },
- { url = "https://files.pythonhosted.org/packages/6c/2a/3c79b638a9c3d4658d345339d22070241ea341ed4e07b5ac60fb0f418003/aiohttp-3.13.3-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:05861afbbec40650d8a07ea324367cb93e9e8cc7762e04dd4405df99fa65159c", size = 769512, upload-time = "2026-01-03T17:31:51.134Z" },
- { url = "https://files.pythonhosted.org/packages/29/b9/3e5014d46c0ab0db8707e0ac2711ed28c4da0218c358a4e7c17bae0d8722/aiohttp-3.13.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:2fc82186fadc4a8316768d61f3722c230e2c1dcab4200d52d2ebdf2482e47592", size = 506444, upload-time = "2026-01-03T17:31:52.85Z" },
- { url = "https://files.pythonhosted.org/packages/90/03/c1d4ef9a054e151cd7839cdc497f2638f00b93cbe8043983986630d7a80c/aiohttp-3.13.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:0add0900ff220d1d5c5ebbf99ed88b0c1bbf87aa7e4262300ed1376a6b13414f", size = 510798, upload-time = "2026-01-03T17:31:54.91Z" },
- { url = "https://files.pythonhosted.org/packages/ea/76/8c1e5abbfe8e127c893fe7ead569148a4d5a799f7cf958d8c09f3eedf097/aiohttp-3.13.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:568f416a4072fbfae453dcf9a99194bbb8bdeab718e08ee13dfa2ba0e4bebf29", size = 1868835, upload-time = "2026-01-03T17:31:56.733Z" },
- { url = "https://files.pythonhosted.org/packages/8e/ac/984c5a6f74c363b01ff97adc96a3976d9c98940b8969a1881575b279ac5d/aiohttp-3.13.3-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:add1da70de90a2569c5e15249ff76a631ccacfe198375eead4aadf3b8dc849dc", size = 1720486, upload-time = "2026-01-03T17:31:58.65Z" },
- { url = "https://files.pythonhosted.org/packages/b2/9a/b7039c5f099c4eb632138728828b33428585031a1e658d693d41d07d89d1/aiohttp-3.13.3-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:10b47b7ba335d2e9b1239fa571131a87e2d8ec96b333e68b2a305e7a98b0bae2", size = 1847951, upload-time = "2026-01-03T17:32:00.989Z" },
- { url = "https://files.pythonhosted.org/packages/3c/02/3bec2b9a1ba3c19ff89a43a19324202b8eb187ca1e928d8bdac9bbdddebd/aiohttp-3.13.3-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:3dd4dce1c718e38081c8f35f323209d4c1df7d4db4bab1b5c88a6b4d12b74587", size = 1941001, upload-time = "2026-01-03T17:32:03.122Z" },
- { url = "https://files.pythonhosted.org/packages/37/df/d879401cedeef27ac4717f6426c8c36c3091c6e9f08a9178cc87549c537f/aiohttp-3.13.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:34bac00a67a812570d4a460447e1e9e06fae622946955f939051e7cc895cfab8", size = 1797246, upload-time = "2026-01-03T17:32:05.255Z" },
- { url = "https://files.pythonhosted.org/packages/8d/15/be122de1f67e6953add23335c8ece6d314ab67c8bebb3f181063010795a7/aiohttp-3.13.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:a19884d2ee70b06d9204b2727a7b9f983d0c684c650254679e716b0b77920632", size = 1627131, upload-time = "2026-01-03T17:32:07.607Z" },
- { url = "https://files.pythonhosted.org/packages/12/12/70eedcac9134cfa3219ab7af31ea56bc877395b1ac30d65b1bc4b27d0438/aiohttp-3.13.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:5f8ca7f2bb6ba8348a3614c7918cc4bb73268c5ac2a207576b7afea19d3d9f64", size = 1795196, upload-time = "2026-01-03T17:32:09.59Z" },
- { url = "https://files.pythonhosted.org/packages/32/11/b30e1b1cd1f3054af86ebe60df96989c6a414dd87e27ad16950eee420bea/aiohttp-3.13.3-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:b0d95340658b9d2f11d9697f59b3814a9d3bb4b7a7c20b131df4bcef464037c0", size = 1782841, upload-time = "2026-01-03T17:32:11.445Z" },
- { url = "https://files.pythonhosted.org/packages/88/0d/d98a9367b38912384a17e287850f5695c528cff0f14f791ce8ee2e4f7796/aiohttp-3.13.3-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:a1e53262fd202e4b40b70c3aff944a8155059beedc8a89bba9dc1f9ef06a1b56", size = 1795193, upload-time = "2026-01-03T17:32:13.705Z" },
- { url = "https://files.pythonhosted.org/packages/43/a5/a2dfd1f5ff5581632c7f6a30e1744deda03808974f94f6534241ef60c751/aiohttp-3.13.3-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:d60ac9663f44168038586cab2157e122e46bdef09e9368b37f2d82d354c23f72", size = 1621979, upload-time = "2026-01-03T17:32:15.965Z" },
- { url = "https://files.pythonhosted.org/packages/fa/f0/12973c382ae7c1cccbc4417e129c5bf54c374dfb85af70893646e1f0e749/aiohttp-3.13.3-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:90751b8eed69435bac9ff4e3d2f6b3af1f57e37ecb0fbeee59c0174c9e2d41df", size = 1822193, upload-time = "2026-01-03T17:32:18.219Z" },
- { url = "https://files.pythonhosted.org/packages/3c/5f/24155e30ba7f8c96918af1350eb0663e2430aad9e001c0489d89cd708ab1/aiohttp-3.13.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:fc353029f176fd2b3ec6cfc71be166aba1936fe5d73dd1992ce289ca6647a9aa", size = 1769801, upload-time = "2026-01-03T17:32:20.25Z" },
- { url = "https://files.pythonhosted.org/packages/eb/f8/7314031ff5c10e6ece114da79b338ec17eeff3a079e53151f7e9f43c4723/aiohttp-3.13.3-cp314-cp314t-win32.whl", hash = "sha256:2e41b18a58da1e474a057b3d35248d8320029f61d70a37629535b16a0c8f3767", size = 466523, upload-time = "2026-01-03T17:32:22.215Z" },
- { url = "https://files.pythonhosted.org/packages/b4/63/278a98c715ae467624eafe375542d8ba9b4383a016df8fdefe0ae28382a7/aiohttp-3.13.3-cp314-cp314t-win_amd64.whl", hash = "sha256:44531a36aa2264a1860089ffd4dce7baf875ee5a6079d5fb42e261c704ef7344", size = 499694, upload-time = "2026-01-03T17:32:24.546Z" },
-]
-
-[[package]]
-name = "aioitertools"
-version = "0.13.0"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/fd/3c/53c4a17a05fb9ea2313ee1777ff53f5e001aefd5cc85aa2f4c2d982e1e38/aioitertools-0.13.0.tar.gz", hash = "sha256:620bd241acc0bbb9ec819f1ab215866871b4bbd1f73836a55f799200ee86950c", size = 19322, upload-time = "2025-11-06T22:17:07.609Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/10/a1/510b0a7fadc6f43a6ce50152e69dbd86415240835868bb0bd9b5b88b1e06/aioitertools-0.13.0-py3-none-any.whl", hash = "sha256:0be0292b856f08dfac90e31f4739432f4cb6d7520ab9eb73e143f4f2fa5259be", size = 24182, upload-time = "2025-11-06T22:17:06.502Z" },
-]
-
-[[package]]
-name = "aiosignal"
-version = "1.4.0"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "frozenlist" },
- { name = "typing-extensions", marker = "python_full_version < '3.13'" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/61/62/06741b579156360248d1ec624842ad0edf697050bbaf7c3e46394e106ad1/aiosignal-1.4.0.tar.gz", hash = "sha256:f47eecd9468083c2029cc99945502cb7708b082c232f9aca65da147157b251c7", size = 25007, upload-time = "2025-07-03T22:54:43.528Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/fb/76/641ae371508676492379f16e2fa48f4e2c11741bd63c48be4b12a6b09cba/aiosignal-1.4.0-py3-none-any.whl", hash = "sha256:053243f8b92b990551949e63930a839ff0cf0b0ebbe0597b0f3fb19e1a0fe82e", size = 7490, upload-time = "2025-07-03T22:54:42.156Z" },
-]
-
-[[package]]
-name = "altair"
-version = "6.0.0"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "jinja2" },
- { name = "jsonschema" },
- { name = "narwhals" },
- { name = "packaging" },
- { name = "typing-extensions", marker = "python_full_version < '3.15'" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/f7/c0/184a89bd5feba14ff3c41cfaf1dd8a82c05f5ceedbc92145e17042eb08a4/altair-6.0.0.tar.gz", hash = "sha256:614bf5ecbe2337347b590afb111929aa9c16c9527c4887d96c9bc7f6640756b4", size = 763834, upload-time = "2025-11-12T08:59:11.519Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/db/33/ef2f2409450ef6daa61459d5de5c08128e7d3edb773fefd0a324d1310238/altair-6.0.0-py3-none-any.whl", hash = "sha256:09ae95b53d5fe5b16987dccc785a7af8588f2dca50de1e7a156efa8a461515f8", size = 795410, upload-time = "2025-11-12T08:59:09.804Z" },
-]
-
-[[package]]
-name = "annotated-types"
-version = "0.7.0"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/ee/67/531ea369ba64dcff5ec9c3402f9f51bf748cec26dde048a2f973a4eea7f5/annotated_types-0.7.0.tar.gz", hash = "sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89", size = 16081, upload-time = "2024-05-20T21:33:25.928Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl", hash = "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53", size = 13643, upload-time = "2024-05-20T21:33:24.1Z" },
-]
-
-[[package]]
-name = "anyio"
-version = "4.12.1"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "idna" },
- { name = "typing-extensions", marker = "python_full_version < '3.13'" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/96/f0/5eb65b2bb0d09ac6776f2eb54adee6abe8228ea05b20a5ad0e4945de8aac/anyio-4.12.1.tar.gz", hash = "sha256:41cfcc3a4c85d3f05c932da7c26d0201ac36f72abd4435ba90d0464a3ffed703", size = 228685, upload-time = "2026-01-06T11:45:21.246Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/38/0e/27be9fdef66e72d64c0cdc3cc2823101b80585f8119b5c112c2e8f5f7dab/anyio-4.12.1-py3-none-any.whl", hash = "sha256:d405828884fc140aa80a3c667b8beed277f1dfedec42ba031bd6ac3db606ab6c", size = 113592, upload-time = "2026-01-06T11:45:19.497Z" },
-]
-
-[[package]]
-name = "attrs"
-version = "25.4.0"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/6b/5c/685e6633917e101e5dcb62b9dd76946cbb57c26e133bae9e0cd36033c0a9/attrs-25.4.0.tar.gz", hash = "sha256:16d5969b87f0859ef33a48b35d55ac1be6e42ae49d5e853b597db70c35c57e11", size = 934251, upload-time = "2025-10-06T13:54:44.725Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/3a/2a/7cc015f5b9f5db42b7d48157e23356022889fc354a2813c15934b7cb5c0e/attrs-25.4.0-py3-none-any.whl", hash = "sha256:adcf7e2a1fb3b36ac48d97835bb6d8ade15b8dcce26aba8bf1d14847b57a3373", size = 67615, upload-time = "2025-10-06T13:54:43.17Z" },
-]
-
-[[package]]
-name = "blinker"
-version = "1.9.0"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/21/28/9b3f50ce0e048515135495f198351908d99540d69bfdc8c1d15b73dc55ce/blinker-1.9.0.tar.gz", hash = "sha256:b4ce2265a7abece45e7cc896e98dbebe6cead56bcf805a3d23136d145f5445bf", size = 22460, upload-time = "2024-11-08T17:25:47.436Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/10/cb/f2ad4230dc2eb1a74edf38f1a38b9b52277f75bef262d8908e60d957e13c/blinker-1.9.0-py3-none-any.whl", hash = "sha256:ba0efaa9080b619ff2f3459d1d500c57bddea4a6b424b60a91141db6fd2f08bc", size = 8458, upload-time = "2024-11-08T17:25:46.184Z" },
-]
-
-[[package]]
-name = "botocore"
-version = "1.41.5"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "jmespath" },
- { name = "python-dateutil" },
- { name = "urllib3" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/90/22/7fe08c726a2e3b11a0aef8bf177e83891c9cb2dc1809d35c9ed91a9e60e6/botocore-1.41.5.tar.gz", hash = "sha256:0367622b811597d183bfcaab4a350f0d3ede712031ce792ef183cabdee80d3bf", size = 14668152, upload-time = "2025-11-26T20:27:38.026Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/4e/4e/21cd0b8f365449f1576f93de1ec8718ed18a7a3bc086dfbdeb79437bba7a/botocore-1.41.5-py3-none-any.whl", hash = "sha256:3fef7fcda30c82c27202d232cfdbd6782cb27f20f8e7e21b20606483e66ee73a", size = 14337008, upload-time = "2025-11-26T20:27:35.208Z" },
-]
-
-[[package]]
-name = "cachetools"
-version = "6.2.6"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/39/91/d9ae9a66b01102a18cd16db0cf4cd54187ffe10f0865cc80071a4104fbb3/cachetools-6.2.6.tar.gz", hash = "sha256:16c33e1f276b9a9c0b49ab5782d901e3ad3de0dd6da9bf9bcd29ac5672f2f9e6", size = 32363, upload-time = "2026-01-27T20:32:59.956Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/90/45/f458fa2c388e79dd9d8b9b0c99f1d31b568f27388f2fdba7bb66bbc0c6ed/cachetools-6.2.6-py3-none-any.whl", hash = "sha256:8c9717235b3c651603fff0076db52d6acbfd1b338b8ed50256092f7ce9c85bda", size = 11668, upload-time = "2026-01-27T20:32:58.527Z" },
-]
-
-[[package]]
-name = "certifi"
-version = "2026.1.4"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/e0/2d/a891ca51311197f6ad14a7ef42e2399f36cf2f9bd44752b3dc4eab60fdc5/certifi-2026.1.4.tar.gz", hash = "sha256:ac726dd470482006e014ad384921ed6438c457018f4b3d204aea4281258b2120", size = 154268, upload-time = "2026-01-04T02:42:41.825Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/e6/ad/3cc14f097111b4de0040c83a525973216457bbeeb63739ef1ed275c1c021/certifi-2026.1.4-py3-none-any.whl", hash = "sha256:9943707519e4add1115f44c2bc244f782c0249876bf51b6599fee1ffbedd685c", size = 152900, upload-time = "2026-01-04T02:42:40.15Z" },
-]
-
-[[package]]
-name = "charset-normalizer"
-version = "3.4.4"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/13/69/33ddede1939fdd074bce5434295f38fae7136463422fe4fd3e0e89b98062/charset_normalizer-3.4.4.tar.gz", hash = "sha256:94537985111c35f28720e43603b8e7b43a6ecfb2ce1d3058bbe955b73404e21a", size = 129418, upload-time = "2025-10-14T04:42:32.879Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/ed/27/c6491ff4954e58a10f69ad90aca8a1b6fe9c5d3c6f380907af3c37435b59/charset_normalizer-3.4.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:6e1fcf0720908f200cd21aa4e6750a48ff6ce4afe7ff5a79a90d5ed8a08296f8", size = 206988, upload-time = "2025-10-14T04:40:33.79Z" },
- { url = "https://files.pythonhosted.org/packages/94/59/2e87300fe67ab820b5428580a53cad894272dbb97f38a7a814a2a1ac1011/charset_normalizer-3.4.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5f819d5fe9234f9f82d75bdfa9aef3a3d72c4d24a6e57aeaebba32a704553aa0", size = 147324, upload-time = "2025-10-14T04:40:34.961Z" },
- { url = "https://files.pythonhosted.org/packages/07/fb/0cf61dc84b2b088391830f6274cb57c82e4da8bbc2efeac8c025edb88772/charset_normalizer-3.4.4-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:a59cb51917aa591b1c4e6a43c132f0cdc3c76dbad6155df4e28ee626cc77a0a3", size = 142742, upload-time = "2025-10-14T04:40:36.105Z" },
- { url = "https://files.pythonhosted.org/packages/62/8b/171935adf2312cd745d290ed93cf16cf0dfe320863ab7cbeeae1dcd6535f/charset_normalizer-3.4.4-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8ef3c867360f88ac904fd3f5e1f902f13307af9052646963ee08ff4f131adafc", size = 160863, upload-time = "2025-10-14T04:40:37.188Z" },
- { url = "https://files.pythonhosted.org/packages/09/73/ad875b192bda14f2173bfc1bc9a55e009808484a4b256748d931b6948442/charset_normalizer-3.4.4-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d9e45d7faa48ee908174d8fe84854479ef838fc6a705c9315372eacbc2f02897", size = 157837, upload-time = "2025-10-14T04:40:38.435Z" },
- { url = "https://files.pythonhosted.org/packages/6d/fc/de9cce525b2c5b94b47c70a4b4fb19f871b24995c728e957ee68ab1671ea/charset_normalizer-3.4.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:840c25fb618a231545cbab0564a799f101b63b9901f2569faecd6b222ac72381", size = 151550, upload-time = "2025-10-14T04:40:40.053Z" },
- { url = "https://files.pythonhosted.org/packages/55/c2/43edd615fdfba8c6f2dfbd459b25a6b3b551f24ea21981e23fb768503ce1/charset_normalizer-3.4.4-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:ca5862d5b3928c4940729dacc329aa9102900382fea192fc5e52eb69d6093815", size = 149162, upload-time = "2025-10-14T04:40:41.163Z" },
- { url = "https://files.pythonhosted.org/packages/03/86/bde4ad8b4d0e9429a4e82c1e8f5c659993a9a863ad62c7df05cf7b678d75/charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d9c7f57c3d666a53421049053eaacdd14bbd0a528e2186fcb2e672effd053bb0", size = 150019, upload-time = "2025-10-14T04:40:42.276Z" },
- { url = "https://files.pythonhosted.org/packages/1f/86/a151eb2af293a7e7bac3a739b81072585ce36ccfb4493039f49f1d3cae8c/charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:277e970e750505ed74c832b4bf75dac7476262ee2a013f5574dd49075879e161", size = 143310, upload-time = "2025-10-14T04:40:43.439Z" },
- { url = "https://files.pythonhosted.org/packages/b5/fe/43dae6144a7e07b87478fdfc4dbe9efd5defb0e7ec29f5f58a55aeef7bf7/charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:31fd66405eaf47bb62e8cd575dc621c56c668f27d46a61d975a249930dd5e2a4", size = 162022, upload-time = "2025-10-14T04:40:44.547Z" },
- { url = "https://files.pythonhosted.org/packages/80/e6/7aab83774f5d2bca81f42ac58d04caf44f0cc2b65fc6db2b3b2e8a05f3b3/charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:0d3d8f15c07f86e9ff82319b3d9ef6f4bf907608f53fe9d92b28ea9ae3d1fd89", size = 149383, upload-time = "2025-10-14T04:40:46.018Z" },
- { url = "https://files.pythonhosted.org/packages/4f/e8/b289173b4edae05c0dde07f69f8db476a0b511eac556dfe0d6bda3c43384/charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:9f7fcd74d410a36883701fafa2482a6af2ff5ba96b9a620e9e0721e28ead5569", size = 159098, upload-time = "2025-10-14T04:40:47.081Z" },
- { url = "https://files.pythonhosted.org/packages/d8/df/fe699727754cae3f8478493c7f45f777b17c3ef0600e28abfec8619eb49c/charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ebf3e58c7ec8a8bed6d66a75d7fb37b55e5015b03ceae72a8e7c74495551e224", size = 152991, upload-time = "2025-10-14T04:40:48.246Z" },
- { url = "https://files.pythonhosted.org/packages/1a/86/584869fe4ddb6ffa3bd9f491b87a01568797fb9bd8933f557dba9771beaf/charset_normalizer-3.4.4-cp311-cp311-win32.whl", hash = "sha256:eecbc200c7fd5ddb9a7f16c7decb07b566c29fa2161a16cf67b8d068bd21690a", size = 99456, upload-time = "2025-10-14T04:40:49.376Z" },
- { url = "https://files.pythonhosted.org/packages/65/f6/62fdd5feb60530f50f7e38b4f6a1d5203f4d16ff4f9f0952962c044e919a/charset_normalizer-3.4.4-cp311-cp311-win_amd64.whl", hash = "sha256:5ae497466c7901d54b639cf42d5b8c1b6a4fead55215500d2f486d34db48d016", size = 106978, upload-time = "2025-10-14T04:40:50.844Z" },
- { url = "https://files.pythonhosted.org/packages/7a/9d/0710916e6c82948b3be62d9d398cb4fcf4e97b56d6a6aeccd66c4b2f2bd5/charset_normalizer-3.4.4-cp311-cp311-win_arm64.whl", hash = "sha256:65e2befcd84bc6f37095f5961e68a6f077bf44946771354a28ad434c2cce0ae1", size = 99969, upload-time = "2025-10-14T04:40:52.272Z" },
- { url = "https://files.pythonhosted.org/packages/f3/85/1637cd4af66fa687396e757dec650f28025f2a2f5a5531a3208dc0ec43f2/charset_normalizer-3.4.4-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0a98e6759f854bd25a58a73fa88833fba3b7c491169f86ce1180c948ab3fd394", size = 208425, upload-time = "2025-10-14T04:40:53.353Z" },
- { url = "https://files.pythonhosted.org/packages/9d/6a/04130023fef2a0d9c62d0bae2649b69f7b7d8d24ea5536feef50551029df/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b5b290ccc2a263e8d185130284f8501e3e36c5e02750fc6b6bdeb2e9e96f1e25", size = 148162, upload-time = "2025-10-14T04:40:54.558Z" },
- { url = "https://files.pythonhosted.org/packages/78/29/62328d79aa60da22c9e0b9a66539feae06ca0f5a4171ac4f7dc285b83688/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:74bb723680f9f7a6234dcf67aea57e708ec1fbdf5699fb91dfd6f511b0a320ef", size = 144558, upload-time = "2025-10-14T04:40:55.677Z" },
- { url = "https://files.pythonhosted.org/packages/86/bb/b32194a4bf15b88403537c2e120b817c61cd4ecffa9b6876e941c3ee38fe/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f1e34719c6ed0b92f418c7c780480b26b5d9c50349e9a9af7d76bf757530350d", size = 161497, upload-time = "2025-10-14T04:40:57.217Z" },
- { url = "https://files.pythonhosted.org/packages/19/89/a54c82b253d5b9b111dc74aca196ba5ccfcca8242d0fb64146d4d3183ff1/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:2437418e20515acec67d86e12bf70056a33abdacb5cb1655042f6538d6b085a8", size = 159240, upload-time = "2025-10-14T04:40:58.358Z" },
- { url = "https://files.pythonhosted.org/packages/c0/10/d20b513afe03acc89ec33948320a5544d31f21b05368436d580dec4e234d/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:11d694519d7f29d6cd09f6ac70028dba10f92f6cdd059096db198c283794ac86", size = 153471, upload-time = "2025-10-14T04:40:59.468Z" },
- { url = "https://files.pythonhosted.org/packages/61/fa/fbf177b55bdd727010f9c0a3c49eefa1d10f960e5f09d1d887bf93c2e698/charset_normalizer-3.4.4-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:ac1c4a689edcc530fc9d9aa11f5774b9e2f33f9a0c6a57864e90908f5208d30a", size = 150864, upload-time = "2025-10-14T04:41:00.623Z" },
- { url = "https://files.pythonhosted.org/packages/05/12/9fbc6a4d39c0198adeebbde20b619790e9236557ca59fc40e0e3cebe6f40/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:21d142cc6c0ec30d2efee5068ca36c128a30b0f2c53c1c07bd78cb6bc1d3be5f", size = 150647, upload-time = "2025-10-14T04:41:01.754Z" },
- { url = "https://files.pythonhosted.org/packages/ad/1f/6a9a593d52e3e8c5d2b167daf8c6b968808efb57ef4c210acb907c365bc4/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:5dbe56a36425d26d6cfb40ce79c314a2e4dd6211d51d6d2191c00bed34f354cc", size = 145110, upload-time = "2025-10-14T04:41:03.231Z" },
- { url = "https://files.pythonhosted.org/packages/30/42/9a52c609e72471b0fc54386dc63c3781a387bb4fe61c20231a4ebcd58bdd/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:5bfbb1b9acf3334612667b61bd3002196fe2a1eb4dd74d247e0f2a4d50ec9bbf", size = 162839, upload-time = "2025-10-14T04:41:04.715Z" },
- { url = "https://files.pythonhosted.org/packages/c4/5b/c0682bbf9f11597073052628ddd38344a3d673fda35a36773f7d19344b23/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:d055ec1e26e441f6187acf818b73564e6e6282709e9bcb5b63f5b23068356a15", size = 150667, upload-time = "2025-10-14T04:41:05.827Z" },
- { url = "https://files.pythonhosted.org/packages/e4/24/a41afeab6f990cf2daf6cb8c67419b63b48cf518e4f56022230840c9bfb2/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:af2d8c67d8e573d6de5bc30cdb27e9b95e49115cd9baad5ddbd1a6207aaa82a9", size = 160535, upload-time = "2025-10-14T04:41:06.938Z" },
- { url = "https://files.pythonhosted.org/packages/2a/e5/6a4ce77ed243c4a50a1fecca6aaaab419628c818a49434be428fe24c9957/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:780236ac706e66881f3b7f2f32dfe90507a09e67d1d454c762cf642e6e1586e0", size = 154816, upload-time = "2025-10-14T04:41:08.101Z" },
- { url = "https://files.pythonhosted.org/packages/a8/ef/89297262b8092b312d29cdb2517cb1237e51db8ecef2e9af5edbe7b683b1/charset_normalizer-3.4.4-cp312-cp312-win32.whl", hash = "sha256:5833d2c39d8896e4e19b689ffc198f08ea58116bee26dea51e362ecc7cd3ed26", size = 99694, upload-time = "2025-10-14T04:41:09.23Z" },
- { url = "https://files.pythonhosted.org/packages/3d/2d/1e5ed9dd3b3803994c155cd9aacb60c82c331bad84daf75bcb9c91b3295e/charset_normalizer-3.4.4-cp312-cp312-win_amd64.whl", hash = "sha256:a79cfe37875f822425b89a82333404539ae63dbdddf97f84dcbc3d339aae9525", size = 107131, upload-time = "2025-10-14T04:41:10.467Z" },
- { url = "https://files.pythonhosted.org/packages/d0/d9/0ed4c7098a861482a7b6a95603edce4c0d9db2311af23da1fb2b75ec26fc/charset_normalizer-3.4.4-cp312-cp312-win_arm64.whl", hash = "sha256:376bec83a63b8021bb5c8ea75e21c4ccb86e7e45ca4eb81146091b56599b80c3", size = 100390, upload-time = "2025-10-14T04:41:11.915Z" },
- { url = "https://files.pythonhosted.org/packages/97/45/4b3a1239bbacd321068ea6e7ac28875b03ab8bc0aa0966452db17cd36714/charset_normalizer-3.4.4-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e1f185f86a6f3403aa2420e815904c67b2f9ebc443f045edd0de921108345794", size = 208091, upload-time = "2025-10-14T04:41:13.346Z" },
- { url = "https://files.pythonhosted.org/packages/7d/62/73a6d7450829655a35bb88a88fca7d736f9882a27eacdca2c6d505b57e2e/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6b39f987ae8ccdf0d2642338faf2abb1862340facc796048b604ef14919e55ed", size = 147936, upload-time = "2025-10-14T04:41:14.461Z" },
- { url = "https://files.pythonhosted.org/packages/89/c5/adb8c8b3d6625bef6d88b251bbb0d95f8205831b987631ab0c8bb5d937c2/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:3162d5d8ce1bb98dd51af660f2121c55d0fa541b46dff7bb9b9f86ea1d87de72", size = 144180, upload-time = "2025-10-14T04:41:15.588Z" },
- { url = "https://files.pythonhosted.org/packages/91/ed/9706e4070682d1cc219050b6048bfd293ccf67b3d4f5a4f39207453d4b99/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:81d5eb2a312700f4ecaa977a8235b634ce853200e828fbadf3a9c50bab278328", size = 161346, upload-time = "2025-10-14T04:41:16.738Z" },
- { url = "https://files.pythonhosted.org/packages/d5/0d/031f0d95e4972901a2f6f09ef055751805ff541511dc1252ba3ca1f80cf5/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5bd2293095d766545ec1a8f612559f6b40abc0eb18bb2f5d1171872d34036ede", size = 158874, upload-time = "2025-10-14T04:41:17.923Z" },
- { url = "https://files.pythonhosted.org/packages/f5/83/6ab5883f57c9c801ce5e5677242328aa45592be8a00644310a008d04f922/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a8a8b89589086a25749f471e6a900d3f662d1d3b6e2e59dcecf787b1cc3a1894", size = 153076, upload-time = "2025-10-14T04:41:19.106Z" },
- { url = "https://files.pythonhosted.org/packages/75/1e/5ff781ddf5260e387d6419959ee89ef13878229732732ee73cdae01800f2/charset_normalizer-3.4.4-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:bc7637e2f80d8530ee4a78e878bce464f70087ce73cf7c1caf142416923b98f1", size = 150601, upload-time = "2025-10-14T04:41:20.245Z" },
- { url = "https://files.pythonhosted.org/packages/d7/57/71be810965493d3510a6ca79b90c19e48696fb1ff964da319334b12677f0/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f8bf04158c6b607d747e93949aa60618b61312fe647a6369f88ce2ff16043490", size = 150376, upload-time = "2025-10-14T04:41:21.398Z" },
- { url = "https://files.pythonhosted.org/packages/e5/d5/c3d057a78c181d007014feb7e9f2e65905a6c4ef182c0ddf0de2924edd65/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:554af85e960429cf30784dd47447d5125aaa3b99a6f0683589dbd27e2f45da44", size = 144825, upload-time = "2025-10-14T04:41:22.583Z" },
- { url = "https://files.pythonhosted.org/packages/e6/8c/d0406294828d4976f275ffbe66f00266c4b3136b7506941d87c00cab5272/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:74018750915ee7ad843a774364e13a3db91682f26142baddf775342c3f5b1133", size = 162583, upload-time = "2025-10-14T04:41:23.754Z" },
- { url = "https://files.pythonhosted.org/packages/d7/24/e2aa1f18c8f15c4c0e932d9287b8609dd30ad56dbe41d926bd846e22fb8d/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:c0463276121fdee9c49b98908b3a89c39be45d86d1dbaa22957e38f6321d4ce3", size = 150366, upload-time = "2025-10-14T04:41:25.27Z" },
- { url = "https://files.pythonhosted.org/packages/e4/5b/1e6160c7739aad1e2df054300cc618b06bf784a7a164b0f238360721ab86/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:362d61fd13843997c1c446760ef36f240cf81d3ebf74ac62652aebaf7838561e", size = 160300, upload-time = "2025-10-14T04:41:26.725Z" },
- { url = "https://files.pythonhosted.org/packages/7a/10/f882167cd207fbdd743e55534d5d9620e095089d176d55cb22d5322f2afd/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9a26f18905b8dd5d685d6d07b0cdf98a79f3c7a918906af7cc143ea2e164c8bc", size = 154465, upload-time = "2025-10-14T04:41:28.322Z" },
- { url = "https://files.pythonhosted.org/packages/89/66/c7a9e1b7429be72123441bfdbaf2bc13faab3f90b933f664db506dea5915/charset_normalizer-3.4.4-cp313-cp313-win32.whl", hash = "sha256:9b35f4c90079ff2e2edc5b26c0c77925e5d2d255c42c74fdb70fb49b172726ac", size = 99404, upload-time = "2025-10-14T04:41:29.95Z" },
- { url = "https://files.pythonhosted.org/packages/c4/26/b9924fa27db384bdcd97ab83b4f0a8058d96ad9626ead570674d5e737d90/charset_normalizer-3.4.4-cp313-cp313-win_amd64.whl", hash = "sha256:b435cba5f4f750aa6c0a0d92c541fb79f69a387c91e61f1795227e4ed9cece14", size = 107092, upload-time = "2025-10-14T04:41:31.188Z" },
- { url = "https://files.pythonhosted.org/packages/af/8f/3ed4bfa0c0c72a7ca17f0380cd9e4dd842b09f664e780c13cff1dcf2ef1b/charset_normalizer-3.4.4-cp313-cp313-win_arm64.whl", hash = "sha256:542d2cee80be6f80247095cc36c418f7bddd14f4a6de45af91dfad36d817bba2", size = 100408, upload-time = "2025-10-14T04:41:32.624Z" },
- { url = "https://files.pythonhosted.org/packages/2a/35/7051599bd493e62411d6ede36fd5af83a38f37c4767b92884df7301db25d/charset_normalizer-3.4.4-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:da3326d9e65ef63a817ecbcc0df6e94463713b754fe293eaa03da99befb9a5bd", size = 207746, upload-time = "2025-10-14T04:41:33.773Z" },
- { url = "https://files.pythonhosted.org/packages/10/9a/97c8d48ef10d6cd4fcead2415523221624bf58bcf68a802721a6bc807c8f/charset_normalizer-3.4.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8af65f14dc14a79b924524b1e7fffe304517b2bff5a58bf64f30b98bbc5079eb", size = 147889, upload-time = "2025-10-14T04:41:34.897Z" },
- { url = "https://files.pythonhosted.org/packages/10/bf/979224a919a1b606c82bd2c5fa49b5c6d5727aa47b4312bb27b1734f53cd/charset_normalizer-3.4.4-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:74664978bb272435107de04e36db5a9735e78232b85b77d45cfb38f758efd33e", size = 143641, upload-time = "2025-10-14T04:41:36.116Z" },
- { url = "https://files.pythonhosted.org/packages/ba/33/0ad65587441fc730dc7bd90e9716b30b4702dc7b617e6ba4997dc8651495/charset_normalizer-3.4.4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:752944c7ffbfdd10c074dc58ec2d5a8a4cd9493b314d367c14d24c17684ddd14", size = 160779, upload-time = "2025-10-14T04:41:37.229Z" },
- { url = "https://files.pythonhosted.org/packages/67/ed/331d6b249259ee71ddea93f6f2f0a56cfebd46938bde6fcc6f7b9a3d0e09/charset_normalizer-3.4.4-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d1f13550535ad8cff21b8d757a3257963e951d96e20ec82ab44bc64aeb62a191", size = 159035, upload-time = "2025-10-14T04:41:38.368Z" },
- { url = "https://files.pythonhosted.org/packages/67/ff/f6b948ca32e4f2a4576aa129d8bed61f2e0543bf9f5f2b7fc3758ed005c9/charset_normalizer-3.4.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ecaae4149d99b1c9e7b88bb03e3221956f68fd6d50be2ef061b2381b61d20838", size = 152542, upload-time = "2025-10-14T04:41:39.862Z" },
- { url = "https://files.pythonhosted.org/packages/16/85/276033dcbcc369eb176594de22728541a925b2632f9716428c851b149e83/charset_normalizer-3.4.4-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:cb6254dc36b47a990e59e1068afacdcd02958bdcce30bb50cc1700a8b9d624a6", size = 149524, upload-time = "2025-10-14T04:41:41.319Z" },
- { url = "https://files.pythonhosted.org/packages/9e/f2/6a2a1f722b6aba37050e626530a46a68f74e63683947a8acff92569f979a/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:c8ae8a0f02f57a6e61203a31428fa1d677cbe50c93622b4149d5c0f319c1d19e", size = 150395, upload-time = "2025-10-14T04:41:42.539Z" },
- { url = "https://files.pythonhosted.org/packages/60/bb/2186cb2f2bbaea6338cad15ce23a67f9b0672929744381e28b0592676824/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:47cc91b2f4dd2833fddaedd2893006b0106129d4b94fdb6af1f4ce5a9965577c", size = 143680, upload-time = "2025-10-14T04:41:43.661Z" },
- { url = "https://files.pythonhosted.org/packages/7d/a5/bf6f13b772fbb2a90360eb620d52ed8f796f3c5caee8398c3b2eb7b1c60d/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:82004af6c302b5d3ab2cfc4cc5f29db16123b1a8417f2e25f9066f91d4411090", size = 162045, upload-time = "2025-10-14T04:41:44.821Z" },
- { url = "https://files.pythonhosted.org/packages/df/c5/d1be898bf0dc3ef9030c3825e5d3b83f2c528d207d246cbabe245966808d/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:2b7d8f6c26245217bd2ad053761201e9f9680f8ce52f0fcd8d0755aeae5b2152", size = 149687, upload-time = "2025-10-14T04:41:46.442Z" },
- { url = "https://files.pythonhosted.org/packages/a5/42/90c1f7b9341eef50c8a1cb3f098ac43b0508413f33affd762855f67a410e/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:799a7a5e4fb2d5898c60b640fd4981d6a25f1c11790935a44ce38c54e985f828", size = 160014, upload-time = "2025-10-14T04:41:47.631Z" },
- { url = "https://files.pythonhosted.org/packages/76/be/4d3ee471e8145d12795ab655ece37baed0929462a86e72372fd25859047c/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:99ae2cffebb06e6c22bdc25801d7b30f503cc87dbd283479e7b606f70aff57ec", size = 154044, upload-time = "2025-10-14T04:41:48.81Z" },
- { url = "https://files.pythonhosted.org/packages/b0/6f/8f7af07237c34a1defe7defc565a9bc1807762f672c0fde711a4b22bf9c0/charset_normalizer-3.4.4-cp314-cp314-win32.whl", hash = "sha256:f9d332f8c2a2fcbffe1378594431458ddbef721c1769d78e2cbc06280d8155f9", size = 99940, upload-time = "2025-10-14T04:41:49.946Z" },
- { url = "https://files.pythonhosted.org/packages/4b/51/8ade005e5ca5b0d80fb4aff72a3775b325bdc3d27408c8113811a7cbe640/charset_normalizer-3.4.4-cp314-cp314-win_amd64.whl", hash = "sha256:8a6562c3700cce886c5be75ade4a5db4214fda19fede41d9792d100288d8f94c", size = 107104, upload-time = "2025-10-14T04:41:51.051Z" },
- { url = "https://files.pythonhosted.org/packages/da/5f/6b8f83a55bb8278772c5ae54a577f3099025f9ade59d0136ac24a0df4bde/charset_normalizer-3.4.4-cp314-cp314-win_arm64.whl", hash = "sha256:de00632ca48df9daf77a2c65a484531649261ec9f25489917f09e455cb09ddb2", size = 100743, upload-time = "2025-10-14T04:41:52.122Z" },
- { url = "https://files.pythonhosted.org/packages/0a/4c/925909008ed5a988ccbb72dcc897407e5d6d3bd72410d69e051fc0c14647/charset_normalizer-3.4.4-py3-none-any.whl", hash = "sha256:7a32c560861a02ff789ad905a2fe94e3f840803362c84fecf1851cb4cf3dc37f", size = 53402, upload-time = "2025-10-14T04:42:31.76Z" },
-]
-
-[[package]]
-name = "click"
-version = "8.3.1"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "colorama", marker = "sys_platform == 'win32'" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/3d/fa/656b739db8587d7b5dfa22e22ed02566950fbfbcdc20311993483657a5c0/click-8.3.1.tar.gz", hash = "sha256:12ff4785d337a1bb490bb7e9c2b1ee5da3112e94a8622f26a6c77f5d2fc6842a", size = 295065, upload-time = "2025-11-15T20:45:42.706Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/98/78/01c019cdb5d6498122777c1a43056ebb3ebfeef2076d9d026bfe15583b2b/click-8.3.1-py3-none-any.whl", hash = "sha256:981153a64e25f12d547d3426c367a4857371575ee7ad18df2a6183ab0545b2a6", size = 108274, upload-time = "2025-11-15T20:45:41.139Z" },
-]
-
-[[package]]
-name = "colorama"
-version = "0.4.6"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697, upload-time = "2022-10-25T02:36:22.414Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload-time = "2022-10-25T02:36:20.889Z" },
-]
-
-[[package]]
-name = "datasets"
-version = "3.6.0"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "dill" },
- { name = "filelock" },
- { name = "fsspec", extra = ["http"] },
- { name = "huggingface-hub" },
- { name = "multiprocess" },
- { name = "numpy" },
- { name = "packaging" },
- { name = "pandas" },
- { name = "pyarrow" },
- { name = "pyyaml" },
- { name = "requests" },
- { name = "tqdm" },
- { name = "xxhash" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/1a/89/d3d6fef58a488f8569c82fd293ab7cbd4250244d67f425dcae64c63800ea/datasets-3.6.0.tar.gz", hash = "sha256:1b2bf43b19776e2787e181cfd329cb0ca1a358ea014780c3581e0f276375e041", size = 569336, upload-time = "2025-05-07T15:15:02.659Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/20/34/a08b0ee99715eaba118cbe19a71f7b5e2425c2718ef96007c325944a1152/datasets-3.6.0-py3-none-any.whl", hash = "sha256:25000c4a2c0873a710df127d08a202a06eab7bf42441a6bc278b499c2f72cd1b", size = 491546, upload-time = "2025-05-07T15:14:59.742Z" },
-]
-
-[package.optional-dependencies]
-s3 = [
- { name = "s3fs" },
-]
-
-[[package]]
-name = "dill"
-version = "0.3.8"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/17/4d/ac7ffa80c69ea1df30a8aa11b3578692a5118e7cd1aa157e3ef73b092d15/dill-0.3.8.tar.gz", hash = "sha256:3ebe3c479ad625c4553aca177444d89b486b1d84982eeacded644afc0cf797ca", size = 184847, upload-time = "2024-01-27T23:42:16.145Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/c9/7a/cef76fd8438a42f96db64ddaa85280485a9c395e7df3db8158cfec1eee34/dill-0.3.8-py3-none-any.whl", hash = "sha256:c36ca9ffb54365bdd2f8eb3eff7d2a21237f8452b57ace88b1ac615b7e815bd7", size = 116252, upload-time = "2024-01-27T23:42:14.239Z" },
-]
-
-[[package]]
-name = "fev"
-version = "0.7.0"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "datasets", extra = ["s3"] },
- { name = "numpy" },
- { name = "pydantic" },
- { name = "scipy" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/61/0d/f6959e92a96a5602ddadc2f1cd7cdd4eb3fe24ebc947fda5677d0ed7671e/fev-0.7.0.tar.gz", hash = "sha256:d1bb684da28db29887211d78e386f9ef3114a312ebb7d33ffcdbed9019eb9672", size = 71934, upload-time = "2026-01-15T09:28:09.206Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/ba/aa/e3e808a7f14393ab5a9eec807ac39cf8fde54dc7a513950084b4557ac534/fev-0.7.0-py3-none-any.whl", hash = "sha256:a71754b89f3fe36cfc8e53eecc3f26b722cfff6c8d1fe01b9ba099f8a0aec840", size = 42676, upload-time = "2026-01-15T09:28:08.179Z" },
-]
-
-[[package]]
-name = "filelock"
-version = "3.20.3"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/1d/65/ce7f1b70157833bf3cb851b556a37d4547ceafc158aa9b34b36782f23696/filelock-3.20.3.tar.gz", hash = "sha256:18c57ee915c7ec61cff0ecf7f0f869936c7c30191bb0cf406f1341778d0834e1", size = 19485, upload-time = "2026-01-09T17:55:05.421Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/b5/36/7fb70f04bf00bc646cd5bb45aa9eddb15e19437a28b8fb2b4a5249fac770/filelock-3.20.3-py3-none-any.whl", hash = "sha256:4b0dda527ee31078689fc205ec4f1c1bf7d56cf88b6dc9426c4f230e46c2dce1", size = 16701, upload-time = "2026-01-09T17:55:04.334Z" },
-]
-
-[[package]]
-name = "frozenlist"
-version = "1.8.0"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/2d/f5/c831fac6cc817d26fd54c7eaccd04ef7e0288806943f7cc5bbf69f3ac1f0/frozenlist-1.8.0.tar.gz", hash = "sha256:3ede829ed8d842f6cd48fc7081d7a41001a56f1f38603f9d49bf3020d59a31ad", size = 45875, upload-time = "2025-10-06T05:38:17.865Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/bc/03/077f869d540370db12165c0aa51640a873fb661d8b315d1d4d67b284d7ac/frozenlist-1.8.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:09474e9831bc2b2199fad6da3c14c7b0fbdd377cce9d3d77131be28906cb7d84", size = 86912, upload-time = "2025-10-06T05:35:45.98Z" },
- { url = "https://files.pythonhosted.org/packages/df/b5/7610b6bd13e4ae77b96ba85abea1c8cb249683217ef09ac9e0ae93f25a91/frozenlist-1.8.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:17c883ab0ab67200b5f964d2b9ed6b00971917d5d8a92df149dc2c9779208ee9", size = 50046, upload-time = "2025-10-06T05:35:47.009Z" },
- { url = "https://files.pythonhosted.org/packages/6e/ef/0e8f1fe32f8a53dd26bdd1f9347efe0778b0fddf62789ea683f4cc7d787d/frozenlist-1.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:fa47e444b8ba08fffd1c18e8cdb9a75db1b6a27f17507522834ad13ed5922b93", size = 50119, upload-time = "2025-10-06T05:35:48.38Z" },
- { url = "https://files.pythonhosted.org/packages/11/b1/71a477adc7c36e5fb628245dfbdea2166feae310757dea848d02bd0689fd/frozenlist-1.8.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:2552f44204b744fba866e573be4c1f9048d6a324dfe14475103fd51613eb1d1f", size = 231067, upload-time = "2025-10-06T05:35:49.97Z" },
- { url = "https://files.pythonhosted.org/packages/45/7e/afe40eca3a2dc19b9904c0f5d7edfe82b5304cb831391edec0ac04af94c2/frozenlist-1.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:957e7c38f250991e48a9a73e6423db1bb9dd14e722a10f6b8bb8e16a0f55f695", size = 233160, upload-time = "2025-10-06T05:35:51.729Z" },
- { url = "https://files.pythonhosted.org/packages/a6/aa/7416eac95603ce428679d273255ffc7c998d4132cfae200103f164b108aa/frozenlist-1.8.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:8585e3bb2cdea02fc88ffa245069c36555557ad3609e83be0ec71f54fd4abb52", size = 228544, upload-time = "2025-10-06T05:35:53.246Z" },
- { url = "https://files.pythonhosted.org/packages/8b/3d/2a2d1f683d55ac7e3875e4263d28410063e738384d3adc294f5ff3d7105e/frozenlist-1.8.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:edee74874ce20a373d62dc28b0b18b93f645633c2943fd90ee9d898550770581", size = 243797, upload-time = "2025-10-06T05:35:54.497Z" },
- { url = "https://files.pythonhosted.org/packages/78/1e/2d5565b589e580c296d3bb54da08d206e797d941a83a6fdea42af23be79c/frozenlist-1.8.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:c9a63152fe95756b85f31186bddf42e4c02c6321207fd6601a1c89ebac4fe567", size = 247923, upload-time = "2025-10-06T05:35:55.861Z" },
- { url = "https://files.pythonhosted.org/packages/aa/c3/65872fcf1d326a7f101ad4d86285c403c87be7d832b7470b77f6d2ed5ddc/frozenlist-1.8.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b6db2185db9be0a04fecf2f241c70b63b1a242e2805be291855078f2b404dd6b", size = 230886, upload-time = "2025-10-06T05:35:57.399Z" },
- { url = "https://files.pythonhosted.org/packages/a0/76/ac9ced601d62f6956f03cc794f9e04c81719509f85255abf96e2510f4265/frozenlist-1.8.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:f4be2e3d8bc8aabd566f8d5b8ba7ecc09249d74ba3c9ed52e54dc23a293f0b92", size = 245731, upload-time = "2025-10-06T05:35:58.563Z" },
- { url = "https://files.pythonhosted.org/packages/b9/49/ecccb5f2598daf0b4a1415497eba4c33c1e8ce07495eb07d2860c731b8d5/frozenlist-1.8.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:c8d1634419f39ea6f5c427ea2f90ca85126b54b50837f31497f3bf38266e853d", size = 241544, upload-time = "2025-10-06T05:35:59.719Z" },
- { url = "https://files.pythonhosted.org/packages/53/4b/ddf24113323c0bbcc54cb38c8b8916f1da7165e07b8e24a717b4a12cbf10/frozenlist-1.8.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:1a7fa382a4a223773ed64242dbe1c9c326ec09457e6b8428efb4118c685c3dfd", size = 241806, upload-time = "2025-10-06T05:36:00.959Z" },
- { url = "https://files.pythonhosted.org/packages/a7/fb/9b9a084d73c67175484ba2789a59f8eebebd0827d186a8102005ce41e1ba/frozenlist-1.8.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:11847b53d722050808926e785df837353bd4d75f1d494377e59b23594d834967", size = 229382, upload-time = "2025-10-06T05:36:02.22Z" },
- { url = "https://files.pythonhosted.org/packages/95/a3/c8fb25aac55bf5e12dae5c5aa6a98f85d436c1dc658f21c3ac73f9fa95e5/frozenlist-1.8.0-cp311-cp311-win32.whl", hash = "sha256:27c6e8077956cf73eadd514be8fb04d77fc946a7fe9f7fe167648b0b9085cc25", size = 39647, upload-time = "2025-10-06T05:36:03.409Z" },
- { url = "https://files.pythonhosted.org/packages/0a/f5/603d0d6a02cfd4c8f2a095a54672b3cf967ad688a60fb9faf04fc4887f65/frozenlist-1.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:ac913f8403b36a2c8610bbfd25b8013488533e71e62b4b4adce9c86c8cea905b", size = 44064, upload-time = "2025-10-06T05:36:04.368Z" },
- { url = "https://files.pythonhosted.org/packages/5d/16/c2c9ab44e181f043a86f9a8f84d5124b62dbcb3a02c0977ec72b9ac1d3e0/frozenlist-1.8.0-cp311-cp311-win_arm64.whl", hash = "sha256:d4d3214a0f8394edfa3e303136d0575eece0745ff2b47bd2cb2e66dd92d4351a", size = 39937, upload-time = "2025-10-06T05:36:05.669Z" },
- { url = "https://files.pythonhosted.org/packages/69/29/948b9aa87e75820a38650af445d2ef2b6b8a6fab1a23b6bb9e4ef0be2d59/frozenlist-1.8.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:78f7b9e5d6f2fdb88cdde9440dc147259b62b9d3b019924def9f6478be254ac1", size = 87782, upload-time = "2025-10-06T05:36:06.649Z" },
- { url = "https://files.pythonhosted.org/packages/64/80/4f6e318ee2a7c0750ed724fa33a4bdf1eacdc5a39a7a24e818a773cd91af/frozenlist-1.8.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:229bf37d2e4acdaf808fd3f06e854a4a7a3661e871b10dc1f8f1896a3b05f18b", size = 50594, upload-time = "2025-10-06T05:36:07.69Z" },
- { url = "https://files.pythonhosted.org/packages/2b/94/5c8a2b50a496b11dd519f4a24cb5496cf125681dd99e94c604ccdea9419a/frozenlist-1.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f833670942247a14eafbb675458b4e61c82e002a148f49e68257b79296e865c4", size = 50448, upload-time = "2025-10-06T05:36:08.78Z" },
- { url = "https://files.pythonhosted.org/packages/6a/bd/d91c5e39f490a49df14320f4e8c80161cfcce09f1e2cde1edd16a551abb3/frozenlist-1.8.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:494a5952b1c597ba44e0e78113a7266e656b9794eec897b19ead706bd7074383", size = 242411, upload-time = "2025-10-06T05:36:09.801Z" },
- { url = "https://files.pythonhosted.org/packages/8f/83/f61505a05109ef3293dfb1ff594d13d64a2324ac3482be2cedc2be818256/frozenlist-1.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:96f423a119f4777a4a056b66ce11527366a8bb92f54e541ade21f2374433f6d4", size = 243014, upload-time = "2025-10-06T05:36:11.394Z" },
- { url = "https://files.pythonhosted.org/packages/d8/cb/cb6c7b0f7d4023ddda30cf56b8b17494eb3a79e3fda666bf735f63118b35/frozenlist-1.8.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:3462dd9475af2025c31cc61be6652dfa25cbfb56cbbf52f4ccfe029f38decaf8", size = 234909, upload-time = "2025-10-06T05:36:12.598Z" },
- { url = "https://files.pythonhosted.org/packages/31/c5/cd7a1f3b8b34af009fb17d4123c5a778b44ae2804e3ad6b86204255f9ec5/frozenlist-1.8.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c4c800524c9cd9bac5166cd6f55285957fcfc907db323e193f2afcd4d9abd69b", size = 250049, upload-time = "2025-10-06T05:36:14.065Z" },
- { url = "https://files.pythonhosted.org/packages/c0/01/2f95d3b416c584a1e7f0e1d6d31998c4a795f7544069ee2e0962a4b60740/frozenlist-1.8.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d6a5df73acd3399d893dafc71663ad22534b5aa4f94e8a2fabfe856c3c1b6a52", size = 256485, upload-time = "2025-10-06T05:36:15.39Z" },
- { url = "https://files.pythonhosted.org/packages/ce/03/024bf7720b3abaebcff6d0793d73c154237b85bdf67b7ed55e5e9596dc9a/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:405e8fe955c2280ce66428b3ca55e12b3c4e9c336fb2103a4937e891c69a4a29", size = 237619, upload-time = "2025-10-06T05:36:16.558Z" },
- { url = "https://files.pythonhosted.org/packages/69/fa/f8abdfe7d76b731f5d8bd217827cf6764d4f1d9763407e42717b4bed50a0/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:908bd3f6439f2fef9e85031b59fd4f1297af54415fb60e4254a95f75b3cab3f3", size = 250320, upload-time = "2025-10-06T05:36:17.821Z" },
- { url = "https://files.pythonhosted.org/packages/f5/3c/b051329f718b463b22613e269ad72138cc256c540f78a6de89452803a47d/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:294e487f9ec720bd8ffcebc99d575f7eff3568a08a253d1ee1a0378754b74143", size = 246820, upload-time = "2025-10-06T05:36:19.046Z" },
- { url = "https://files.pythonhosted.org/packages/0f/ae/58282e8f98e444b3f4dd42448ff36fa38bef29e40d40f330b22e7108f565/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:74c51543498289c0c43656701be6b077f4b265868fa7f8a8859c197006efb608", size = 250518, upload-time = "2025-10-06T05:36:20.763Z" },
- { url = "https://files.pythonhosted.org/packages/8f/96/007e5944694d66123183845a106547a15944fbbb7154788cbf7272789536/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:776f352e8329135506a1d6bf16ac3f87bc25b28e765949282dcc627af36123aa", size = 239096, upload-time = "2025-10-06T05:36:22.129Z" },
- { url = "https://files.pythonhosted.org/packages/66/bb/852b9d6db2fa40be96f29c0d1205c306288f0684df8fd26ca1951d461a56/frozenlist-1.8.0-cp312-cp312-win32.whl", hash = "sha256:433403ae80709741ce34038da08511d4a77062aa924baf411ef73d1146e74faf", size = 39985, upload-time = "2025-10-06T05:36:23.661Z" },
- { url = "https://files.pythonhosted.org/packages/b8/af/38e51a553dd66eb064cdf193841f16f077585d4d28394c2fa6235cb41765/frozenlist-1.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:34187385b08f866104f0c0617404c8eb08165ab1272e884abc89c112e9c00746", size = 44591, upload-time = "2025-10-06T05:36:24.958Z" },
- { url = "https://files.pythonhosted.org/packages/a7/06/1dc65480ab147339fecc70797e9c2f69d9cea9cf38934ce08df070fdb9cb/frozenlist-1.8.0-cp312-cp312-win_arm64.whl", hash = "sha256:fe3c58d2f5db5fbd18c2987cba06d51b0529f52bc3a6cdc33d3f4eab725104bd", size = 40102, upload-time = "2025-10-06T05:36:26.333Z" },
- { url = "https://files.pythonhosted.org/packages/2d/40/0832c31a37d60f60ed79e9dfb5a92e1e2af4f40a16a29abcc7992af9edff/frozenlist-1.8.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8d92f1a84bb12d9e56f818b3a746f3efba93c1b63c8387a73dde655e1e42282a", size = 85717, upload-time = "2025-10-06T05:36:27.341Z" },
- { url = "https://files.pythonhosted.org/packages/30/ba/b0b3de23f40bc55a7057bd38434e25c34fa48e17f20ee273bbde5e0650f3/frozenlist-1.8.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:96153e77a591c8adc2ee805756c61f59fef4cf4073a9275ee86fe8cba41241f7", size = 49651, upload-time = "2025-10-06T05:36:28.855Z" },
- { url = "https://files.pythonhosted.org/packages/0c/ab/6e5080ee374f875296c4243c381bbdef97a9ac39c6e3ce1d5f7d42cb78d6/frozenlist-1.8.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f21f00a91358803399890ab167098c131ec2ddd5f8f5fd5fe9c9f2c6fcd91e40", size = 49417, upload-time = "2025-10-06T05:36:29.877Z" },
- { url = "https://files.pythonhosted.org/packages/d5/4e/e4691508f9477ce67da2015d8c00acd751e6287739123113a9fca6f1604e/frozenlist-1.8.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:fb30f9626572a76dfe4293c7194a09fb1fe93ba94c7d4f720dfae3b646b45027", size = 234391, upload-time = "2025-10-06T05:36:31.301Z" },
- { url = "https://files.pythonhosted.org/packages/40/76/c202df58e3acdf12969a7895fd6f3bc016c642e6726aa63bd3025e0fc71c/frozenlist-1.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:eaa352d7047a31d87dafcacbabe89df0aa506abb5b1b85a2fb91bc3faa02d822", size = 233048, upload-time = "2025-10-06T05:36:32.531Z" },
- { url = "https://files.pythonhosted.org/packages/f9/c0/8746afb90f17b73ca5979c7a3958116e105ff796e718575175319b5bb4ce/frozenlist-1.8.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:03ae967b4e297f58f8c774c7eabcce57fe3c2434817d4385c50661845a058121", size = 226549, upload-time = "2025-10-06T05:36:33.706Z" },
- { url = "https://files.pythonhosted.org/packages/7e/eb/4c7eefc718ff72f9b6c4893291abaae5fbc0c82226a32dcd8ef4f7a5dbef/frozenlist-1.8.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f6292f1de555ffcc675941d65fffffb0a5bcd992905015f85d0592201793e0e5", size = 239833, upload-time = "2025-10-06T05:36:34.947Z" },
- { url = "https://files.pythonhosted.org/packages/c2/4e/e5c02187cf704224f8b21bee886f3d713ca379535f16893233b9d672ea71/frozenlist-1.8.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:29548f9b5b5e3460ce7378144c3010363d8035cea44bc0bf02d57f5a685e084e", size = 245363, upload-time = "2025-10-06T05:36:36.534Z" },
- { url = "https://files.pythonhosted.org/packages/1f/96/cb85ec608464472e82ad37a17f844889c36100eed57bea094518bf270692/frozenlist-1.8.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ec3cc8c5d4084591b4237c0a272cc4f50a5b03396a47d9caaf76f5d7b38a4f11", size = 229314, upload-time = "2025-10-06T05:36:38.582Z" },
- { url = "https://files.pythonhosted.org/packages/5d/6f/4ae69c550e4cee66b57887daeebe006fe985917c01d0fff9caab9883f6d0/frozenlist-1.8.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:517279f58009d0b1f2e7c1b130b377a349405da3f7621ed6bfae50b10adf20c1", size = 243365, upload-time = "2025-10-06T05:36:40.152Z" },
- { url = "https://files.pythonhosted.org/packages/7a/58/afd56de246cf11780a40a2c28dc7cbabbf06337cc8ddb1c780a2d97e88d8/frozenlist-1.8.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:db1e72ede2d0d7ccb213f218df6a078a9c09a7de257c2fe8fcef16d5925230b1", size = 237763, upload-time = "2025-10-06T05:36:41.355Z" },
- { url = "https://files.pythonhosted.org/packages/cb/36/cdfaf6ed42e2644740d4a10452d8e97fa1c062e2a8006e4b09f1b5fd7d63/frozenlist-1.8.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:b4dec9482a65c54a5044486847b8a66bf10c9cb4926d42927ec4e8fd5db7fed8", size = 240110, upload-time = "2025-10-06T05:36:42.716Z" },
- { url = "https://files.pythonhosted.org/packages/03/a8/9ea226fbefad669f11b52e864c55f0bd57d3c8d7eb07e9f2e9a0b39502e1/frozenlist-1.8.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:21900c48ae04d13d416f0e1e0c4d81f7931f73a9dfa0b7a8746fb2fe7dd970ed", size = 233717, upload-time = "2025-10-06T05:36:44.251Z" },
- { url = "https://files.pythonhosted.org/packages/1e/0b/1b5531611e83ba7d13ccc9988967ea1b51186af64c42b7a7af465dcc9568/frozenlist-1.8.0-cp313-cp313-win32.whl", hash = "sha256:8b7b94a067d1c504ee0b16def57ad5738701e4ba10cec90529f13fa03c833496", size = 39628, upload-time = "2025-10-06T05:36:45.423Z" },
- { url = "https://files.pythonhosted.org/packages/d8/cf/174c91dbc9cc49bc7b7aab74d8b734e974d1faa8f191c74af9b7e80848e6/frozenlist-1.8.0-cp313-cp313-win_amd64.whl", hash = "sha256:878be833caa6a3821caf85eb39c5ba92d28e85df26d57afb06b35b2efd937231", size = 43882, upload-time = "2025-10-06T05:36:46.796Z" },
- { url = "https://files.pythonhosted.org/packages/c1/17/502cd212cbfa96eb1388614fe39a3fc9ab87dbbe042b66f97acb57474834/frozenlist-1.8.0-cp313-cp313-win_arm64.whl", hash = "sha256:44389d135b3ff43ba8cc89ff7f51f5a0bb6b63d829c8300f79a2fe4fe61bcc62", size = 39676, upload-time = "2025-10-06T05:36:47.8Z" },
- { url = "https://files.pythonhosted.org/packages/d2/5c/3bbfaa920dfab09e76946a5d2833a7cbdf7b9b4a91c714666ac4855b88b4/frozenlist-1.8.0-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:e25ac20a2ef37e91c1b39938b591457666a0fa835c7783c3a8f33ea42870db94", size = 89235, upload-time = "2025-10-06T05:36:48.78Z" },
- { url = "https://files.pythonhosted.org/packages/d2/d6/f03961ef72166cec1687e84e8925838442b615bd0b8854b54923ce5b7b8a/frozenlist-1.8.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:07cdca25a91a4386d2e76ad992916a85038a9b97561bf7a3fd12d5d9ce31870c", size = 50742, upload-time = "2025-10-06T05:36:49.837Z" },
- { url = "https://files.pythonhosted.org/packages/1e/bb/a6d12b7ba4c3337667d0e421f7181c82dda448ce4e7ad7ecd249a16fa806/frozenlist-1.8.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:4e0c11f2cc6717e0a741f84a527c52616140741cd812a50422f83dc31749fb52", size = 51725, upload-time = "2025-10-06T05:36:50.851Z" },
- { url = "https://files.pythonhosted.org/packages/bc/71/d1fed0ffe2c2ccd70b43714c6cab0f4188f09f8a67a7914a6b46ee30f274/frozenlist-1.8.0-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:b3210649ee28062ea6099cfda39e147fa1bc039583c8ee4481cb7811e2448c51", size = 284533, upload-time = "2025-10-06T05:36:51.898Z" },
- { url = "https://files.pythonhosted.org/packages/c9/1f/fb1685a7b009d89f9bf78a42d94461bc06581f6e718c39344754a5d9bada/frozenlist-1.8.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:581ef5194c48035a7de2aefc72ac6539823bb71508189e5de01d60c9dcd5fa65", size = 292506, upload-time = "2025-10-06T05:36:53.101Z" },
- { url = "https://files.pythonhosted.org/packages/e6/3b/b991fe1612703f7e0d05c0cf734c1b77aaf7c7d321df4572e8d36e7048c8/frozenlist-1.8.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:3ef2d026f16a2b1866e1d86fc4e1291e1ed8a387b2c333809419a2f8b3a77b82", size = 274161, upload-time = "2025-10-06T05:36:54.309Z" },
- { url = "https://files.pythonhosted.org/packages/ca/ec/c5c618767bcdf66e88945ec0157d7f6c4a1322f1473392319b7a2501ded7/frozenlist-1.8.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:5500ef82073f599ac84d888e3a8c1f77ac831183244bfd7f11eaa0289fb30714", size = 294676, upload-time = "2025-10-06T05:36:55.566Z" },
- { url = "https://files.pythonhosted.org/packages/7c/ce/3934758637d8f8a88d11f0585d6495ef54b2044ed6ec84492a91fa3b27aa/frozenlist-1.8.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:50066c3997d0091c411a66e710f4e11752251e6d2d73d70d8d5d4c76442a199d", size = 300638, upload-time = "2025-10-06T05:36:56.758Z" },
- { url = "https://files.pythonhosted.org/packages/fc/4f/a7e4d0d467298f42de4b41cbc7ddaf19d3cfeabaf9ff97c20c6c7ee409f9/frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:5c1c8e78426e59b3f8005e9b19f6ff46e5845895adbde20ece9218319eca6506", size = 283067, upload-time = "2025-10-06T05:36:57.965Z" },
- { url = "https://files.pythonhosted.org/packages/dc/48/c7b163063d55a83772b268e6d1affb960771b0e203b632cfe09522d67ea5/frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:eefdba20de0d938cec6a89bd4d70f346a03108a19b9df4248d3cf0d88f1b0f51", size = 292101, upload-time = "2025-10-06T05:36:59.237Z" },
- { url = "https://files.pythonhosted.org/packages/9f/d0/2366d3c4ecdc2fd391e0afa6e11500bfba0ea772764d631bbf82f0136c9d/frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:cf253e0e1c3ceb4aaff6df637ce033ff6535fb8c70a764a8f46aafd3d6ab798e", size = 289901, upload-time = "2025-10-06T05:37:00.811Z" },
- { url = "https://files.pythonhosted.org/packages/b8/94/daff920e82c1b70e3618a2ac39fbc01ae3e2ff6124e80739ce5d71c9b920/frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:032efa2674356903cd0261c4317a561a6850f3ac864a63fc1583147fb05a79b0", size = 289395, upload-time = "2025-10-06T05:37:02.115Z" },
- { url = "https://files.pythonhosted.org/packages/e3/20/bba307ab4235a09fdcd3cc5508dbabd17c4634a1af4b96e0f69bfe551ebd/frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:6da155091429aeba16851ecb10a9104a108bcd32f6c1642867eadaee401c1c41", size = 283659, upload-time = "2025-10-06T05:37:03.711Z" },
- { url = "https://files.pythonhosted.org/packages/fd/00/04ca1c3a7a124b6de4f8a9a17cc2fcad138b4608e7a3fc5877804b8715d7/frozenlist-1.8.0-cp313-cp313t-win32.whl", hash = "sha256:0f96534f8bfebc1a394209427d0f8a63d343c9779cda6fc25e8e121b5fd8555b", size = 43492, upload-time = "2025-10-06T05:37:04.915Z" },
- { url = "https://files.pythonhosted.org/packages/59/5e/c69f733a86a94ab10f68e496dc6b7e8bc078ebb415281d5698313e3af3a1/frozenlist-1.8.0-cp313-cp313t-win_amd64.whl", hash = "sha256:5d63a068f978fc69421fb0e6eb91a9603187527c86b7cd3f534a5b77a592b888", size = 48034, upload-time = "2025-10-06T05:37:06.343Z" },
- { url = "https://files.pythonhosted.org/packages/16/6c/be9d79775d8abe79b05fa6d23da99ad6e7763a1d080fbae7290b286093fd/frozenlist-1.8.0-cp313-cp313t-win_arm64.whl", hash = "sha256:bf0a7e10b077bf5fb9380ad3ae8ce20ef919a6ad93b4552896419ac7e1d8e042", size = 41749, upload-time = "2025-10-06T05:37:07.431Z" },
- { url = "https://files.pythonhosted.org/packages/f1/c8/85da824b7e7b9b6e7f7705b2ecaf9591ba6f79c1177f324c2735e41d36a2/frozenlist-1.8.0-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:cee686f1f4cadeb2136007ddedd0aaf928ab95216e7691c63e50a8ec066336d0", size = 86127, upload-time = "2025-10-06T05:37:08.438Z" },
- { url = "https://files.pythonhosted.org/packages/8e/e8/a1185e236ec66c20afd72399522f142c3724c785789255202d27ae992818/frozenlist-1.8.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:119fb2a1bd47307e899c2fac7f28e85b9a543864df47aa7ec9d3c1b4545f096f", size = 49698, upload-time = "2025-10-06T05:37:09.48Z" },
- { url = "https://files.pythonhosted.org/packages/a1/93/72b1736d68f03fda5fdf0f2180fb6caaae3894f1b854d006ac61ecc727ee/frozenlist-1.8.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:4970ece02dbc8c3a92fcc5228e36a3e933a01a999f7094ff7c23fbd2beeaa67c", size = 49749, upload-time = "2025-10-06T05:37:10.569Z" },
- { url = "https://files.pythonhosted.org/packages/a7/b2/fabede9fafd976b991e9f1b9c8c873ed86f202889b864756f240ce6dd855/frozenlist-1.8.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:cba69cb73723c3f329622e34bdbf5ce1f80c21c290ff04256cff1cd3c2036ed2", size = 231298, upload-time = "2025-10-06T05:37:11.993Z" },
- { url = "https://files.pythonhosted.org/packages/3a/3b/d9b1e0b0eed36e70477ffb8360c49c85c8ca8ef9700a4e6711f39a6e8b45/frozenlist-1.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:778a11b15673f6f1df23d9586f83c4846c471a8af693a22e066508b77d201ec8", size = 232015, upload-time = "2025-10-06T05:37:13.194Z" },
- { url = "https://files.pythonhosted.org/packages/dc/94/be719d2766c1138148564a3960fc2c06eb688da592bdc25adcf856101be7/frozenlist-1.8.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:0325024fe97f94c41c08872db482cf8ac4800d80e79222c6b0b7b162d5b13686", size = 225038, upload-time = "2025-10-06T05:37:14.577Z" },
- { url = "https://files.pythonhosted.org/packages/e4/09/6712b6c5465f083f52f50cf74167b92d4ea2f50e46a9eea0523d658454ae/frozenlist-1.8.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:97260ff46b207a82a7567b581ab4190bd4dfa09f4db8a8b49d1a958f6aa4940e", size = 240130, upload-time = "2025-10-06T05:37:15.781Z" },
- { url = "https://files.pythonhosted.org/packages/f8/d4/cd065cdcf21550b54f3ce6a22e143ac9e4836ca42a0de1022da8498eac89/frozenlist-1.8.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:54b2077180eb7f83dd52c40b2750d0a9f175e06a42e3213ce047219de902717a", size = 242845, upload-time = "2025-10-06T05:37:17.037Z" },
- { url = "https://files.pythonhosted.org/packages/62/c3/f57a5c8c70cd1ead3d5d5f776f89d33110b1addae0ab010ad774d9a44fb9/frozenlist-1.8.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:2f05983daecab868a31e1da44462873306d3cbfd76d1f0b5b69c473d21dbb128", size = 229131, upload-time = "2025-10-06T05:37:18.221Z" },
- { url = "https://files.pythonhosted.org/packages/6c/52/232476fe9cb64f0742f3fde2b7d26c1dac18b6d62071c74d4ded55e0ef94/frozenlist-1.8.0-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:33f48f51a446114bc5d251fb2954ab0164d5be02ad3382abcbfe07e2531d650f", size = 240542, upload-time = "2025-10-06T05:37:19.771Z" },
- { url = "https://files.pythonhosted.org/packages/5f/85/07bf3f5d0fb5414aee5f47d33c6f5c77bfe49aac680bfece33d4fdf6a246/frozenlist-1.8.0-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:154e55ec0655291b5dd1b8731c637ecdb50975a2ae70c606d100750a540082f7", size = 237308, upload-time = "2025-10-06T05:37:20.969Z" },
- { url = "https://files.pythonhosted.org/packages/11/99/ae3a33d5befd41ac0ca2cc7fd3aa707c9c324de2e89db0e0f45db9a64c26/frozenlist-1.8.0-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:4314debad13beb564b708b4a496020e5306c7333fa9a3ab90374169a20ffab30", size = 238210, upload-time = "2025-10-06T05:37:22.252Z" },
- { url = "https://files.pythonhosted.org/packages/b2/60/b1d2da22f4970e7a155f0adde9b1435712ece01b3cd45ba63702aea33938/frozenlist-1.8.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:073f8bf8becba60aa931eb3bc420b217bb7d5b8f4750e6f8b3be7f3da85d38b7", size = 231972, upload-time = "2025-10-06T05:37:23.5Z" },
- { url = "https://files.pythonhosted.org/packages/3f/ab/945b2f32de889993b9c9133216c068b7fcf257d8595a0ac420ac8677cab0/frozenlist-1.8.0-cp314-cp314-win32.whl", hash = "sha256:bac9c42ba2ac65ddc115d930c78d24ab8d4f465fd3fc473cdedfccadb9429806", size = 40536, upload-time = "2025-10-06T05:37:25.581Z" },
- { url = "https://files.pythonhosted.org/packages/59/ad/9caa9b9c836d9ad6f067157a531ac48b7d36499f5036d4141ce78c230b1b/frozenlist-1.8.0-cp314-cp314-win_amd64.whl", hash = "sha256:3e0761f4d1a44f1d1a47996511752cf3dcec5bbdd9cc2b4fe595caf97754b7a0", size = 44330, upload-time = "2025-10-06T05:37:26.928Z" },
- { url = "https://files.pythonhosted.org/packages/82/13/e6950121764f2676f43534c555249f57030150260aee9dcf7d64efda11dd/frozenlist-1.8.0-cp314-cp314-win_arm64.whl", hash = "sha256:d1eaff1d00c7751b7c6662e9c5ba6eb2c17a2306ba5e2a37f24ddf3cc953402b", size = 40627, upload-time = "2025-10-06T05:37:28.075Z" },
- { url = "https://files.pythonhosted.org/packages/c0/c7/43200656ecc4e02d3f8bc248df68256cd9572b3f0017f0a0c4e93440ae23/frozenlist-1.8.0-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:d3bb933317c52d7ea5004a1c442eef86f426886fba134ef8cf4226ea6ee1821d", size = 89238, upload-time = "2025-10-06T05:37:29.373Z" },
- { url = "https://files.pythonhosted.org/packages/d1/29/55c5f0689b9c0fb765055629f472c0de484dcaf0acee2f7707266ae3583c/frozenlist-1.8.0-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:8009897cdef112072f93a0efdce29cd819e717fd2f649ee3016efd3cd885a7ed", size = 50738, upload-time = "2025-10-06T05:37:30.792Z" },
- { url = "https://files.pythonhosted.org/packages/ba/7d/b7282a445956506fa11da8c2db7d276adcbf2b17d8bb8407a47685263f90/frozenlist-1.8.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:2c5dcbbc55383e5883246d11fd179782a9d07a986c40f49abe89ddf865913930", size = 51739, upload-time = "2025-10-06T05:37:32.127Z" },
- { url = "https://files.pythonhosted.org/packages/62/1c/3d8622e60d0b767a5510d1d3cf21065b9db874696a51ea6d7a43180a259c/frozenlist-1.8.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:39ecbc32f1390387d2aa4f5a995e465e9e2f79ba3adcac92d68e3e0afae6657c", size = 284186, upload-time = "2025-10-06T05:37:33.21Z" },
- { url = "https://files.pythonhosted.org/packages/2d/14/aa36d5f85a89679a85a1d44cd7a6657e0b1c75f61e7cad987b203d2daca8/frozenlist-1.8.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:92db2bf818d5cc8d9c1f1fc56b897662e24ea5adb36ad1f1d82875bd64e03c24", size = 292196, upload-time = "2025-10-06T05:37:36.107Z" },
- { url = "https://files.pythonhosted.org/packages/05/23/6bde59eb55abd407d34f77d39a5126fb7b4f109a3f611d3929f14b700c66/frozenlist-1.8.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:2dc43a022e555de94c3b68a4ef0b11c4f747d12c024a520c7101709a2144fb37", size = 273830, upload-time = "2025-10-06T05:37:37.663Z" },
- { url = "https://files.pythonhosted.org/packages/d2/3f/22cff331bfad7a8afa616289000ba793347fcd7bc275f3b28ecea2a27909/frozenlist-1.8.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:cb89a7f2de3602cfed448095bab3f178399646ab7c61454315089787df07733a", size = 294289, upload-time = "2025-10-06T05:37:39.261Z" },
- { url = "https://files.pythonhosted.org/packages/a4/89/5b057c799de4838b6c69aa82b79705f2027615e01be996d2486a69ca99c4/frozenlist-1.8.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:33139dc858c580ea50e7e60a1b0ea003efa1fd42e6ec7fdbad78fff65fad2fd2", size = 300318, upload-time = "2025-10-06T05:37:43.213Z" },
- { url = "https://files.pythonhosted.org/packages/30/de/2c22ab3eb2a8af6d69dc799e48455813bab3690c760de58e1bf43b36da3e/frozenlist-1.8.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:168c0969a329b416119507ba30b9ea13688fafffac1b7822802537569a1cb0ef", size = 282814, upload-time = "2025-10-06T05:37:45.337Z" },
- { url = "https://files.pythonhosted.org/packages/59/f7/970141a6a8dbd7f556d94977858cfb36fa9b66e0892c6dd780d2219d8cd8/frozenlist-1.8.0-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:28bd570e8e189d7f7b001966435f9dac6718324b5be2990ac496cf1ea9ddb7fe", size = 291762, upload-time = "2025-10-06T05:37:46.657Z" },
- { url = "https://files.pythonhosted.org/packages/c1/15/ca1adae83a719f82df9116d66f5bb28bb95557b3951903d39135620ef157/frozenlist-1.8.0-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:b2a095d45c5d46e5e79ba1e5b9cb787f541a8dee0433836cea4b96a2c439dcd8", size = 289470, upload-time = "2025-10-06T05:37:47.946Z" },
- { url = "https://files.pythonhosted.org/packages/ac/83/dca6dc53bf657d371fbc88ddeb21b79891e747189c5de990b9dfff2ccba1/frozenlist-1.8.0-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:eab8145831a0d56ec9c4139b6c3e594c7a83c2c8be25d5bcf2d86136a532287a", size = 289042, upload-time = "2025-10-06T05:37:49.499Z" },
- { url = "https://files.pythonhosted.org/packages/96/52/abddd34ca99be142f354398700536c5bd315880ed0a213812bc491cff5e4/frozenlist-1.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:974b28cf63cc99dfb2188d8d222bc6843656188164848c4f679e63dae4b0708e", size = 283148, upload-time = "2025-10-06T05:37:50.745Z" },
- { url = "https://files.pythonhosted.org/packages/af/d3/76bd4ed4317e7119c2b7f57c3f6934aba26d277acc6309f873341640e21f/frozenlist-1.8.0-cp314-cp314t-win32.whl", hash = "sha256:342c97bf697ac5480c0a7ec73cd700ecfa5a8a40ac923bd035484616efecc2df", size = 44676, upload-time = "2025-10-06T05:37:52.222Z" },
- { url = "https://files.pythonhosted.org/packages/89/76/c615883b7b521ead2944bb3480398cbb07e12b7b4e4d073d3752eb721558/frozenlist-1.8.0-cp314-cp314t-win_amd64.whl", hash = "sha256:06be8f67f39c8b1dc671f5d83aaefd3358ae5cdcf8314552c57e7ed3e6475bdd", size = 49451, upload-time = "2025-10-06T05:37:53.425Z" },
- { url = "https://files.pythonhosted.org/packages/e0/a3/5982da14e113d07b325230f95060e2169f5311b1017ea8af2a29b374c289/frozenlist-1.8.0-cp314-cp314t-win_arm64.whl", hash = "sha256:102e6314ca4da683dca92e3b1355490fed5f313b768500084fbe6371fddfdb79", size = 42507, upload-time = "2025-10-06T05:37:54.513Z" },
- { url = "https://files.pythonhosted.org/packages/9a/9a/e35b4a917281c0b8419d4207f4334c8e8c5dbf4f3f5f9ada73958d937dcc/frozenlist-1.8.0-py3-none-any.whl", hash = "sha256:0c18a16eab41e82c295618a77502e17b195883241c563b00f0aa5106fc4eaa0d", size = 13409, upload-time = "2025-10-06T05:38:16.721Z" },
-]
-
-[[package]]
-name = "fsspec"
-version = "2025.3.0"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/34/f4/5721faf47b8c499e776bc34c6a8fc17efdf7fdef0b00f398128bc5dcb4ac/fsspec-2025.3.0.tar.gz", hash = "sha256:a935fd1ea872591f2b5148907d103488fc523295e6c64b835cfad8c3eca44972", size = 298491, upload-time = "2025-03-07T21:47:56.461Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/56/53/eb690efa8513166adef3e0669afd31e95ffde69fb3c52ec2ac7223ed6018/fsspec-2025.3.0-py3-none-any.whl", hash = "sha256:efb87af3efa9103f94ca91a7f8cb7a4df91af9f74fc106c9c7ea0efd7277c1b3", size = 193615, upload-time = "2025-03-07T21:47:54.809Z" },
-]
-
-[package.optional-dependencies]
-http = [
- { name = "aiohttp" },
-]
-
-[[package]]
-name = "gitdb"
-version = "4.0.12"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "smmap" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/72/94/63b0fc47eb32792c7ba1fe1b694daec9a63620db1e313033d18140c2320a/gitdb-4.0.12.tar.gz", hash = "sha256:5ef71f855d191a3326fcfbc0d5da835f26b13fbcba60c32c21091c349ffdb571", size = 394684, upload-time = "2025-01-02T07:20:46.413Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl", hash = "sha256:67073e15955400952c6565cc3e707c554a4eea2e428946f7a4c162fab9bd9bcf", size = 62794, upload-time = "2025-01-02T07:20:43.624Z" },
-]
-
-[[package]]
-name = "gitpython"
-version = "3.1.46"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "gitdb" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/df/b5/59d16470a1f0dfe8c793f9ef56fd3826093fc52b3bd96d6b9d6c26c7e27b/gitpython-3.1.46.tar.gz", hash = "sha256:400124c7d0ef4ea03f7310ac2fbf7151e09ff97f2a3288d64a440c584a29c37f", size = 215371, upload-time = "2026-01-01T15:37:32.073Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/6a/09/e21df6aef1e1ffc0c816f0522ddc3f6dcded766c3261813131c78a704470/gitpython-3.1.46-py3-none-any.whl", hash = "sha256:79812ed143d9d25b6d176a10bb511de0f9c67b1fa641d82097b0ab90398a2058", size = 208620, upload-time = "2026-01-01T15:37:30.574Z" },
-]
-
-[[package]]
-name = "h11"
-version = "0.16.0"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/01/ee/02a2c011bdab74c6fb3c75474d40b3052059d95df7e73351460c8588d963/h11-0.16.0.tar.gz", hash = "sha256:4e35b956cf45792e4caa5885e69fba00bdbc6ffafbfa020300e549b208ee5ff1", size = 101250, upload-time = "2025-04-24T03:35:25.427Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl", hash = "sha256:63cf8bbe7522de3bf65932fda1d9c2772064ffb3dae62d55932da54b31cb6c86", size = 37515, upload-time = "2025-04-24T03:35:24.344Z" },
-]
-
-[[package]]
-name = "hf-leaderboard"
-version = "0.1.0"
-source = { virtual = "." }
-dependencies = [
- { name = "altair" },
- { name = "fev" },
- { name = "numpy" },
- { name = "pyarrow" },
- { name = "scipy" },
- { name = "streamlit" },
-]
-
-[package.metadata]
-requires-dist = [
- { name = "altair", specifier = ">=6.0.0" },
- { name = "fev", specifier = ">=0.7.0" },
- { name = "numpy", specifier = "<2.2" },
- { name = "pyarrow", specifier = "<21" },
- { name = "scipy", specifier = "<1.15" },
- { name = "streamlit", specifier = ">=1.53.1" },
-]
-
-[[package]]
-name = "hf-xet"
-version = "1.2.0"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/5e/6e/0f11bacf08a67f7fb5ee09740f2ca54163863b07b70d579356e9222ce5d8/hf_xet-1.2.0.tar.gz", hash = "sha256:a8c27070ca547293b6890c4bf389f713f80e8c478631432962bb7f4bc0bd7d7f", size = 506020, upload-time = "2025-10-24T19:04:32.129Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/9e/a5/85ef910a0aa034a2abcfadc360ab5ac6f6bc4e9112349bd40ca97551cff0/hf_xet-1.2.0-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:ceeefcd1b7aed4956ae8499e2199607765fbd1c60510752003b6cc0b8413b649", size = 2861870, upload-time = "2025-10-24T19:04:11.422Z" },
- { url = "https://files.pythonhosted.org/packages/ea/40/e2e0a7eb9a51fe8828ba2d47fe22a7e74914ea8a0db68a18c3aa7449c767/hf_xet-1.2.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:b70218dd548e9840224df5638fdc94bd033552963cfa97f9170829381179c813", size = 2717584, upload-time = "2025-10-24T19:04:09.586Z" },
- { url = "https://files.pythonhosted.org/packages/a5/7d/daf7f8bc4594fdd59a8a596f9e3886133fdc68e675292218a5e4c1b7e834/hf_xet-1.2.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7d40b18769bb9a8bc82a9ede575ce1a44c75eb80e7375a01d76259089529b5dc", size = 3315004, upload-time = "2025-10-24T19:04:00.314Z" },
- { url = "https://files.pythonhosted.org/packages/b1/ba/45ea2f605fbf6d81c8b21e4d970b168b18a53515923010c312c06cd83164/hf_xet-1.2.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:cd3a6027d59cfb60177c12d6424e31f4b5ff13d8e3a1247b3a584bf8977e6df5", size = 3222636, upload-time = "2025-10-24T19:03:58.111Z" },
- { url = "https://files.pythonhosted.org/packages/4a/1d/04513e3cab8f29ab8c109d309ddd21a2705afab9d52f2ba1151e0c14f086/hf_xet-1.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6de1fc44f58f6dd937956c8d304d8c2dea264c80680bcfa61ca4a15e7b76780f", size = 3408448, upload-time = "2025-10-24T19:04:20.951Z" },
- { url = "https://files.pythonhosted.org/packages/f0/7c/60a2756d7feec7387db3a1176c632357632fbe7849fce576c5559d4520c7/hf_xet-1.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:f182f264ed2acd566c514e45da9f2119110e48a87a327ca271027904c70c5832", size = 3503401, upload-time = "2025-10-24T19:04:22.549Z" },
- { url = "https://files.pythonhosted.org/packages/4e/64/48fffbd67fb418ab07451e4ce641a70de1c40c10a13e25325e24858ebe5a/hf_xet-1.2.0-cp313-cp313t-win_amd64.whl", hash = "sha256:293a7a3787e5c95d7be1857358a9130694a9c6021de3f27fa233f37267174382", size = 2900866, upload-time = "2025-10-24T19:04:33.461Z" },
- { url = "https://files.pythonhosted.org/packages/e2/51/f7e2caae42f80af886db414d4e9885fac959330509089f97cccb339c6b87/hf_xet-1.2.0-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:10bfab528b968c70e062607f663e21e34e2bba349e8038db546646875495179e", size = 2861861, upload-time = "2025-10-24T19:04:19.01Z" },
- { url = "https://files.pythonhosted.org/packages/6e/1d/a641a88b69994f9371bd347f1dd35e5d1e2e2460a2e350c8d5165fc62005/hf_xet-1.2.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:2a212e842647b02eb6a911187dc878e79c4aa0aa397e88dd3b26761676e8c1f8", size = 2717699, upload-time = "2025-10-24T19:04:17.306Z" },
- { url = "https://files.pythonhosted.org/packages/df/e0/e5e9bba7d15f0318955f7ec3f4af13f92e773fbb368c0b8008a5acbcb12f/hf_xet-1.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:30e06daccb3a7d4c065f34fc26c14c74f4653069bb2b194e7f18f17cbe9939c0", size = 3314885, upload-time = "2025-10-24T19:04:07.642Z" },
- { url = "https://files.pythonhosted.org/packages/21/90/b7fe5ff6f2b7b8cbdf1bd56145f863c90a5807d9758a549bf3d916aa4dec/hf_xet-1.2.0-cp314-cp314t-manylinux_2_28_aarch64.whl", hash = "sha256:29c8fc913a529ec0a91867ce3d119ac1aac966e098cf49501800c870328cc090", size = 3221550, upload-time = "2025-10-24T19:04:05.55Z" },
- { url = "https://files.pythonhosted.org/packages/6f/cb/73f276f0a7ce46cc6a6ec7d6c7d61cbfe5f2e107123d9bbd0193c355f106/hf_xet-1.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:66e159cbfcfbb29f920db2c09ed8b660eb894640d284f102ada929b6e3dc410a", size = 3408010, upload-time = "2025-10-24T19:04:28.598Z" },
- { url = "https://files.pythonhosted.org/packages/b8/1e/d642a12caa78171f4be64f7cd9c40e3ca5279d055d0873188a58c0f5fbb9/hf_xet-1.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:9c91d5ae931510107f148874e9e2de8a16052b6f1b3ca3c1b12f15ccb491390f", size = 3503264, upload-time = "2025-10-24T19:04:30.397Z" },
- { url = "https://files.pythonhosted.org/packages/17/b5/33764714923fa1ff922770f7ed18c2daae034d21ae6e10dbf4347c854154/hf_xet-1.2.0-cp314-cp314t-win_amd64.whl", hash = "sha256:210d577732b519ac6ede149d2f2f34049d44e8622bf14eb3d63bbcd2d4b332dc", size = 2901071, upload-time = "2025-10-24T19:04:37.463Z" },
- { url = "https://files.pythonhosted.org/packages/96/2d/22338486473df5923a9ab7107d375dbef9173c338ebef5098ef593d2b560/hf_xet-1.2.0-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:46740d4ac024a7ca9b22bebf77460ff43332868b661186a8e46c227fdae01848", size = 2866099, upload-time = "2025-10-24T19:04:15.366Z" },
- { url = "https://files.pythonhosted.org/packages/7f/8c/c5becfa53234299bc2210ba314eaaae36c2875e0045809b82e40a9544f0c/hf_xet-1.2.0-cp37-abi3-macosx_11_0_arm64.whl", hash = "sha256:27df617a076420d8845bea087f59303da8be17ed7ec0cd7ee3b9b9f579dff0e4", size = 2722178, upload-time = "2025-10-24T19:04:13.695Z" },
- { url = "https://files.pythonhosted.org/packages/9a/92/cf3ab0b652b082e66876d08da57fcc6fa2f0e6c70dfbbafbd470bb73eb47/hf_xet-1.2.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3651fd5bfe0281951b988c0facbe726aa5e347b103a675f49a3fa8144c7968fd", size = 3320214, upload-time = "2025-10-24T19:04:03.596Z" },
- { url = "https://files.pythonhosted.org/packages/46/92/3f7ec4a1b6a65bf45b059b6d4a5d38988f63e193056de2f420137e3c3244/hf_xet-1.2.0-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:d06fa97c8562fb3ee7a378dd9b51e343bc5bc8190254202c9771029152f5e08c", size = 3229054, upload-time = "2025-10-24T19:04:01.949Z" },
- { url = "https://files.pythonhosted.org/packages/0b/dd/7ac658d54b9fb7999a0ccb07ad863b413cbaf5cf172f48ebcd9497ec7263/hf_xet-1.2.0-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:4c1428c9ae73ec0939410ec73023c4f842927f39db09b063b9482dac5a3bb737", size = 3413812, upload-time = "2025-10-24T19:04:24.585Z" },
- { url = "https://files.pythonhosted.org/packages/92/68/89ac4e5b12a9ff6286a12174c8538a5930e2ed662091dd2572bbe0a18c8a/hf_xet-1.2.0-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:a55558084c16b09b5ed32ab9ed38421e2d87cf3f1f89815764d1177081b99865", size = 3508920, upload-time = "2025-10-24T19:04:26.927Z" },
- { url = "https://files.pythonhosted.org/packages/cb/44/870d44b30e1dcfb6a65932e3e1506c103a8a5aea9103c337e7a53180322c/hf_xet-1.2.0-cp37-abi3-win_amd64.whl", hash = "sha256:e6584a52253f72c9f52f9e549d5895ca7a471608495c4ecaa6cc73dba2b24d69", size = 2905735, upload-time = "2025-10-24T19:04:35.928Z" },
-]
-
-[[package]]
-name = "httpcore"
-version = "1.0.9"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "certifi" },
- { name = "h11" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/06/94/82699a10bca87a5556c9c59b5963f2d039dbd239f25bc2a63907a05a14cb/httpcore-1.0.9.tar.gz", hash = "sha256:6e34463af53fd2ab5d807f399a9b45ea31c3dfa2276f15a2c3f00afff6e176e8", size = 85484, upload-time = "2025-04-24T22:06:22.219Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl", hash = "sha256:2d400746a40668fc9dec9810239072b40b4484b640a8c38fd654a024c7a1bf55", size = 78784, upload-time = "2025-04-24T22:06:20.566Z" },
-]
-
-[[package]]
-name = "httpx"
-version = "0.28.1"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "anyio" },
- { name = "certifi" },
- { name = "httpcore" },
- { name = "idna" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/b1/df/48c586a5fe32a0f01324ee087459e112ebb7224f646c0b5023f5e79e9956/httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc", size = 141406, upload-time = "2024-12-06T15:37:23.222Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad", size = 73517, upload-time = "2024-12-06T15:37:21.509Z" },
-]
-
-[[package]]
-name = "huggingface-hub"
-version = "1.3.7"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "filelock" },
- { name = "fsspec" },
- { name = "hf-xet", marker = "platform_machine == 'AMD64' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'arm64' or platform_machine == 'x86_64'" },
- { name = "httpx" },
- { name = "packaging" },
- { name = "pyyaml" },
- { name = "shellingham" },
- { name = "tqdm" },
- { name = "typer-slim" },
- { name = "typing-extensions" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/6d/3f/352efd52136bfd8aa9280c6d4a445869226ae2ccd49ddad4f62e90cfd168/huggingface_hub-1.3.7.tar.gz", hash = "sha256:5f86cd48f27131cdbf2882699cbdf7a67dd4cbe89a81edfdc31211f42e4a5fd1", size = 627537, upload-time = "2026-02-02T10:40:10.61Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/54/89/bfbfde252d649fae8d5f09b14a2870e5672ed160c1a6629301b3e5302621/huggingface_hub-1.3.7-py3-none-any.whl", hash = "sha256:8155ce937038fa3d0cb4347d752708079bc85e6d9eb441afb44c84bcf48620d2", size = 536728, upload-time = "2026-02-02T10:40:08.274Z" },
-]
-
-[[package]]
-name = "idna"
-version = "3.11"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/6f/6d/0703ccc57f3a7233505399edb88de3cbd678da106337b9fcde432b65ed60/idna-3.11.tar.gz", hash = "sha256:795dafcc9c04ed0c1fb032c2aa73654d8e8c5023a7df64a53f39190ada629902", size = 194582, upload-time = "2025-10-12T14:55:20.501Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl", hash = "sha256:771a87f49d9defaf64091e6e6fe9c18d4833f140bd19464795bc32d966ca37ea", size = 71008, upload-time = "2025-10-12T14:55:18.883Z" },
-]
-
-[[package]]
-name = "jinja2"
-version = "3.1.6"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "markupsafe" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/df/bf/f7da0350254c0ed7c72f3e33cef02e048281fec7ecec5f032d4aac52226b/jinja2-3.1.6.tar.gz", hash = "sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d", size = 245115, upload-time = "2025-03-05T20:05:02.478Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl", hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67", size = 134899, upload-time = "2025-03-05T20:05:00.369Z" },
-]
-
-[[package]]
-name = "jmespath"
-version = "1.1.0"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/d3/59/322338183ecda247fb5d1763a6cbe46eff7222eaeebafd9fa65d4bf5cb11/jmespath-1.1.0.tar.gz", hash = "sha256:472c87d80f36026ae83c6ddd0f1d05d4e510134ed462851fd5f754c8c3cbb88d", size = 27377, upload-time = "2026-01-22T16:35:26.279Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/14/2f/967ba146e6d58cf6a652da73885f52fc68001525b4197effc174321d70b4/jmespath-1.1.0-py3-none-any.whl", hash = "sha256:a5663118de4908c91729bea0acadca56526eb2698e83de10cd116ae0f4e97c64", size = 20419, upload-time = "2026-01-22T16:35:24.919Z" },
-]
-
-[[package]]
-name = "jsonschema"
-version = "4.26.0"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "attrs" },
- { name = "jsonschema-specifications" },
- { name = "referencing" },
- { name = "rpds-py" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/b3/fc/e067678238fa451312d4c62bf6e6cf5ec56375422aee02f9cb5f909b3047/jsonschema-4.26.0.tar.gz", hash = "sha256:0c26707e2efad8aa1bfc5b7ce170f3fccc2e4918ff85989ba9ffa9facb2be326", size = 366583, upload-time = "2026-01-07T13:41:07.246Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/69/90/f63fb5873511e014207a475e2bb4e8b2e570d655b00ac19a9a0ca0a385ee/jsonschema-4.26.0-py3-none-any.whl", hash = "sha256:d489f15263b8d200f8387e64b4c3a75f06629559fb73deb8fdfb525f2dab50ce", size = 90630, upload-time = "2026-01-07T13:41:05.306Z" },
-]
-
-[[package]]
-name = "jsonschema-specifications"
-version = "2025.9.1"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "referencing" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/19/74/a633ee74eb36c44aa6d1095e7cc5569bebf04342ee146178e2d36600708b/jsonschema_specifications-2025.9.1.tar.gz", hash = "sha256:b540987f239e745613c7a9176f3edb72b832a4ac465cf02712288397832b5e8d", size = 32855, upload-time = "2025-09-08T01:34:59.186Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/41/45/1a4ed80516f02155c51f51e8cedb3c1902296743db0bbc66608a0db2814f/jsonschema_specifications-2025.9.1-py3-none-any.whl", hash = "sha256:98802fee3a11ee76ecaca44429fda8a41bff98b00a0f2838151b113f210cc6fe", size = 18437, upload-time = "2025-09-08T01:34:57.871Z" },
-]
-
-[[package]]
-name = "markupsafe"
-version = "3.0.3"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/7e/99/7690b6d4034fffd95959cbe0c02de8deb3098cc577c67bb6a24fe5d7caa7/markupsafe-3.0.3.tar.gz", hash = "sha256:722695808f4b6457b320fdc131280796bdceb04ab50fe1795cd540799ebe1698", size = 80313, upload-time = "2025-09-27T18:37:40.426Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/08/db/fefacb2136439fc8dd20e797950e749aa1f4997ed584c62cfb8ef7c2be0e/markupsafe-3.0.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1cc7ea17a6824959616c525620e387f6dd30fec8cb44f649e31712db02123dad", size = 11631, upload-time = "2025-09-27T18:36:18.185Z" },
- { url = "https://files.pythonhosted.org/packages/e1/2e/5898933336b61975ce9dc04decbc0a7f2fee78c30353c5efba7f2d6ff27a/markupsafe-3.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4bd4cd07944443f5a265608cc6aab442e4f74dff8088b0dfc8238647b8f6ae9a", size = 12058, upload-time = "2025-09-27T18:36:19.444Z" },
- { url = "https://files.pythonhosted.org/packages/1d/09/adf2df3699d87d1d8184038df46a9c80d78c0148492323f4693df54e17bb/markupsafe-3.0.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6b5420a1d9450023228968e7e6a9ce57f65d148ab56d2313fcd589eee96a7a50", size = 24287, upload-time = "2025-09-27T18:36:20.768Z" },
- { url = "https://files.pythonhosted.org/packages/30/ac/0273f6fcb5f42e314c6d8cd99effae6a5354604d461b8d392b5ec9530a54/markupsafe-3.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0bf2a864d67e76e5c9a34dc26ec616a66b9888e25e7b9460e1c76d3293bd9dbf", size = 22940, upload-time = "2025-09-27T18:36:22.249Z" },
- { url = "https://files.pythonhosted.org/packages/19/ae/31c1be199ef767124c042c6c3e904da327a2f7f0cd63a0337e1eca2967a8/markupsafe-3.0.3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:bc51efed119bc9cfdf792cdeaa4d67e8f6fcccab66ed4bfdd6bde3e59bfcbb2f", size = 21887, upload-time = "2025-09-27T18:36:23.535Z" },
- { url = "https://files.pythonhosted.org/packages/b2/76/7edcab99d5349a4532a459e1fe64f0b0467a3365056ae550d3bcf3f79e1e/markupsafe-3.0.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:068f375c472b3e7acbe2d5318dea141359e6900156b5b2ba06a30b169086b91a", size = 23692, upload-time = "2025-09-27T18:36:24.823Z" },
- { url = "https://files.pythonhosted.org/packages/a4/28/6e74cdd26d7514849143d69f0bf2399f929c37dc2b31e6829fd2045b2765/markupsafe-3.0.3-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:7be7b61bb172e1ed687f1754f8e7484f1c8019780f6f6b0786e76bb01c2ae115", size = 21471, upload-time = "2025-09-27T18:36:25.95Z" },
- { url = "https://files.pythonhosted.org/packages/62/7e/a145f36a5c2945673e590850a6f8014318d5577ed7e5920a4b3448e0865d/markupsafe-3.0.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f9e130248f4462aaa8e2552d547f36ddadbeaa573879158d721bbd33dfe4743a", size = 22923, upload-time = "2025-09-27T18:36:27.109Z" },
- { url = "https://files.pythonhosted.org/packages/0f/62/d9c46a7f5c9adbeeeda52f5b8d802e1094e9717705a645efc71b0913a0a8/markupsafe-3.0.3-cp311-cp311-win32.whl", hash = "sha256:0db14f5dafddbb6d9208827849fad01f1a2609380add406671a26386cdf15a19", size = 14572, upload-time = "2025-09-27T18:36:28.045Z" },
- { url = "https://files.pythonhosted.org/packages/83/8a/4414c03d3f891739326e1783338e48fb49781cc915b2e0ee052aa490d586/markupsafe-3.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:de8a88e63464af587c950061a5e6a67d3632e36df62b986892331d4620a35c01", size = 15077, upload-time = "2025-09-27T18:36:29.025Z" },
- { url = "https://files.pythonhosted.org/packages/35/73/893072b42e6862f319b5207adc9ae06070f095b358655f077f69a35601f0/markupsafe-3.0.3-cp311-cp311-win_arm64.whl", hash = "sha256:3b562dd9e9ea93f13d53989d23a7e775fdfd1066c33494ff43f5418bc8c58a5c", size = 13876, upload-time = "2025-09-27T18:36:29.954Z" },
- { url = "https://files.pythonhosted.org/packages/5a/72/147da192e38635ada20e0a2e1a51cf8823d2119ce8883f7053879c2199b5/markupsafe-3.0.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d53197da72cc091b024dd97249dfc7794d6a56530370992a5e1a08983ad9230e", size = 11615, upload-time = "2025-09-27T18:36:30.854Z" },
- { url = "https://files.pythonhosted.org/packages/9a/81/7e4e08678a1f98521201c3079f77db69fb552acd56067661f8c2f534a718/markupsafe-3.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1872df69a4de6aead3491198eaf13810b565bdbeec3ae2dc8780f14458ec73ce", size = 12020, upload-time = "2025-09-27T18:36:31.971Z" },
- { url = "https://files.pythonhosted.org/packages/1e/2c/799f4742efc39633a1b54a92eec4082e4f815314869865d876824c257c1e/markupsafe-3.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3a7e8ae81ae39e62a41ec302f972ba6ae23a5c5396c8e60113e9066ef893da0d", size = 24332, upload-time = "2025-09-27T18:36:32.813Z" },
- { url = "https://files.pythonhosted.org/packages/3c/2e/8d0c2ab90a8c1d9a24f0399058ab8519a3279d1bd4289511d74e909f060e/markupsafe-3.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d6dd0be5b5b189d31db7cda48b91d7e0a9795f31430b7f271219ab30f1d3ac9d", size = 22947, upload-time = "2025-09-27T18:36:33.86Z" },
- { url = "https://files.pythonhosted.org/packages/2c/54/887f3092a85238093a0b2154bd629c89444f395618842e8b0c41783898ea/markupsafe-3.0.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:94c6f0bb423f739146aec64595853541634bde58b2135f27f61c1ffd1cd4d16a", size = 21962, upload-time = "2025-09-27T18:36:35.099Z" },
- { url = "https://files.pythonhosted.org/packages/c9/2f/336b8c7b6f4a4d95e91119dc8521402461b74a485558d8f238a68312f11c/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:be8813b57049a7dc738189df53d69395eba14fb99345e0a5994914a3864c8a4b", size = 23760, upload-time = "2025-09-27T18:36:36.001Z" },
- { url = "https://files.pythonhosted.org/packages/32/43/67935f2b7e4982ffb50a4d169b724d74b62a3964bc1a9a527f5ac4f1ee2b/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:83891d0e9fb81a825d9a6d61e3f07550ca70a076484292a70fde82c4b807286f", size = 21529, upload-time = "2025-09-27T18:36:36.906Z" },
- { url = "https://files.pythonhosted.org/packages/89/e0/4486f11e51bbba8b0c041098859e869e304d1c261e59244baa3d295d47b7/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:77f0643abe7495da77fb436f50f8dab76dbc6e5fd25d39589a0f1fe6548bfa2b", size = 23015, upload-time = "2025-09-27T18:36:37.868Z" },
- { url = "https://files.pythonhosted.org/packages/2f/e1/78ee7a023dac597a5825441ebd17170785a9dab23de95d2c7508ade94e0e/markupsafe-3.0.3-cp312-cp312-win32.whl", hash = "sha256:d88b440e37a16e651bda4c7c2b930eb586fd15ca7406cb39e211fcff3bf3017d", size = 14540, upload-time = "2025-09-27T18:36:38.761Z" },
- { url = "https://files.pythonhosted.org/packages/aa/5b/bec5aa9bbbb2c946ca2733ef9c4ca91c91b6a24580193e891b5f7dbe8e1e/markupsafe-3.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:26a5784ded40c9e318cfc2bdb30fe164bdb8665ded9cd64d500a34fb42067b1c", size = 15105, upload-time = "2025-09-27T18:36:39.701Z" },
- { url = "https://files.pythonhosted.org/packages/e5/f1/216fc1bbfd74011693a4fd837e7026152e89c4bcf3e77b6692fba9923123/markupsafe-3.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:35add3b638a5d900e807944a078b51922212fb3dedb01633a8defc4b01a3c85f", size = 13906, upload-time = "2025-09-27T18:36:40.689Z" },
- { url = "https://files.pythonhosted.org/packages/38/2f/907b9c7bbba283e68f20259574b13d005c121a0fa4c175f9bed27c4597ff/markupsafe-3.0.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e1cf1972137e83c5d4c136c43ced9ac51d0e124706ee1c8aa8532c1287fa8795", size = 11622, upload-time = "2025-09-27T18:36:41.777Z" },
- { url = "https://files.pythonhosted.org/packages/9c/d9/5f7756922cdd676869eca1c4e3c0cd0df60ed30199ffd775e319089cb3ed/markupsafe-3.0.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:116bb52f642a37c115f517494ea5feb03889e04df47eeff5b130b1808ce7c219", size = 12029, upload-time = "2025-09-27T18:36:43.257Z" },
- { url = "https://files.pythonhosted.org/packages/00/07/575a68c754943058c78f30db02ee03a64b3c638586fba6a6dd56830b30a3/markupsafe-3.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:133a43e73a802c5562be9bbcd03d090aa5a1fe899db609c29e8c8d815c5f6de6", size = 24374, upload-time = "2025-09-27T18:36:44.508Z" },
- { url = "https://files.pythonhosted.org/packages/a9/21/9b05698b46f218fc0e118e1f8168395c65c8a2c750ae2bab54fc4bd4e0e8/markupsafe-3.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ccfcd093f13f0f0b7fdd0f198b90053bf7b2f02a3927a30e63f3ccc9df56b676", size = 22980, upload-time = "2025-09-27T18:36:45.385Z" },
- { url = "https://files.pythonhosted.org/packages/7f/71/544260864f893f18b6827315b988c146b559391e6e7e8f7252839b1b846a/markupsafe-3.0.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:509fa21c6deb7a7a273d629cf5ec029bc209d1a51178615ddf718f5918992ab9", size = 21990, upload-time = "2025-09-27T18:36:46.916Z" },
- { url = "https://files.pythonhosted.org/packages/c2/28/b50fc2f74d1ad761af2f5dcce7492648b983d00a65b8c0e0cb457c82ebbe/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a4afe79fb3de0b7097d81da19090f4df4f8d3a2b3adaa8764138aac2e44f3af1", size = 23784, upload-time = "2025-09-27T18:36:47.884Z" },
- { url = "https://files.pythonhosted.org/packages/ed/76/104b2aa106a208da8b17a2fb72e033a5a9d7073c68f7e508b94916ed47a9/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:795e7751525cae078558e679d646ae45574b47ed6e7771863fcc079a6171a0fc", size = 21588, upload-time = "2025-09-27T18:36:48.82Z" },
- { url = "https://files.pythonhosted.org/packages/b5/99/16a5eb2d140087ebd97180d95249b00a03aa87e29cc224056274f2e45fd6/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8485f406a96febb5140bfeca44a73e3ce5116b2501ac54fe953e488fb1d03b12", size = 23041, upload-time = "2025-09-27T18:36:49.797Z" },
- { url = "https://files.pythonhosted.org/packages/19/bc/e7140ed90c5d61d77cea142eed9f9c303f4c4806f60a1044c13e3f1471d0/markupsafe-3.0.3-cp313-cp313-win32.whl", hash = "sha256:bdd37121970bfd8be76c5fb069c7751683bdf373db1ed6c010162b2a130248ed", size = 14543, upload-time = "2025-09-27T18:36:51.584Z" },
- { url = "https://files.pythonhosted.org/packages/05/73/c4abe620b841b6b791f2edc248f556900667a5a1cf023a6646967ae98335/markupsafe-3.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:9a1abfdc021a164803f4d485104931fb8f8c1efd55bc6b748d2f5774e78b62c5", size = 15113, upload-time = "2025-09-27T18:36:52.537Z" },
- { url = "https://files.pythonhosted.org/packages/f0/3a/fa34a0f7cfef23cf9500d68cb7c32dd64ffd58a12b09225fb03dd37d5b80/markupsafe-3.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:7e68f88e5b8799aa49c85cd116c932a1ac15caaa3f5db09087854d218359e485", size = 13911, upload-time = "2025-09-27T18:36:53.513Z" },
- { url = "https://files.pythonhosted.org/packages/e4/d7/e05cd7efe43a88a17a37b3ae96e79a19e846f3f456fe79c57ca61356ef01/markupsafe-3.0.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:218551f6df4868a8d527e3062d0fb968682fe92054e89978594c28e642c43a73", size = 11658, upload-time = "2025-09-27T18:36:54.819Z" },
- { url = "https://files.pythonhosted.org/packages/99/9e/e412117548182ce2148bdeacdda3bb494260c0b0184360fe0d56389b523b/markupsafe-3.0.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3524b778fe5cfb3452a09d31e7b5adefeea8c5be1d43c4f810ba09f2ceb29d37", size = 12066, upload-time = "2025-09-27T18:36:55.714Z" },
- { url = "https://files.pythonhosted.org/packages/bc/e6/fa0ffcda717ef64a5108eaa7b4f5ed28d56122c9a6d70ab8b72f9f715c80/markupsafe-3.0.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4e885a3d1efa2eadc93c894a21770e4bc67899e3543680313b09f139e149ab19", size = 25639, upload-time = "2025-09-27T18:36:56.908Z" },
- { url = "https://files.pythonhosted.org/packages/96/ec/2102e881fe9d25fc16cb4b25d5f5cde50970967ffa5dddafdb771237062d/markupsafe-3.0.3-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8709b08f4a89aa7586de0aadc8da56180242ee0ada3999749b183aa23df95025", size = 23569, upload-time = "2025-09-27T18:36:57.913Z" },
- { url = "https://files.pythonhosted.org/packages/4b/30/6f2fce1f1f205fc9323255b216ca8a235b15860c34b6798f810f05828e32/markupsafe-3.0.3-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:b8512a91625c9b3da6f127803b166b629725e68af71f8184ae7e7d54686a56d6", size = 23284, upload-time = "2025-09-27T18:36:58.833Z" },
- { url = "https://files.pythonhosted.org/packages/58/47/4a0ccea4ab9f5dcb6f79c0236d954acb382202721e704223a8aafa38b5c8/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:9b79b7a16f7fedff2495d684f2b59b0457c3b493778c9eed31111be64d58279f", size = 24801, upload-time = "2025-09-27T18:36:59.739Z" },
- { url = "https://files.pythonhosted.org/packages/6a/70/3780e9b72180b6fecb83a4814d84c3bf4b4ae4bf0b19c27196104149734c/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:12c63dfb4a98206f045aa9563db46507995f7ef6d83b2f68eda65c307c6829eb", size = 22769, upload-time = "2025-09-27T18:37:00.719Z" },
- { url = "https://files.pythonhosted.org/packages/98/c5/c03c7f4125180fc215220c035beac6b9cb684bc7a067c84fc69414d315f5/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:8f71bc33915be5186016f675cd83a1e08523649b0e33efdb898db577ef5bb009", size = 23642, upload-time = "2025-09-27T18:37:01.673Z" },
- { url = "https://files.pythonhosted.org/packages/80/d6/2d1b89f6ca4bff1036499b1e29a1d02d282259f3681540e16563f27ebc23/markupsafe-3.0.3-cp313-cp313t-win32.whl", hash = "sha256:69c0b73548bc525c8cb9a251cddf1931d1db4d2258e9599c28c07ef3580ef354", size = 14612, upload-time = "2025-09-27T18:37:02.639Z" },
- { url = "https://files.pythonhosted.org/packages/2b/98/e48a4bfba0a0ffcf9925fe2d69240bfaa19c6f7507b8cd09c70684a53c1e/markupsafe-3.0.3-cp313-cp313t-win_amd64.whl", hash = "sha256:1b4b79e8ebf6b55351f0d91fe80f893b4743f104bff22e90697db1590e47a218", size = 15200, upload-time = "2025-09-27T18:37:03.582Z" },
- { url = "https://files.pythonhosted.org/packages/0e/72/e3cc540f351f316e9ed0f092757459afbc595824ca724cbc5a5d4263713f/markupsafe-3.0.3-cp313-cp313t-win_arm64.whl", hash = "sha256:ad2cf8aa28b8c020ab2fc8287b0f823d0a7d8630784c31e9ee5edea20f406287", size = 13973, upload-time = "2025-09-27T18:37:04.929Z" },
- { url = "https://files.pythonhosted.org/packages/33/8a/8e42d4838cd89b7dde187011e97fe6c3af66d8c044997d2183fbd6d31352/markupsafe-3.0.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:eaa9599de571d72e2daf60164784109f19978b327a3910d3e9de8c97b5b70cfe", size = 11619, upload-time = "2025-09-27T18:37:06.342Z" },
- { url = "https://files.pythonhosted.org/packages/b5/64/7660f8a4a8e53c924d0fa05dc3a55c9cee10bbd82b11c5afb27d44b096ce/markupsafe-3.0.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:c47a551199eb8eb2121d4f0f15ae0f923d31350ab9280078d1e5f12b249e0026", size = 12029, upload-time = "2025-09-27T18:37:07.213Z" },
- { url = "https://files.pythonhosted.org/packages/da/ef/e648bfd021127bef5fa12e1720ffed0c6cbb8310c8d9bea7266337ff06de/markupsafe-3.0.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f34c41761022dd093b4b6896d4810782ffbabe30f2d443ff5f083e0cbbb8c737", size = 24408, upload-time = "2025-09-27T18:37:09.572Z" },
- { url = "https://files.pythonhosted.org/packages/41/3c/a36c2450754618e62008bf7435ccb0f88053e07592e6028a34776213d877/markupsafe-3.0.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:457a69a9577064c05a97c41f4e65148652db078a3a509039e64d3467b9e7ef97", size = 23005, upload-time = "2025-09-27T18:37:10.58Z" },
- { url = "https://files.pythonhosted.org/packages/bc/20/b7fdf89a8456b099837cd1dc21974632a02a999ec9bf7ca3e490aacd98e7/markupsafe-3.0.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:e8afc3f2ccfa24215f8cb28dcf43f0113ac3c37c2f0f0806d8c70e4228c5cf4d", size = 22048, upload-time = "2025-09-27T18:37:11.547Z" },
- { url = "https://files.pythonhosted.org/packages/9a/a7/591f592afdc734f47db08a75793a55d7fbcc6902a723ae4cfbab61010cc5/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:ec15a59cf5af7be74194f7ab02d0f59a62bdcf1a537677ce67a2537c9b87fcda", size = 23821, upload-time = "2025-09-27T18:37:12.48Z" },
- { url = "https://files.pythonhosted.org/packages/7d/33/45b24e4f44195b26521bc6f1a82197118f74df348556594bd2262bda1038/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:0eb9ff8191e8498cca014656ae6b8d61f39da5f95b488805da4bb029cccbfbaf", size = 21606, upload-time = "2025-09-27T18:37:13.485Z" },
- { url = "https://files.pythonhosted.org/packages/ff/0e/53dfaca23a69fbfbbf17a4b64072090e70717344c52eaaaa9c5ddff1e5f0/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:2713baf880df847f2bece4230d4d094280f4e67b1e813eec43b4c0e144a34ffe", size = 23043, upload-time = "2025-09-27T18:37:14.408Z" },
- { url = "https://files.pythonhosted.org/packages/46/11/f333a06fc16236d5238bfe74daccbca41459dcd8d1fa952e8fbd5dccfb70/markupsafe-3.0.3-cp314-cp314-win32.whl", hash = "sha256:729586769a26dbceff69f7a7dbbf59ab6572b99d94576a5592625d5b411576b9", size = 14747, upload-time = "2025-09-27T18:37:15.36Z" },
- { url = "https://files.pythonhosted.org/packages/28/52/182836104b33b444e400b14f797212f720cbc9ed6ba34c800639d154e821/markupsafe-3.0.3-cp314-cp314-win_amd64.whl", hash = "sha256:bdc919ead48f234740ad807933cdf545180bfbe9342c2bb451556db2ed958581", size = 15341, upload-time = "2025-09-27T18:37:16.496Z" },
- { url = "https://files.pythonhosted.org/packages/6f/18/acf23e91bd94fd7b3031558b1f013adfa21a8e407a3fdb32745538730382/markupsafe-3.0.3-cp314-cp314-win_arm64.whl", hash = "sha256:5a7d5dc5140555cf21a6fefbdbf8723f06fcd2f63ef108f2854de715e4422cb4", size = 14073, upload-time = "2025-09-27T18:37:17.476Z" },
- { url = "https://files.pythonhosted.org/packages/3c/f0/57689aa4076e1b43b15fdfa646b04653969d50cf30c32a102762be2485da/markupsafe-3.0.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:1353ef0c1b138e1907ae78e2f6c63ff67501122006b0f9abad68fda5f4ffc6ab", size = 11661, upload-time = "2025-09-27T18:37:18.453Z" },
- { url = "https://files.pythonhosted.org/packages/89/c3/2e67a7ca217c6912985ec766c6393b636fb0c2344443ff9d91404dc4c79f/markupsafe-3.0.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:1085e7fbddd3be5f89cc898938f42c0b3c711fdcb37d75221de2666af647c175", size = 12069, upload-time = "2025-09-27T18:37:19.332Z" },
- { url = "https://files.pythonhosted.org/packages/f0/00/be561dce4e6ca66b15276e184ce4b8aec61fe83662cce2f7d72bd3249d28/markupsafe-3.0.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1b52b4fb9df4eb9ae465f8d0c228a00624de2334f216f178a995ccdcf82c4634", size = 25670, upload-time = "2025-09-27T18:37:20.245Z" },
- { url = "https://files.pythonhosted.org/packages/50/09/c419f6f5a92e5fadde27efd190eca90f05e1261b10dbd8cbcb39cd8ea1dc/markupsafe-3.0.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fed51ac40f757d41b7c48425901843666a6677e3e8eb0abcff09e4ba6e664f50", size = 23598, upload-time = "2025-09-27T18:37:21.177Z" },
- { url = "https://files.pythonhosted.org/packages/22/44/a0681611106e0b2921b3033fc19bc53323e0b50bc70cffdd19f7d679bb66/markupsafe-3.0.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:f190daf01f13c72eac4efd5c430a8de82489d9cff23c364c3ea822545032993e", size = 23261, upload-time = "2025-09-27T18:37:22.167Z" },
- { url = "https://files.pythonhosted.org/packages/5f/57/1b0b3f100259dc9fffe780cfb60d4be71375510e435efec3d116b6436d43/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:e56b7d45a839a697b5eb268c82a71bd8c7f6c94d6fd50c3d577fa39a9f1409f5", size = 24835, upload-time = "2025-09-27T18:37:23.296Z" },
- { url = "https://files.pythonhosted.org/packages/26/6a/4bf6d0c97c4920f1597cc14dd720705eca0bf7c787aebc6bb4d1bead5388/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:f3e98bb3798ead92273dc0e5fd0f31ade220f59a266ffd8a4f6065e0a3ce0523", size = 22733, upload-time = "2025-09-27T18:37:24.237Z" },
- { url = "https://files.pythonhosted.org/packages/14/c7/ca723101509b518797fedc2fdf79ba57f886b4aca8a7d31857ba3ee8281f/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:5678211cb9333a6468fb8d8be0305520aa073f50d17f089b5b4b477ea6e67fdc", size = 23672, upload-time = "2025-09-27T18:37:25.271Z" },
- { url = "https://files.pythonhosted.org/packages/fb/df/5bd7a48c256faecd1d36edc13133e51397e41b73bb77e1a69deab746ebac/markupsafe-3.0.3-cp314-cp314t-win32.whl", hash = "sha256:915c04ba3851909ce68ccc2b8e2cd691618c4dc4c4232fb7982bca3f41fd8c3d", size = 14819, upload-time = "2025-09-27T18:37:26.285Z" },
- { url = "https://files.pythonhosted.org/packages/1a/8a/0402ba61a2f16038b48b39bccca271134be00c5c9f0f623208399333c448/markupsafe-3.0.3-cp314-cp314t-win_amd64.whl", hash = "sha256:4faffd047e07c38848ce017e8725090413cd80cbc23d86e55c587bf979e579c9", size = 15426, upload-time = "2025-09-27T18:37:27.316Z" },
- { url = "https://files.pythonhosted.org/packages/70/bc/6f1c2f612465f5fa89b95bead1f44dcb607670fd42891d8fdcd5d039f4f4/markupsafe-3.0.3-cp314-cp314t-win_arm64.whl", hash = "sha256:32001d6a8fc98c8cb5c947787c5d08b0a50663d139f1305bac5885d98d9b40fa", size = 14146, upload-time = "2025-09-27T18:37:28.327Z" },
-]
-
-[[package]]
-name = "multidict"
-version = "6.7.1"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/1a/c2/c2d94cbe6ac1753f3fc980da97b3d930efe1da3af3c9f5125354436c073d/multidict-6.7.1.tar.gz", hash = "sha256:ec6652a1bee61c53a3e5776b6049172c53b6aaba34f18c9ad04f82712bac623d", size = 102010, upload-time = "2026-01-26T02:46:45.979Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/ce/f1/a90635c4f88fb913fbf4ce660b83b7445b7a02615bda034b2f8eb38fd597/multidict-6.7.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:7ff981b266af91d7b4b3793ca3382e53229088d193a85dfad6f5f4c27fc73e5d", size = 76626, upload-time = "2026-01-26T02:43:26.485Z" },
- { url = "https://files.pythonhosted.org/packages/a6/9b/267e64eaf6fc637a15b35f5de31a566634a2740f97d8d094a69d34f524a4/multidict-6.7.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:844c5bca0b5444adb44a623fb0a1310c2f4cd41f402126bb269cd44c9b3f3e1e", size = 44706, upload-time = "2026-01-26T02:43:27.607Z" },
- { url = "https://files.pythonhosted.org/packages/dd/a4/d45caf2b97b035c57267791ecfaafbd59c68212004b3842830954bb4b02e/multidict-6.7.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f2a0a924d4c2e9afcd7ec64f9de35fcd96915149b2216e1cb2c10a56df483855", size = 44356, upload-time = "2026-01-26T02:43:28.661Z" },
- { url = "https://files.pythonhosted.org/packages/fd/d2/0a36c8473f0cbaeadd5db6c8b72d15bbceeec275807772bfcd059bef487d/multidict-6.7.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:8be1802715a8e892c784c0197c2ace276ea52702a0ede98b6310c8f255a5afb3", size = 244355, upload-time = "2026-01-26T02:43:31.165Z" },
- { url = "https://files.pythonhosted.org/packages/5d/16/8c65be997fd7dd311b7d39c7b6e71a0cb449bad093761481eccbbe4b42a2/multidict-6.7.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2e2d2ed645ea29f31c4c7ea1552fcfd7cb7ba656e1eafd4134a6620c9f5fdd9e", size = 246433, upload-time = "2026-01-26T02:43:32.581Z" },
- { url = "https://files.pythonhosted.org/packages/01/fb/4dbd7e848d2799c6a026ec88ad39cf2b8416aa167fcc903baa55ecaa045c/multidict-6.7.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:95922cee9a778659e91db6497596435777bd25ed116701a4c034f8e46544955a", size = 225376, upload-time = "2026-01-26T02:43:34.417Z" },
- { url = "https://files.pythonhosted.org/packages/b6/8a/4a3a6341eac3830f6053062f8fbc9a9e54407c80755b3f05bc427295c2d0/multidict-6.7.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:6b83cabdc375ffaaa15edd97eb7c0c672ad788e2687004990074d7d6c9b140c8", size = 257365, upload-time = "2026-01-26T02:43:35.741Z" },
- { url = "https://files.pythonhosted.org/packages/f7/a2/dd575a69c1aa206e12d27d0770cdf9b92434b48a9ef0cd0d1afdecaa93c4/multidict-6.7.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:38fb49540705369bab8484db0689d86c0a33a0a9f2c1b197f506b71b4b6c19b0", size = 254747, upload-time = "2026-01-26T02:43:36.976Z" },
- { url = "https://files.pythonhosted.org/packages/5a/56/21b27c560c13822ed93133f08aa6372c53a8e067f11fbed37b4adcdac922/multidict-6.7.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:439cbebd499f92e9aa6793016a8acaa161dfa749ae86d20960189f5398a19144", size = 246293, upload-time = "2026-01-26T02:43:38.258Z" },
- { url = "https://files.pythonhosted.org/packages/5a/a4/23466059dc3854763423d0ad6c0f3683a379d97673b1b89ec33826e46728/multidict-6.7.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6d3bc717b6fe763b8be3f2bee2701d3c8eb1b2a8ae9f60910f1b2860c82b6c49", size = 242962, upload-time = "2026-01-26T02:43:40.034Z" },
- { url = "https://files.pythonhosted.org/packages/1f/67/51dd754a3524d685958001e8fa20a0f5f90a6a856e0a9dcabff69be3dbb7/multidict-6.7.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:619e5a1ac57986dbfec9f0b301d865dddf763696435e2962f6d9cf2fdff2bb71", size = 237360, upload-time = "2026-01-26T02:43:41.752Z" },
- { url = "https://files.pythonhosted.org/packages/64/3f/036dfc8c174934d4b55d86ff4f978e558b0e585cef70cfc1ad01adc6bf18/multidict-6.7.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:0b38ebffd9be37c1170d33bc0f36f4f262e0a09bc1aac1c34c7aa51a7293f0b3", size = 245940, upload-time = "2026-01-26T02:43:43.042Z" },
- { url = "https://files.pythonhosted.org/packages/3d/20/6214d3c105928ebc353a1c644a6ef1408bc5794fcb4f170bb524a3c16311/multidict-6.7.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:10ae39c9cfe6adedcdb764f5e8411d4a92b055e35573a2eaa88d3323289ef93c", size = 253502, upload-time = "2026-01-26T02:43:44.371Z" },
- { url = "https://files.pythonhosted.org/packages/b1/e2/c653bc4ae1be70a0f836b82172d643fcf1dade042ba2676ab08ec08bff0f/multidict-6.7.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:25167cc263257660290fba06b9318d2026e3c910be240a146e1f66dd114af2b0", size = 247065, upload-time = "2026-01-26T02:43:45.745Z" },
- { url = "https://files.pythonhosted.org/packages/c8/11/a854b4154cd3bd8b1fd375e8a8ca9d73be37610c361543d56f764109509b/multidict-6.7.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:128441d052254f42989ef98b7b6a6ecb1e6f708aa962c7984235316db59f50fa", size = 241870, upload-time = "2026-01-26T02:43:47.054Z" },
- { url = "https://files.pythonhosted.org/packages/13/bf/9676c0392309b5fdae322333d22a829715b570edb9baa8016a517b55b558/multidict-6.7.1-cp311-cp311-win32.whl", hash = "sha256:d62b7f64ffde3b99d06b707a280db04fb3855b55f5a06df387236051d0668f4a", size = 41302, upload-time = "2026-01-26T02:43:48.753Z" },
- { url = "https://files.pythonhosted.org/packages/c9/68/f16a3a8ba6f7b6dc92a1f19669c0810bd2c43fc5a02da13b1cbf8e253845/multidict-6.7.1-cp311-cp311-win_amd64.whl", hash = "sha256:bdbf9f3b332abd0cdb306e7c2113818ab1e922dc84b8f8fd06ec89ed2a19ab8b", size = 45981, upload-time = "2026-01-26T02:43:49.921Z" },
- { url = "https://files.pythonhosted.org/packages/ac/ad/9dd5305253fa00cd3c7555dbef69d5bf4133debc53b87ab8d6a44d411665/multidict-6.7.1-cp311-cp311-win_arm64.whl", hash = "sha256:b8c990b037d2fff2f4e33d3f21b9b531c5745b33a49a7d6dbe7a177266af44f6", size = 43159, upload-time = "2026-01-26T02:43:51.635Z" },
- { url = "https://files.pythonhosted.org/packages/8d/9c/f20e0e2cf80e4b2e4b1c365bf5fe104ee633c751a724246262db8f1a0b13/multidict-6.7.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:a90f75c956e32891a4eda3639ce6dd86e87105271f43d43442a3aedf3cddf172", size = 76893, upload-time = "2026-01-26T02:43:52.754Z" },
- { url = "https://files.pythonhosted.org/packages/fe/cf/18ef143a81610136d3da8193da9d80bfe1cb548a1e2d1c775f26b23d024a/multidict-6.7.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:3fccb473e87eaa1382689053e4a4618e7ba7b9b9b8d6adf2027ee474597128cd", size = 45456, upload-time = "2026-01-26T02:43:53.893Z" },
- { url = "https://files.pythonhosted.org/packages/a9/65/1caac9d4cd32e8433908683446eebc953e82d22b03d10d41a5f0fefe991b/multidict-6.7.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b0fa96985700739c4c7853a43c0b3e169360d6855780021bfc6d0f1ce7c123e7", size = 43872, upload-time = "2026-01-26T02:43:55.041Z" },
- { url = "https://files.pythonhosted.org/packages/cf/3b/d6bd75dc4f3ff7c73766e04e705b00ed6dbbaccf670d9e05a12b006f5a21/multidict-6.7.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:cb2a55f408c3043e42b40cc8eecd575afa27b7e0b956dfb190de0f8499a57a53", size = 251018, upload-time = "2026-01-26T02:43:56.198Z" },
- { url = "https://files.pythonhosted.org/packages/fd/80/c959c5933adedb9ac15152e4067c702a808ea183a8b64cf8f31af8ad3155/multidict-6.7.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:eb0ce7b2a32d09892b3dd6cc44877a0d02a33241fafca5f25c8b6b62374f8b75", size = 258883, upload-time = "2026-01-26T02:43:57.499Z" },
- { url = "https://files.pythonhosted.org/packages/86/85/7ed40adafea3d4f1c8b916e3b5cc3a8e07dfcdcb9cd72800f4ed3ca1b387/multidict-6.7.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:c3a32d23520ee37bf327d1e1a656fec76a2edd5c038bf43eddfa0572ec49c60b", size = 242413, upload-time = "2026-01-26T02:43:58.755Z" },
- { url = "https://files.pythonhosted.org/packages/d2/57/b8565ff533e48595503c785f8361ff9a4fde4d67de25c207cd0ba3befd03/multidict-6.7.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:9c90fed18bffc0189ba814749fdcc102b536e83a9f738a9003e569acd540a733", size = 268404, upload-time = "2026-01-26T02:44:00.216Z" },
- { url = "https://files.pythonhosted.org/packages/e0/50/9810c5c29350f7258180dfdcb2e52783a0632862eb334c4896ac717cebcb/multidict-6.7.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:da62917e6076f512daccfbbde27f46fed1c98fee202f0559adec8ee0de67f71a", size = 269456, upload-time = "2026-01-26T02:44:02.202Z" },
- { url = "https://files.pythonhosted.org/packages/f3/8d/5e5be3ced1d12966fefb5c4ea3b2a5b480afcea36406559442c6e31d4a48/multidict-6.7.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bfde23ef6ed9db7eaee6c37dcec08524cb43903c60b285b172b6c094711b3961", size = 256322, upload-time = "2026-01-26T02:44:03.56Z" },
- { url = "https://files.pythonhosted.org/packages/31/6e/d8a26d81ac166a5592782d208dd90dfdc0a7a218adaa52b45a672b46c122/multidict-6.7.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3758692429e4e32f1ba0df23219cd0b4fc0a52f476726fff9337d1a57676a582", size = 253955, upload-time = "2026-01-26T02:44:04.845Z" },
- { url = "https://files.pythonhosted.org/packages/59/4c/7c672c8aad41534ba619bcd4ade7a0dc87ed6b8b5c06149b85d3dd03f0cd/multidict-6.7.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:398c1478926eca669f2fd6a5856b6de9c0acf23a2cb59a14c0ba5844fa38077e", size = 251254, upload-time = "2026-01-26T02:44:06.133Z" },
- { url = "https://files.pythonhosted.org/packages/7b/bd/84c24de512cbafbdbc39439f74e967f19570ce7924e3007174a29c348916/multidict-6.7.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:c102791b1c4f3ab36ce4101154549105a53dc828f016356b3e3bcae2e3a039d3", size = 252059, upload-time = "2026-01-26T02:44:07.518Z" },
- { url = "https://files.pythonhosted.org/packages/fa/ba/f5449385510825b73d01c2d4087bf6d2fccc20a2d42ac34df93191d3dd03/multidict-6.7.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:a088b62bd733e2ad12c50dad01b7d0166c30287c166e137433d3b410add807a6", size = 263588, upload-time = "2026-01-26T02:44:09.382Z" },
- { url = "https://files.pythonhosted.org/packages/d7/11/afc7c677f68f75c84a69fe37184f0f82fce13ce4b92f49f3db280b7e92b3/multidict-6.7.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:3d51ff4785d58d3f6c91bdbffcb5e1f7ddfda557727043aa20d20ec4f65e324a", size = 259642, upload-time = "2026-01-26T02:44:10.73Z" },
- { url = "https://files.pythonhosted.org/packages/2b/17/ebb9644da78c4ab36403739e0e6e0e30ebb135b9caf3440825001a0bddcb/multidict-6.7.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:fc5907494fccf3e7d3f94f95c91d6336b092b5fc83811720fae5e2765890dfba", size = 251377, upload-time = "2026-01-26T02:44:12.042Z" },
- { url = "https://files.pythonhosted.org/packages/ca/a4/840f5b97339e27846c46307f2530a2805d9d537d8b8bd416af031cad7fa0/multidict-6.7.1-cp312-cp312-win32.whl", hash = "sha256:28ca5ce2fd9716631133d0e9a9b9a745ad7f60bac2bccafb56aa380fc0b6c511", size = 41887, upload-time = "2026-01-26T02:44:14.245Z" },
- { url = "https://files.pythonhosted.org/packages/80/31/0b2517913687895f5904325c2069d6a3b78f66cc641a86a2baf75a05dcbb/multidict-6.7.1-cp312-cp312-win_amd64.whl", hash = "sha256:fcee94dfbd638784645b066074b338bc9cc155d4b4bffa4adce1615c5a426c19", size = 46053, upload-time = "2026-01-26T02:44:15.371Z" },
- { url = "https://files.pythonhosted.org/packages/0c/5b/aba28e4ee4006ae4c7df8d327d31025d760ffa992ea23812a601d226e682/multidict-6.7.1-cp312-cp312-win_arm64.whl", hash = "sha256:ba0a9fb644d0c1a2194cf7ffb043bd852cea63a57f66fbd33959f7dae18517bf", size = 43307, upload-time = "2026-01-26T02:44:16.852Z" },
- { url = "https://files.pythonhosted.org/packages/f2/22/929c141d6c0dba87d3e1d38fbdf1ba8baba86b7776469f2bc2d3227a1e67/multidict-6.7.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:2b41f5fed0ed563624f1c17630cb9941cf2309d4df00e494b551b5f3e3d67a23", size = 76174, upload-time = "2026-01-26T02:44:18.509Z" },
- { url = "https://files.pythonhosted.org/packages/c7/75/bc704ae15fee974f8fccd871305e254754167dce5f9e42d88a2def741a1d/multidict-6.7.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:84e61e3af5463c19b67ced91f6c634effb89ef8bfc5ca0267f954451ed4bb6a2", size = 45116, upload-time = "2026-01-26T02:44:19.745Z" },
- { url = "https://files.pythonhosted.org/packages/79/76/55cd7186f498ed080a18440c9013011eb548f77ae1b297206d030eb1180a/multidict-6.7.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:935434b9853c7c112eee7ac891bc4cb86455aa631269ae35442cb316790c1445", size = 43524, upload-time = "2026-01-26T02:44:21.571Z" },
- { url = "https://files.pythonhosted.org/packages/e9/3c/414842ef8d5a1628d68edee29ba0e5bcf235dbfb3ccd3ea303a7fe8c72ff/multidict-6.7.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:432feb25a1cb67fe82a9680b4d65fb542e4635cb3166cd9c01560651ad60f177", size = 249368, upload-time = "2026-01-26T02:44:22.803Z" },
- { url = "https://files.pythonhosted.org/packages/f6/32/befed7f74c458b4a525e60519fe8d87eef72bb1e99924fa2b0f9d97a221e/multidict-6.7.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e82d14e3c948952a1a85503817e038cba5905a3352de76b9a465075d072fba23", size = 256952, upload-time = "2026-01-26T02:44:24.306Z" },
- { url = "https://files.pythonhosted.org/packages/03/d6/c878a44ba877f366630c860fdf74bfb203c33778f12b6ac274936853c451/multidict-6.7.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:4cfb48c6ea66c83bcaaf7e4dfa7ec1b6bbcf751b7db85a328902796dfde4c060", size = 240317, upload-time = "2026-01-26T02:44:25.772Z" },
- { url = "https://files.pythonhosted.org/packages/68/49/57421b4d7ad2e9e60e25922b08ceb37e077b90444bde6ead629095327a6f/multidict-6.7.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:1d540e51b7e8e170174555edecddbd5538105443754539193e3e1061864d444d", size = 267132, upload-time = "2026-01-26T02:44:27.648Z" },
- { url = "https://files.pythonhosted.org/packages/b7/fe/ec0edd52ddbcea2a2e89e174f0206444a61440b40f39704e64dc807a70bd/multidict-6.7.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:273d23f4b40f3dce4d6c8a821c741a86dec62cded82e1175ba3d99be128147ed", size = 268140, upload-time = "2026-01-26T02:44:29.588Z" },
- { url = "https://files.pythonhosted.org/packages/b0/73/6e1b01cbeb458807aa0831742232dbdd1fa92bfa33f52a3f176b4ff3dc11/multidict-6.7.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9d624335fd4fa1c08a53f8b4be7676ebde19cd092b3895c421045ca87895b429", size = 254277, upload-time = "2026-01-26T02:44:30.902Z" },
- { url = "https://files.pythonhosted.org/packages/6a/b2/5fb8c124d7561a4974c342bc8c778b471ebbeb3cc17df696f034a7e9afe7/multidict-6.7.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:12fad252f8b267cc75b66e8fc51b3079604e8d43a75428ffe193cd9e2195dfd6", size = 252291, upload-time = "2026-01-26T02:44:32.31Z" },
- { url = "https://files.pythonhosted.org/packages/5a/96/51d4e4e06bcce92577fcd488e22600bd38e4fd59c20cb49434d054903bd2/multidict-6.7.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:03ede2a6ffbe8ef936b92cb4529f27f42be7f56afcdab5ab739cd5f27fb1cbf9", size = 250156, upload-time = "2026-01-26T02:44:33.734Z" },
- { url = "https://files.pythonhosted.org/packages/db/6b/420e173eec5fba721a50e2a9f89eda89d9c98fded1124f8d5c675f7a0c0f/multidict-6.7.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:90efbcf47dbe33dcf643a1e400d67d59abeac5db07dc3f27d6bdeae497a2198c", size = 249742, upload-time = "2026-01-26T02:44:35.222Z" },
- { url = "https://files.pythonhosted.org/packages/44/a3/ec5b5bd98f306bc2aa297b8c6f11a46714a56b1e6ef5ebda50a4f5d7c5fb/multidict-6.7.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:5c4b9bfc148f5a91be9244d6264c53035c8a0dcd2f51f1c3c6e30e30ebaa1c84", size = 262221, upload-time = "2026-01-26T02:44:36.604Z" },
- { url = "https://files.pythonhosted.org/packages/cd/f7/e8c0d0da0cd1e28d10e624604e1a36bcc3353aaebdfdc3a43c72bc683a12/multidict-6.7.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:401c5a650f3add2472d1d288c26deebc540f99e2fb83e9525007a74cd2116f1d", size = 258664, upload-time = "2026-01-26T02:44:38.008Z" },
- { url = "https://files.pythonhosted.org/packages/52/da/151a44e8016dd33feed44f730bd856a66257c1ee7aed4f44b649fb7edeb3/multidict-6.7.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:97891f3b1b3ffbded884e2916cacf3c6fc87b66bb0dde46f7357404750559f33", size = 249490, upload-time = "2026-01-26T02:44:39.386Z" },
- { url = "https://files.pythonhosted.org/packages/87/af/a3b86bf9630b732897f6fc3f4c4714b90aa4361983ccbdcd6c0339b21b0c/multidict-6.7.1-cp313-cp313-win32.whl", hash = "sha256:e1c5988359516095535c4301af38d8a8838534158f649c05dd1050222321bcb3", size = 41695, upload-time = "2026-01-26T02:44:41.318Z" },
- { url = "https://files.pythonhosted.org/packages/b2/35/e994121b0e90e46134673422dd564623f93304614f5d11886b1b3e06f503/multidict-6.7.1-cp313-cp313-win_amd64.whl", hash = "sha256:960c83bf01a95b12b08fd54324a4eb1d5b52c88932b5cba5d6e712bb3ed12eb5", size = 45884, upload-time = "2026-01-26T02:44:42.488Z" },
- { url = "https://files.pythonhosted.org/packages/ca/61/42d3e5dbf661242a69c97ea363f2d7b46c567da8eadef8890022be6e2ab0/multidict-6.7.1-cp313-cp313-win_arm64.whl", hash = "sha256:563fe25c678aaba333d5399408f5ec3c383ca5b663e7f774dd179a520b8144df", size = 43122, upload-time = "2026-01-26T02:44:43.664Z" },
- { url = "https://files.pythonhosted.org/packages/6d/b3/e6b21c6c4f314bb956016b0b3ef2162590a529b84cb831c257519e7fde44/multidict-6.7.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:c76c4bec1538375dad9d452d246ca5368ad6e1c9039dadcf007ae59c70619ea1", size = 83175, upload-time = "2026-01-26T02:44:44.894Z" },
- { url = "https://files.pythonhosted.org/packages/fb/76/23ecd2abfe0957b234f6c960f4ade497f55f2c16aeb684d4ecdbf1c95791/multidict-6.7.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:57b46b24b5d5ebcc978da4ec23a819a9402b4228b8a90d9c656422b4bdd8a963", size = 48460, upload-time = "2026-01-26T02:44:46.106Z" },
- { url = "https://files.pythonhosted.org/packages/c4/57/a0ed92b23f3a042c36bc4227b72b97eca803f5f1801c1ab77c8a212d455e/multidict-6.7.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:e954b24433c768ce78ab7929e84ccf3422e46deb45a4dc9f93438f8217fa2d34", size = 46930, upload-time = "2026-01-26T02:44:47.278Z" },
- { url = "https://files.pythonhosted.org/packages/b5/66/02ec7ace29162e447f6382c495dc95826bf931d3818799bbef11e8f7df1a/multidict-6.7.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:3bd231490fa7217cc832528e1cd8752a96f0125ddd2b5749390f7c3ec8721b65", size = 242582, upload-time = "2026-01-26T02:44:48.604Z" },
- { url = "https://files.pythonhosted.org/packages/58/18/64f5a795e7677670e872673aca234162514696274597b3708b2c0d276cce/multidict-6.7.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:253282d70d67885a15c8a7716f3a73edf2d635793ceda8173b9ecc21f2fb8292", size = 250031, upload-time = "2026-01-26T02:44:50.544Z" },
- { url = "https://files.pythonhosted.org/packages/c8/ed/e192291dbbe51a8290c5686f482084d31bcd9d09af24f63358c3d42fd284/multidict-6.7.1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:0b4c48648d7649c9335cf1927a8b87fa692de3dcb15faa676c6a6f1f1aabda43", size = 228596, upload-time = "2026-01-26T02:44:51.951Z" },
- { url = "https://files.pythonhosted.org/packages/1e/7e/3562a15a60cf747397e7f2180b0a11dc0c38d9175a650e75fa1b4d325e15/multidict-6.7.1-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:98bc624954ec4d2c7cb074b8eefc2b5d0ce7d482e410df446414355d158fe4ca", size = 257492, upload-time = "2026-01-26T02:44:53.902Z" },
- { url = "https://files.pythonhosted.org/packages/24/02/7d0f9eae92b5249bb50ac1595b295f10e263dd0078ebb55115c31e0eaccd/multidict-6.7.1-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:1b99af4d9eec0b49927b4402bcbb58dea89d3e0db8806a4086117019939ad3dd", size = 255899, upload-time = "2026-01-26T02:44:55.316Z" },
- { url = "https://files.pythonhosted.org/packages/00/e3/9b60ed9e23e64c73a5cde95269ef1330678e9c6e34dd4eb6b431b85b5a10/multidict-6.7.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6aac4f16b472d5b7dc6f66a0d49dd57b0e0902090be16594dc9ebfd3d17c47e7", size = 247970, upload-time = "2026-01-26T02:44:56.783Z" },
- { url = "https://files.pythonhosted.org/packages/3e/06/538e58a63ed5cfb0bd4517e346b91da32fde409d839720f664e9a4ae4f9d/multidict-6.7.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:21f830fe223215dffd51f538e78c172ed7c7f60c9b96a2bf05c4848ad49921c3", size = 245060, upload-time = "2026-01-26T02:44:58.195Z" },
- { url = "https://files.pythonhosted.org/packages/b2/2f/d743a3045a97c895d401e9bd29aaa09b94f5cbdf1bd561609e5a6c431c70/multidict-6.7.1-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:f5dd81c45b05518b9aa4da4aa74e1c93d715efa234fd3e8a179df611cc85e5f4", size = 235888, upload-time = "2026-01-26T02:44:59.57Z" },
- { url = "https://files.pythonhosted.org/packages/38/83/5a325cac191ab28b63c52f14f1131f3b0a55ba3b9aa65a6d0bf2a9b921a0/multidict-6.7.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:eb304767bca2bb92fb9c5bd33cedc95baee5bb5f6c88e63706533a1c06ad08c8", size = 243554, upload-time = "2026-01-26T02:45:01.054Z" },
- { url = "https://files.pythonhosted.org/packages/20/1f/9d2327086bd15da2725ef6aae624208e2ef828ed99892b17f60c344e57ed/multidict-6.7.1-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:c9035dde0f916702850ef66460bc4239d89d08df4d02023a5926e7446724212c", size = 252341, upload-time = "2026-01-26T02:45:02.484Z" },
- { url = "https://files.pythonhosted.org/packages/e8/2c/2a1aa0280cf579d0f6eed8ee5211c4f1730bd7e06c636ba2ee6aafda302e/multidict-6.7.1-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:af959b9beeb66c822380f222f0e0a1889331597e81f1ded7f374f3ecb0fd6c52", size = 246391, upload-time = "2026-01-26T02:45:03.862Z" },
- { url = "https://files.pythonhosted.org/packages/e5/03/7ca022ffc36c5a3f6e03b179a5ceb829be9da5783e6fe395f347c0794680/multidict-6.7.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:41f2952231456154ee479651491e94118229844dd7226541788be783be2b5108", size = 243422, upload-time = "2026-01-26T02:45:05.296Z" },
- { url = "https://files.pythonhosted.org/packages/dc/1d/b31650eab6c5778aceed46ba735bd97f7c7d2f54b319fa916c0f96e7805b/multidict-6.7.1-cp313-cp313t-win32.whl", hash = "sha256:df9f19c28adcb40b6aae30bbaa1478c389efd50c28d541d76760199fc1037c32", size = 47770, upload-time = "2026-01-26T02:45:06.754Z" },
- { url = "https://files.pythonhosted.org/packages/ac/5b/2d2d1d522e51285bd61b1e20df8f47ae1a9d80839db0b24ea783b3832832/multidict-6.7.1-cp313-cp313t-win_amd64.whl", hash = "sha256:d54ecf9f301853f2c5e802da559604b3e95bb7a3b01a9c295c6ee591b9882de8", size = 53109, upload-time = "2026-01-26T02:45:08.044Z" },
- { url = "https://files.pythonhosted.org/packages/3d/a3/cc409ba012c83ca024a308516703cf339bdc4b696195644a7215a5164a24/multidict-6.7.1-cp313-cp313t-win_arm64.whl", hash = "sha256:5a37ca18e360377cfda1d62f5f382ff41f2b8c4ccb329ed974cc2e1643440118", size = 45573, upload-time = "2026-01-26T02:45:09.349Z" },
- { url = "https://files.pythonhosted.org/packages/91/cc/db74228a8be41884a567e88a62fd589a913708fcf180d029898c17a9a371/multidict-6.7.1-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:8f333ec9c5eb1b7105e3b84b53141e66ca05a19a605368c55450b6ba208cb9ee", size = 75190, upload-time = "2026-01-26T02:45:10.651Z" },
- { url = "https://files.pythonhosted.org/packages/d5/22/492f2246bb5b534abd44804292e81eeaf835388901f0c574bac4eeec73c5/multidict-6.7.1-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:a407f13c188f804c759fc6a9f88286a565c242a76b27626594c133b82883b5c2", size = 44486, upload-time = "2026-01-26T02:45:11.938Z" },
- { url = "https://files.pythonhosted.org/packages/f1/4f/733c48f270565d78b4544f2baddc2fb2a245e5a8640254b12c36ac7ac68e/multidict-6.7.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:0e161ddf326db5577c3a4cc2d8648f81456e8a20d40415541587a71620d7a7d1", size = 43219, upload-time = "2026-01-26T02:45:14.346Z" },
- { url = "https://files.pythonhosted.org/packages/24/bb/2c0c2287963f4259c85e8bcbba9182ced8d7fca65c780c38e99e61629d11/multidict-6.7.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:1e3a8bb24342a8201d178c3b4984c26ba81a577c80d4d525727427460a50c22d", size = 245132, upload-time = "2026-01-26T02:45:15.712Z" },
- { url = "https://files.pythonhosted.org/packages/a7/f9/44d4b3064c65079d2467888794dea218d1601898ac50222ab8a9a8094460/multidict-6.7.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:97231140a50f5d447d3164f994b86a0bed7cd016e2682f8650d6a9158e14fd31", size = 252420, upload-time = "2026-01-26T02:45:17.293Z" },
- { url = "https://files.pythonhosted.org/packages/8b/13/78f7275e73fa17b24c9a51b0bd9d73ba64bb32d0ed51b02a746eb876abe7/multidict-6.7.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:6b10359683bd8806a200fd2909e7c8ca3a7b24ec1d8132e483d58e791d881048", size = 233510, upload-time = "2026-01-26T02:45:19.356Z" },
- { url = "https://files.pythonhosted.org/packages/4b/25/8167187f62ae3cbd52da7893f58cb036b47ea3fb67138787c76800158982/multidict-6.7.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:283ddac99f7ac25a4acadbf004cb5ae34480bbeb063520f70ce397b281859362", size = 264094, upload-time = "2026-01-26T02:45:20.834Z" },
- { url = "https://files.pythonhosted.org/packages/a1/e7/69a3a83b7b030cf283fb06ce074a05a02322359783424d7edf0f15fe5022/multidict-6.7.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:538cec1e18c067d0e6103aa9a74f9e832904c957adc260e61cd9d8cf0c3b3d37", size = 260786, upload-time = "2026-01-26T02:45:22.818Z" },
- { url = "https://files.pythonhosted.org/packages/fe/3b/8ec5074bcfc450fe84273713b4b0a0dd47c0249358f5d82eb8104ffe2520/multidict-6.7.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7eee46ccb30ff48a1e35bb818cc90846c6be2b68240e42a78599166722cea709", size = 248483, upload-time = "2026-01-26T02:45:24.368Z" },
- { url = "https://files.pythonhosted.org/packages/48/5a/d5a99e3acbca0e29c5d9cba8f92ceb15dce78bab963b308ae692981e3a5d/multidict-6.7.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:fa263a02f4f2dd2d11a7b1bb4362aa7cb1049f84a9235d31adf63f30143469a0", size = 248403, upload-time = "2026-01-26T02:45:25.982Z" },
- { url = "https://files.pythonhosted.org/packages/35/48/e58cd31f6c7d5102f2a4bf89f96b9cf7e00b6c6f3d04ecc44417c00a5a3c/multidict-6.7.1-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:2e1425e2f99ec5bd36c15a01b690a1a2456209c5deed58f95469ffb46039ccbb", size = 240315, upload-time = "2026-01-26T02:45:27.487Z" },
- { url = "https://files.pythonhosted.org/packages/94/33/1cd210229559cb90b6786c30676bb0c58249ff42f942765f88793b41fdce/multidict-6.7.1-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:497394b3239fc6f0e13a78a3e1b61296e72bf1c5f94b4c4eb80b265c37a131cd", size = 245528, upload-time = "2026-01-26T02:45:28.991Z" },
- { url = "https://files.pythonhosted.org/packages/64/f2/6e1107d226278c876c783056b7db43d800bb64c6131cec9c8dfb6903698e/multidict-6.7.1-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:233b398c29d3f1b9676b4b6f75c518a06fcb2ea0b925119fb2c1bc35c05e1601", size = 258784, upload-time = "2026-01-26T02:45:30.503Z" },
- { url = "https://files.pythonhosted.org/packages/4d/c1/11f664f14d525e4a1b5327a82d4de61a1db604ab34c6603bb3c2cc63ad34/multidict-6.7.1-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:93b1818e4a6e0930454f0f2af7dfce69307ca03cdcfb3739bf4d91241967b6c1", size = 251980, upload-time = "2026-01-26T02:45:32.603Z" },
- { url = "https://files.pythonhosted.org/packages/e1/9f/75a9ac888121d0c5bbd4ecf4eead45668b1766f6baabfb3b7f66a410e231/multidict-6.7.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:f33dc2a3abe9249ea5d8360f969ec7f4142e7ac45ee7014d8f8d5acddf178b7b", size = 243602, upload-time = "2026-01-26T02:45:34.043Z" },
- { url = "https://files.pythonhosted.org/packages/9a/e7/50bf7b004cc8525d80dbbbedfdc7aed3e4c323810890be4413e589074032/multidict-6.7.1-cp314-cp314-win32.whl", hash = "sha256:3ab8b9d8b75aef9df299595d5388b14530839f6422333357af1339443cff777d", size = 40930, upload-time = "2026-01-26T02:45:36.278Z" },
- { url = "https://files.pythonhosted.org/packages/e0/bf/52f25716bbe93745595800f36fb17b73711f14da59ed0bb2eba141bc9f0f/multidict-6.7.1-cp314-cp314-win_amd64.whl", hash = "sha256:5e01429a929600e7dab7b166062d9bb54a5eed752384c7384c968c2afab8f50f", size = 45074, upload-time = "2026-01-26T02:45:37.546Z" },
- { url = "https://files.pythonhosted.org/packages/97/ab/22803b03285fa3a525f48217963da3a65ae40f6a1b6f6cf2768879e208f9/multidict-6.7.1-cp314-cp314-win_arm64.whl", hash = "sha256:4885cb0e817aef5d00a2e8451d4665c1808378dc27c2705f1bf4ef8505c0d2e5", size = 42471, upload-time = "2026-01-26T02:45:38.889Z" },
- { url = "https://files.pythonhosted.org/packages/e0/6d/f9293baa6146ba9507e360ea0292b6422b016907c393e2f63fc40ab7b7b5/multidict-6.7.1-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:0458c978acd8e6ea53c81eefaddbbee9c6c5e591f41b3f5e8e194780fe026581", size = 82401, upload-time = "2026-01-26T02:45:40.254Z" },
- { url = "https://files.pythonhosted.org/packages/7a/68/53b5494738d83558d87c3c71a486504d8373421c3e0dbb6d0db48ad42ee0/multidict-6.7.1-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:c0abd12629b0af3cf590982c0b413b1e7395cd4ec026f30986818ab95bfaa94a", size = 48143, upload-time = "2026-01-26T02:45:41.635Z" },
- { url = "https://files.pythonhosted.org/packages/37/e8/5284c53310dcdc99ce5d66563f6e5773531a9b9fe9ec7a615e9bc306b05f/multidict-6.7.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:14525a5f61d7d0c94b368a42cff4c9a4e7ba2d52e2672a7b23d84dc86fb02b0c", size = 46507, upload-time = "2026-01-26T02:45:42.99Z" },
- { url = "https://files.pythonhosted.org/packages/e4/fc/6800d0e5b3875568b4083ecf5f310dcf91d86d52573160834fb4bfcf5e4f/multidict-6.7.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:17307b22c217b4cf05033dabefe68255a534d637c6c9b0cc8382718f87be4262", size = 239358, upload-time = "2026-01-26T02:45:44.376Z" },
- { url = "https://files.pythonhosted.org/packages/41/75/4ad0973179361cdf3a113905e6e088173198349131be2b390f9fa4da5fc6/multidict-6.7.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7a7e590ff876a3eaf1c02a4dfe0724b6e69a9e9de6d8f556816f29c496046e59", size = 246884, upload-time = "2026-01-26T02:45:47.167Z" },
- { url = "https://files.pythonhosted.org/packages/c3/9c/095bb28b5da139bd41fb9a5d5caff412584f377914bd8787c2aa98717130/multidict-6.7.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:5fa6a95dfee63893d80a34758cd0e0c118a30b8dcb46372bf75106c591b77889", size = 225878, upload-time = "2026-01-26T02:45:48.698Z" },
- { url = "https://files.pythonhosted.org/packages/07/d0/c0a72000243756e8f5a277b6b514fa005f2c73d481b7d9e47cd4568aa2e4/multidict-6.7.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a0543217a6a017692aa6ae5cc39adb75e587af0f3a82288b1492eb73dd6cc2a4", size = 253542, upload-time = "2026-01-26T02:45:50.164Z" },
- { url = "https://files.pythonhosted.org/packages/c0/6b/f69da15289e384ecf2a68837ec8b5ad8c33e973aa18b266f50fe55f24b8c/multidict-6.7.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:f99fe611c312b3c1c0ace793f92464d8cd263cc3b26b5721950d977b006b6c4d", size = 252403, upload-time = "2026-01-26T02:45:51.779Z" },
- { url = "https://files.pythonhosted.org/packages/a2/76/b9669547afa5a1a25cd93eaca91c0da1c095b06b6d2d8ec25b713588d3a1/multidict-6.7.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9004d8386d133b7e6135679424c91b0b854d2d164af6ea3f289f8f2761064609", size = 244889, upload-time = "2026-01-26T02:45:53.27Z" },
- { url = "https://files.pythonhosted.org/packages/7e/a9/a50d2669e506dad33cfc45b5d574a205587b7b8a5f426f2fbb2e90882588/multidict-6.7.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:e628ef0e6859ffd8273c69412a2465c4be4a9517d07261b33334b5ec6f3c7489", size = 241982, upload-time = "2026-01-26T02:45:54.919Z" },
- { url = "https://files.pythonhosted.org/packages/c5/bb/1609558ad8b456b4827d3c5a5b775c93b87878fd3117ed3db3423dfbce1b/multidict-6.7.1-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:841189848ba629c3552035a6a7f5bf3b02eb304e9fea7492ca220a8eda6b0e5c", size = 232415, upload-time = "2026-01-26T02:45:56.981Z" },
- { url = "https://files.pythonhosted.org/packages/d8/59/6f61039d2aa9261871e03ab9dc058a550d240f25859b05b67fd70f80d4b3/multidict-6.7.1-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:ce1bbd7d780bb5a0da032e095c951f7014d6b0a205f8318308140f1a6aba159e", size = 240337, upload-time = "2026-01-26T02:45:58.698Z" },
- { url = "https://files.pythonhosted.org/packages/a1/29/fdc6a43c203890dc2ae9249971ecd0c41deaedfe00d25cb6564b2edd99eb/multidict-6.7.1-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:b26684587228afed0d50cf804cc71062cc9c1cdf55051c4c6345d372947b268c", size = 248788, upload-time = "2026-01-26T02:46:00.862Z" },
- { url = "https://files.pythonhosted.org/packages/a9/14/a153a06101323e4cf086ecee3faadba52ff71633d471f9685c42e3736163/multidict-6.7.1-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:9f9af11306994335398293f9958071019e3ab95e9a707dc1383a35613f6abcb9", size = 242842, upload-time = "2026-01-26T02:46:02.824Z" },
- { url = "https://files.pythonhosted.org/packages/41/5f/604ae839e64a4a6efc80db94465348d3b328ee955e37acb24badbcd24d83/multidict-6.7.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:b4938326284c4f1224178a560987b6cf8b4d38458b113d9b8c1db1a836e640a2", size = 240237, upload-time = "2026-01-26T02:46:05.898Z" },
- { url = "https://files.pythonhosted.org/packages/5f/60/c3a5187bf66f6fb546ff4ab8fb5a077cbdd832d7b1908d4365c7f74a1917/multidict-6.7.1-cp314-cp314t-win32.whl", hash = "sha256:98655c737850c064a65e006a3df7c997cd3b220be4ec8fe26215760b9697d4d7", size = 48008, upload-time = "2026-01-26T02:46:07.468Z" },
- { url = "https://files.pythonhosted.org/packages/0c/f7/addf1087b860ac60e6f382240f64fb99f8bfb532bb06f7c542b83c29ca61/multidict-6.7.1-cp314-cp314t-win_amd64.whl", hash = "sha256:497bde6223c212ba11d462853cfa4f0ae6ef97465033e7dc9940cdb3ab5b48e5", size = 53542, upload-time = "2026-01-26T02:46:08.809Z" },
- { url = "https://files.pythonhosted.org/packages/4c/81/4629d0aa32302ef7b2ec65c75a728cc5ff4fa410c50096174c1632e70b3e/multidict-6.7.1-cp314-cp314t-win_arm64.whl", hash = "sha256:2bbd113e0d4af5db41d5ebfe9ccaff89de2120578164f86a5d17d5a576d1e5b2", size = 44719, upload-time = "2026-01-26T02:46:11.146Z" },
- { url = "https://files.pythonhosted.org/packages/81/08/7036c080d7117f28a4af526d794aab6a84463126db031b007717c1a6676e/multidict-6.7.1-py3-none-any.whl", hash = "sha256:55d97cc6dae627efa6a6e548885712d4864b81110ac76fa4e534c03819fa4a56", size = 12319, upload-time = "2026-01-26T02:46:44.004Z" },
-]
-
-[[package]]
-name = "multiprocess"
-version = "0.70.16"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "dill" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/b5/ae/04f39c5d0d0def03247c2893d6f2b83c136bf3320a2154d7b8858f2ba72d/multiprocess-0.70.16.tar.gz", hash = "sha256:161af703d4652a0e1410be6abccecde4a7ddffd19341be0a7011b94aeb171ac1", size = 1772603, upload-time = "2024-01-28T18:52:34.85Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/bc/f7/7ec7fddc92e50714ea3745631f79bd9c96424cb2702632521028e57d3a36/multiprocess-0.70.16-py310-none-any.whl", hash = "sha256:c4a9944c67bd49f823687463660a2d6daae94c289adff97e0f9d696ba6371d02", size = 134824, upload-time = "2024-01-28T18:52:26.062Z" },
- { url = "https://files.pythonhosted.org/packages/50/15/b56e50e8debaf439f44befec5b2af11db85f6e0f344c3113ae0be0593a91/multiprocess-0.70.16-py311-none-any.whl", hash = "sha256:af4cabb0dac72abfb1e794fa7855c325fd2b55a10a44628a3c1ad3311c04127a", size = 143519, upload-time = "2024-01-28T18:52:28.115Z" },
- { url = "https://files.pythonhosted.org/packages/0a/7d/a988f258104dcd2ccf1ed40fdc97e26c4ac351eeaf81d76e266c52d84e2f/multiprocess-0.70.16-py312-none-any.whl", hash = "sha256:fc0544c531920dde3b00c29863377f87e1632601092ea2daca74e4beb40faa2e", size = 146741, upload-time = "2024-01-28T18:52:29.395Z" },
- { url = "https://files.pythonhosted.org/packages/ea/89/38df130f2c799090c978b366cfdf5b96d08de5b29a4a293df7f7429fa50b/multiprocess-0.70.16-py38-none-any.whl", hash = "sha256:a71d82033454891091a226dfc319d0cfa8019a4e888ef9ca910372a446de4435", size = 132628, upload-time = "2024-01-28T18:52:30.853Z" },
- { url = "https://files.pythonhosted.org/packages/da/d9/f7f9379981e39b8c2511c9e0326d212accacb82f12fbfdc1aa2ce2a7b2b6/multiprocess-0.70.16-py39-none-any.whl", hash = "sha256:a0bafd3ae1b732eac64be2e72038231c1ba97724b60b09400d68f229fcc2fbf3", size = 133351, upload-time = "2024-01-28T18:52:31.981Z" },
-]
-
-[[package]]
-name = "narwhals"
-version = "2.16.0"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/fc/6f/713be67779028d482c6e0f2dde5bc430021b2578a4808c1c9f6d7ad48257/narwhals-2.16.0.tar.gz", hash = "sha256:155bb45132b370941ba0396d123cf9ed192bf25f39c4cea726f2da422ca4e145", size = 618268, upload-time = "2026-02-02T10:31:00.545Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/03/cc/7cb74758e6df95e0c4e1253f203b6dd7f348bf2f29cf89e9210a2416d535/narwhals-2.16.0-py3-none-any.whl", hash = "sha256:846f1fd7093ac69d63526e50732033e86c30ea0026a44d9b23991010c7d1485d", size = 443951, upload-time = "2026-02-02T10:30:58.635Z" },
-]
-
-[[package]]
-name = "numpy"
-version = "2.1.3"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/25/ca/1166b75c21abd1da445b97bf1fa2f14f423c6cfb4fc7c4ef31dccf9f6a94/numpy-2.1.3.tar.gz", hash = "sha256:aa08e04e08aaf974d4458def539dece0d28146d866a39da5639596f4921fd761", size = 20166090, upload-time = "2024-11-02T17:48:55.832Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/ad/81/c8167192eba5247593cd9d305ac236847c2912ff39e11402e72ae28a4985/numpy-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4d1167c53b93f1f5d8a139a742b3c6f4d429b54e74e6b57d0eff40045187b15d", size = 21156252, upload-time = "2024-11-02T17:34:01.372Z" },
- { url = "https://files.pythonhosted.org/packages/da/74/5a60003fc3d8a718d830b08b654d0eea2d2db0806bab8f3c2aca7e18e010/numpy-2.1.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c80e4a09b3d95b4e1cac08643f1152fa71a0a821a2d4277334c88d54b2219a41", size = 13784119, upload-time = "2024-11-02T17:34:23.809Z" },
- { url = "https://files.pythonhosted.org/packages/47/7c/864cb966b96fce5e63fcf25e1e4d957fe5725a635e5f11fe03f39dd9d6b5/numpy-2.1.3-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:576a1c1d25e9e02ed7fa5477f30a127fe56debd53b8d2c89d5578f9857d03ca9", size = 5352978, upload-time = "2024-11-02T17:34:34.001Z" },
- { url = "https://files.pythonhosted.org/packages/09/ac/61d07930a4993dd9691a6432de16d93bbe6aa4b1c12a5e573d468eefc1ca/numpy-2.1.3-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:973faafebaae4c0aaa1a1ca1ce02434554d67e628b8d805e61f874b84e136b09", size = 6892570, upload-time = "2024-11-02T17:34:45.401Z" },
- { url = "https://files.pythonhosted.org/packages/27/2f/21b94664f23af2bb52030653697c685022119e0dc93d6097c3cb45bce5f9/numpy-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:762479be47a4863e261a840e8e01608d124ee1361e48b96916f38b119cfda04a", size = 13896715, upload-time = "2024-11-02T17:35:06.564Z" },
- { url = "https://files.pythonhosted.org/packages/7a/f0/80811e836484262b236c684a75dfc4ba0424bc670e765afaa911468d9f39/numpy-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc6f24b3d1ecc1eebfbf5d6051faa49af40b03be1aaa781ebdadcbc090b4539b", size = 16339644, upload-time = "2024-11-02T17:35:30.888Z" },
- { url = "https://files.pythonhosted.org/packages/fa/81/ce213159a1ed8eb7d88a2a6ef4fbdb9e4ffd0c76b866c350eb4e3c37e640/numpy-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:17ee83a1f4fef3c94d16dc1802b998668b5419362c8a4f4e8a491de1b41cc3ee", size = 16712217, upload-time = "2024-11-02T17:35:56.703Z" },
- { url = "https://files.pythonhosted.org/packages/7d/84/4de0b87d5a72f45556b2a8ee9fc8801e8518ec867fc68260c1f5dcb3903f/numpy-2.1.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:15cb89f39fa6d0bdfb600ea24b250e5f1a3df23f901f51c8debaa6a5d122b2f0", size = 14399053, upload-time = "2024-11-02T17:36:22.3Z" },
- { url = "https://files.pythonhosted.org/packages/7e/1c/e5fabb9ad849f9d798b44458fd12a318d27592d4bc1448e269dec070ff04/numpy-2.1.3-cp311-cp311-win32.whl", hash = "sha256:d9beb777a78c331580705326d2367488d5bc473b49a9bc3036c154832520aca9", size = 6534741, upload-time = "2024-11-02T17:36:33.552Z" },
- { url = "https://files.pythonhosted.org/packages/1e/48/a9a4b538e28f854bfb62e1dea3c8fea12e90216a276c7777ae5345ff29a7/numpy-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:d89dd2b6da69c4fff5e39c28a382199ddedc3a5be5390115608345dec660b9e2", size = 12869487, upload-time = "2024-11-02T17:36:52.909Z" },
- { url = "https://files.pythonhosted.org/packages/8a/f0/385eb9970309643cbca4fc6eebc8bb16e560de129c91258dfaa18498da8b/numpy-2.1.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:f55ba01150f52b1027829b50d70ef1dafd9821ea82905b63936668403c3b471e", size = 20849658, upload-time = "2024-11-02T17:37:23.919Z" },
- { url = "https://files.pythonhosted.org/packages/54/4a/765b4607f0fecbb239638d610d04ec0a0ded9b4951c56dc68cef79026abf/numpy-2.1.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:13138eadd4f4da03074851a698ffa7e405f41a0845a6b1ad135b81596e4e9958", size = 13492258, upload-time = "2024-11-02T17:37:45.252Z" },
- { url = "https://files.pythonhosted.org/packages/bd/a7/2332679479c70b68dccbf4a8eb9c9b5ee383164b161bee9284ac141fbd33/numpy-2.1.3-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:a6b46587b14b888e95e4a24d7b13ae91fa22386c199ee7b418f449032b2fa3b8", size = 5090249, upload-time = "2024-11-02T17:37:54.252Z" },
- { url = "https://files.pythonhosted.org/packages/c1/67/4aa00316b3b981a822c7a239d3a8135be2a6945d1fd11d0efb25d361711a/numpy-2.1.3-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:0fa14563cc46422e99daef53d725d0c326e99e468a9320a240affffe87852564", size = 6621704, upload-time = "2024-11-02T17:38:05.127Z" },
- { url = "https://files.pythonhosted.org/packages/5e/da/1a429ae58b3b6c364eeec93bf044c532f2ff7b48a52e41050896cf15d5b1/numpy-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8637dcd2caa676e475503d1f8fdb327bc495554e10838019651b76d17b98e512", size = 13606089, upload-time = "2024-11-02T17:38:25.997Z" },
- { url = "https://files.pythonhosted.org/packages/9e/3e/3757f304c704f2f0294a6b8340fcf2be244038be07da4cccf390fa678a9f/numpy-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2312b2aa89e1f43ecea6da6ea9a810d06aae08321609d8dc0d0eda6d946a541b", size = 16043185, upload-time = "2024-11-02T17:38:51.07Z" },
- { url = "https://files.pythonhosted.org/packages/43/97/75329c28fea3113d00c8d2daf9bc5828d58d78ed661d8e05e234f86f0f6d/numpy-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a38c19106902bb19351b83802531fea19dee18e5b37b36454f27f11ff956f7fc", size = 16410751, upload-time = "2024-11-02T17:39:15.801Z" },
- { url = "https://files.pythonhosted.org/packages/ad/7a/442965e98b34e0ae9da319f075b387bcb9a1e0658276cc63adb8c9686f7b/numpy-2.1.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:02135ade8b8a84011cbb67dc44e07c58f28575cf9ecf8ab304e51c05528c19f0", size = 14082705, upload-time = "2024-11-02T17:39:38.274Z" },
- { url = "https://files.pythonhosted.org/packages/ac/b6/26108cf2cfa5c7e03fb969b595c93131eab4a399762b51ce9ebec2332e80/numpy-2.1.3-cp312-cp312-win32.whl", hash = "sha256:e6988e90fcf617da2b5c78902fe8e668361b43b4fe26dbf2d7b0f8034d4cafb9", size = 6239077, upload-time = "2024-11-02T17:39:49.299Z" },
- { url = "https://files.pythonhosted.org/packages/a6/84/fa11dad3404b7634aaab50733581ce11e5350383311ea7a7010f464c0170/numpy-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:0d30c543f02e84e92c4b1f415b7c6b5326cbe45ee7882b6b77db7195fb971e3a", size = 12566858, upload-time = "2024-11-02T17:40:08.851Z" },
- { url = "https://files.pythonhosted.org/packages/4d/0b/620591441457e25f3404c8057eb924d04f161244cb8a3680d529419aa86e/numpy-2.1.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:96fe52fcdb9345b7cd82ecd34547fca4321f7656d500eca497eb7ea5a926692f", size = 20836263, upload-time = "2024-11-02T17:40:39.528Z" },
- { url = "https://files.pythonhosted.org/packages/45/e1/210b2d8b31ce9119145433e6ea78046e30771de3fe353f313b2778142f34/numpy-2.1.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f653490b33e9c3a4c1c01d41bc2aef08f9475af51146e4a7710c450cf9761598", size = 13507771, upload-time = "2024-11-02T17:41:01.368Z" },
- { url = "https://files.pythonhosted.org/packages/55/44/aa9ee3caee02fa5a45f2c3b95cafe59c44e4b278fbbf895a93e88b308555/numpy-2.1.3-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:dc258a761a16daa791081d026f0ed4399b582712e6fc887a95af09df10c5ca57", size = 5075805, upload-time = "2024-11-02T17:41:11.213Z" },
- { url = "https://files.pythonhosted.org/packages/78/d6/61de6e7e31915ba4d87bbe1ae859e83e6582ea14c6add07c8f7eefd8488f/numpy-2.1.3-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:016d0f6f5e77b0f0d45d77387ffa4bb89816b57c835580c3ce8e099ef830befe", size = 6608380, upload-time = "2024-11-02T17:41:22.19Z" },
- { url = "https://files.pythonhosted.org/packages/3e/46/48bdf9b7241e317e6cf94276fe11ba673c06d1fdf115d8b4ebf616affd1a/numpy-2.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c181ba05ce8299c7aa3125c27b9c2167bca4a4445b7ce73d5febc411ca692e43", size = 13602451, upload-time = "2024-11-02T17:41:43.094Z" },
- { url = "https://files.pythonhosted.org/packages/70/50/73f9a5aa0810cdccda9c1d20be3cbe4a4d6ea6bfd6931464a44c95eef731/numpy-2.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5641516794ca9e5f8a4d17bb45446998c6554704d888f86df9b200e66bdcce56", size = 16039822, upload-time = "2024-11-02T17:42:07.595Z" },
- { url = "https://files.pythonhosted.org/packages/ad/cd/098bc1d5a5bc5307cfc65ee9369d0ca658ed88fbd7307b0d49fab6ca5fa5/numpy-2.1.3-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ea4dedd6e394a9c180b33c2c872b92f7ce0f8e7ad93e9585312b0c5a04777a4a", size = 16411822, upload-time = "2024-11-02T17:42:32.48Z" },
- { url = "https://files.pythonhosted.org/packages/83/a2/7d4467a2a6d984549053b37945620209e702cf96a8bc658bc04bba13c9e2/numpy-2.1.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:b0df3635b9c8ef48bd3be5f862cf71b0a4716fa0e702155c45067c6b711ddcef", size = 14079598, upload-time = "2024-11-02T17:42:53.773Z" },
- { url = "https://files.pythonhosted.org/packages/e9/6a/d64514dcecb2ee70bfdfad10c42b76cab657e7ee31944ff7a600f141d9e9/numpy-2.1.3-cp313-cp313-win32.whl", hash = "sha256:50ca6aba6e163363f132b5c101ba078b8cbd3fa92c7865fd7d4d62d9779ac29f", size = 6236021, upload-time = "2024-11-02T17:46:19.171Z" },
- { url = "https://files.pythonhosted.org/packages/bb/f9/12297ed8d8301a401e7d8eb6b418d32547f1d700ed3c038d325a605421a4/numpy-2.1.3-cp313-cp313-win_amd64.whl", hash = "sha256:747641635d3d44bcb380d950679462fae44f54b131be347d5ec2bce47d3df9ed", size = 12560405, upload-time = "2024-11-02T17:46:38.177Z" },
- { url = "https://files.pythonhosted.org/packages/a7/45/7f9244cd792e163b334e3a7f02dff1239d2890b6f37ebf9e82cbe17debc0/numpy-2.1.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:996bb9399059c5b82f76b53ff8bb686069c05acc94656bb259b1d63d04a9506f", size = 20859062, upload-time = "2024-11-02T17:43:24.599Z" },
- { url = "https://files.pythonhosted.org/packages/b1/b4/a084218e7e92b506d634105b13e27a3a6645312b93e1c699cc9025adb0e1/numpy-2.1.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:45966d859916ad02b779706bb43b954281db43e185015df6eb3323120188f9e4", size = 13515839, upload-time = "2024-11-02T17:43:45.498Z" },
- { url = "https://files.pythonhosted.org/packages/27/45/58ed3f88028dcf80e6ea580311dc3edefdd94248f5770deb980500ef85dd/numpy-2.1.3-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:baed7e8d7481bfe0874b566850cb0b85243e982388b7b23348c6db2ee2b2ae8e", size = 5116031, upload-time = "2024-11-02T17:43:54.585Z" },
- { url = "https://files.pythonhosted.org/packages/37/a8/eb689432eb977d83229094b58b0f53249d2209742f7de529c49d61a124a0/numpy-2.1.3-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:a9f7f672a3388133335589cfca93ed468509cb7b93ba3105fce780d04a6576a0", size = 6629977, upload-time = "2024-11-02T17:44:05.31Z" },
- { url = "https://files.pythonhosted.org/packages/42/a3/5355ad51ac73c23334c7caaed01adadfda49544f646fcbfbb4331deb267b/numpy-2.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7aac50327da5d208db2eec22eb11e491e3fe13d22653dce51b0f4109101b408", size = 13575951, upload-time = "2024-11-02T17:44:25.881Z" },
- { url = "https://files.pythonhosted.org/packages/c4/70/ea9646d203104e647988cb7d7279f135257a6b7e3354ea6c56f8bafdb095/numpy-2.1.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4394bc0dbd074b7f9b52024832d16e019decebf86caf909d94f6b3f77a8ee3b6", size = 16022655, upload-time = "2024-11-02T17:44:50.115Z" },
- { url = "https://files.pythonhosted.org/packages/14/ce/7fc0612903e91ff9d0b3f2eda4e18ef9904814afcae5b0f08edb7f637883/numpy-2.1.3-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:50d18c4358a0a8a53f12a8ba9d772ab2d460321e6a93d6064fc22443d189853f", size = 16399902, upload-time = "2024-11-02T17:45:15.685Z" },
- { url = "https://files.pythonhosted.org/packages/ef/62/1d3204313357591c913c32132a28f09a26357e33ea3c4e2fe81269e0dca1/numpy-2.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:14e253bd43fc6b37af4921b10f6add6925878a42a0c5fe83daee390bca80bc17", size = 14067180, upload-time = "2024-11-02T17:45:37.234Z" },
- { url = "https://files.pythonhosted.org/packages/24/d7/78a40ed1d80e23a774cb8a34ae8a9493ba1b4271dde96e56ccdbab1620ef/numpy-2.1.3-cp313-cp313t-win32.whl", hash = "sha256:08788d27a5fd867a663f6fc753fd7c3ad7e92747efc73c53bca2f19f8bc06f48", size = 6291907, upload-time = "2024-11-02T17:45:48.951Z" },
- { url = "https://files.pythonhosted.org/packages/86/09/a5ab407bd7f5f5599e6a9261f964ace03a73e7c6928de906981c31c38082/numpy-2.1.3-cp313-cp313t-win_amd64.whl", hash = "sha256:2564fbdf2b99b3f815f2107c1bbc93e2de8ee655a69c261363a1172a79a257d4", size = 12644098, upload-time = "2024-11-02T17:46:07.941Z" },
-]
-
-[[package]]
-name = "packaging"
-version = "26.0"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/65/ee/299d360cdc32edc7d2cf530f3accf79c4fca01e96ffc950d8a52213bd8e4/packaging-26.0.tar.gz", hash = "sha256:00243ae351a257117b6a241061796684b084ed1c516a08c48a3f7e147a9d80b4", size = 143416, upload-time = "2026-01-21T20:50:39.064Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/b7/b9/c538f279a4e237a006a2c98387d081e9eb060d203d8ed34467cc0f0b9b53/packaging-26.0-py3-none-any.whl", hash = "sha256:b36f1fef9334a5588b4166f8bcd26a14e521f2b55e6b9de3aaa80d3ff7a37529", size = 74366, upload-time = "2026-01-21T20:50:37.788Z" },
-]
-
-[[package]]
-name = "pandas"
-version = "2.3.3"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "numpy" },
- { name = "python-dateutil" },
- { name = "pytz" },
- { name = "tzdata" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/33/01/d40b85317f86cf08d853a4f495195c73815fdf205eef3993821720274518/pandas-2.3.3.tar.gz", hash = "sha256:e05e1af93b977f7eafa636d043f9f94c7ee3ac81af99c13508215942e64c993b", size = 4495223, upload-time = "2025-09-29T23:34:51.853Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/c1/fa/7ac648108144a095b4fb6aa3de1954689f7af60a14cf25583f4960ecb878/pandas-2.3.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:602b8615ebcc4a0c1751e71840428ddebeb142ec02c786e8ad6b1ce3c8dec523", size = 11578790, upload-time = "2025-09-29T23:18:30.065Z" },
- { url = "https://files.pythonhosted.org/packages/9b/35/74442388c6cf008882d4d4bdfc4109be87e9b8b7ccd097ad1e7f006e2e95/pandas-2.3.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8fe25fc7b623b0ef6b5009149627e34d2a4657e880948ec3c840e9402e5c1b45", size = 10833831, upload-time = "2025-09-29T23:38:56.071Z" },
- { url = "https://files.pythonhosted.org/packages/fe/e4/de154cbfeee13383ad58d23017da99390b91d73f8c11856f2095e813201b/pandas-2.3.3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b468d3dad6ff947df92dcb32ede5b7bd41a9b3cceef0a30ed925f6d01fb8fa66", size = 12199267, upload-time = "2025-09-29T23:18:41.627Z" },
- { url = "https://files.pythonhosted.org/packages/bf/c9/63f8d545568d9ab91476b1818b4741f521646cbdd151c6efebf40d6de6f7/pandas-2.3.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b98560e98cb334799c0b07ca7967ac361a47326e9b4e5a7dfb5ab2b1c9d35a1b", size = 12789281, upload-time = "2025-09-29T23:18:56.834Z" },
- { url = "https://files.pythonhosted.org/packages/f2/00/a5ac8c7a0e67fd1a6059e40aa08fa1c52cc00709077d2300e210c3ce0322/pandas-2.3.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1d37b5848ba49824e5c30bedb9c830ab9b7751fd049bc7914533e01c65f79791", size = 13240453, upload-time = "2025-09-29T23:19:09.247Z" },
- { url = "https://files.pythonhosted.org/packages/27/4d/5c23a5bc7bd209231618dd9e606ce076272c9bc4f12023a70e03a86b4067/pandas-2.3.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:db4301b2d1f926ae677a751eb2bd0e8c5f5319c9cb3f88b0becbbb0b07b34151", size = 13890361, upload-time = "2025-09-29T23:19:25.342Z" },
- { url = "https://files.pythonhosted.org/packages/8e/59/712db1d7040520de7a4965df15b774348980e6df45c129b8c64d0dbe74ef/pandas-2.3.3-cp311-cp311-win_amd64.whl", hash = "sha256:f086f6fe114e19d92014a1966f43a3e62285109afe874f067f5abbdcbb10e59c", size = 11348702, upload-time = "2025-09-29T23:19:38.296Z" },
- { url = "https://files.pythonhosted.org/packages/9c/fb/231d89e8637c808b997d172b18e9d4a4bc7bf31296196c260526055d1ea0/pandas-2.3.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:6d21f6d74eb1725c2efaa71a2bfc661a0689579b58e9c0ca58a739ff0b002b53", size = 11597846, upload-time = "2025-09-29T23:19:48.856Z" },
- { url = "https://files.pythonhosted.org/packages/5c/bd/bf8064d9cfa214294356c2d6702b716d3cf3bb24be59287a6a21e24cae6b/pandas-2.3.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3fd2f887589c7aa868e02632612ba39acb0b8948faf5cc58f0850e165bd46f35", size = 10729618, upload-time = "2025-09-29T23:39:08.659Z" },
- { url = "https://files.pythonhosted.org/packages/57/56/cf2dbe1a3f5271370669475ead12ce77c61726ffd19a35546e31aa8edf4e/pandas-2.3.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ecaf1e12bdc03c86ad4a7ea848d66c685cb6851d807a26aa245ca3d2017a1908", size = 11737212, upload-time = "2025-09-29T23:19:59.765Z" },
- { url = "https://files.pythonhosted.org/packages/e5/63/cd7d615331b328e287d8233ba9fdf191a9c2d11b6af0c7a59cfcec23de68/pandas-2.3.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b3d11d2fda7eb164ef27ffc14b4fcab16a80e1ce67e9f57e19ec0afaf715ba89", size = 12362693, upload-time = "2025-09-29T23:20:14.098Z" },
- { url = "https://files.pythonhosted.org/packages/a6/de/8b1895b107277d52f2b42d3a6806e69cfef0d5cf1d0ba343470b9d8e0a04/pandas-2.3.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a68e15f780eddf2b07d242e17a04aa187a7ee12b40b930bfdd78070556550e98", size = 12771002, upload-time = "2025-09-29T23:20:26.76Z" },
- { url = "https://files.pythonhosted.org/packages/87/21/84072af3187a677c5893b170ba2c8fbe450a6ff911234916da889b698220/pandas-2.3.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:371a4ab48e950033bcf52b6527eccb564f52dc826c02afd9a1bc0ab731bba084", size = 13450971, upload-time = "2025-09-29T23:20:41.344Z" },
- { url = "https://files.pythonhosted.org/packages/86/41/585a168330ff063014880a80d744219dbf1dd7a1c706e75ab3425a987384/pandas-2.3.3-cp312-cp312-win_amd64.whl", hash = "sha256:a16dcec078a01eeef8ee61bf64074b4e524a2a3f4b3be9326420cabe59c4778b", size = 10992722, upload-time = "2025-09-29T23:20:54.139Z" },
- { url = "https://files.pythonhosted.org/packages/cd/4b/18b035ee18f97c1040d94debd8f2e737000ad70ccc8f5513f4eefad75f4b/pandas-2.3.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:56851a737e3470de7fa88e6131f41281ed440d29a9268dcbf0002da5ac366713", size = 11544671, upload-time = "2025-09-29T23:21:05.024Z" },
- { url = "https://files.pythonhosted.org/packages/31/94/72fac03573102779920099bcac1c3b05975c2cb5f01eac609faf34bed1ca/pandas-2.3.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:bdcd9d1167f4885211e401b3036c0c8d9e274eee67ea8d0758a256d60704cfe8", size = 10680807, upload-time = "2025-09-29T23:21:15.979Z" },
- { url = "https://files.pythonhosted.org/packages/16/87/9472cf4a487d848476865321de18cc8c920b8cab98453ab79dbbc98db63a/pandas-2.3.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e32e7cc9af0f1cc15548288a51a3b681cc2a219faa838e995f7dc53dbab1062d", size = 11709872, upload-time = "2025-09-29T23:21:27.165Z" },
- { url = "https://files.pythonhosted.org/packages/15/07/284f757f63f8a8d69ed4472bfd85122bd086e637bf4ed09de572d575a693/pandas-2.3.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:318d77e0e42a628c04dc56bcef4b40de67918f7041c2b061af1da41dcff670ac", size = 12306371, upload-time = "2025-09-29T23:21:40.532Z" },
- { url = "https://files.pythonhosted.org/packages/33/81/a3afc88fca4aa925804a27d2676d22dcd2031c2ebe08aabd0ae55b9ff282/pandas-2.3.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:4e0a175408804d566144e170d0476b15d78458795bb18f1304fb94160cabf40c", size = 12765333, upload-time = "2025-09-29T23:21:55.77Z" },
- { url = "https://files.pythonhosted.org/packages/8d/0f/b4d4ae743a83742f1153464cf1a8ecfafc3ac59722a0b5c8602310cb7158/pandas-2.3.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:93c2d9ab0fc11822b5eece72ec9587e172f63cff87c00b062f6e37448ced4493", size = 13418120, upload-time = "2025-09-29T23:22:10.109Z" },
- { url = "https://files.pythonhosted.org/packages/4f/c7/e54682c96a895d0c808453269e0b5928a07a127a15704fedb643e9b0a4c8/pandas-2.3.3-cp313-cp313-win_amd64.whl", hash = "sha256:f8bfc0e12dc78f777f323f55c58649591b2cd0c43534e8355c51d3fede5f4dee", size = 10993991, upload-time = "2025-09-29T23:25:04.889Z" },
- { url = "https://files.pythonhosted.org/packages/f9/ca/3f8d4f49740799189e1395812f3bf23b5e8fc7c190827d55a610da72ce55/pandas-2.3.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:75ea25f9529fdec2d2e93a42c523962261e567d250b0013b16210e1d40d7c2e5", size = 12048227, upload-time = "2025-09-29T23:22:24.343Z" },
- { url = "https://files.pythonhosted.org/packages/0e/5a/f43efec3e8c0cc92c4663ccad372dbdff72b60bdb56b2749f04aa1d07d7e/pandas-2.3.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:74ecdf1d301e812db96a465a525952f4dde225fdb6d8e5a521d47e1f42041e21", size = 11411056, upload-time = "2025-09-29T23:22:37.762Z" },
- { url = "https://files.pythonhosted.org/packages/46/b1/85331edfc591208c9d1a63a06baa67b21d332e63b7a591a5ba42a10bb507/pandas-2.3.3-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6435cb949cb34ec11cc9860246ccb2fdc9ecd742c12d3304989017d53f039a78", size = 11645189, upload-time = "2025-09-29T23:22:51.688Z" },
- { url = "https://files.pythonhosted.org/packages/44/23/78d645adc35d94d1ac4f2a3c4112ab6f5b8999f4898b8cdf01252f8df4a9/pandas-2.3.3-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:900f47d8f20860de523a1ac881c4c36d65efcb2eb850e6948140fa781736e110", size = 12121912, upload-time = "2025-09-29T23:23:05.042Z" },
- { url = "https://files.pythonhosted.org/packages/53/da/d10013df5e6aaef6b425aa0c32e1fc1f3e431e4bcabd420517dceadce354/pandas-2.3.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:a45c765238e2ed7d7c608fc5bc4a6f88b642f2f01e70c0c23d2224dd21829d86", size = 12712160, upload-time = "2025-09-29T23:23:28.57Z" },
- { url = "https://files.pythonhosted.org/packages/bd/17/e756653095a083d8a37cbd816cb87148debcfcd920129b25f99dd8d04271/pandas-2.3.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:c4fc4c21971a1a9f4bdb4c73978c7f7256caa3e62b323f70d6cb80db583350bc", size = 13199233, upload-time = "2025-09-29T23:24:24.876Z" },
- { url = "https://files.pythonhosted.org/packages/04/fd/74903979833db8390b73b3a8a7d30d146d710bd32703724dd9083950386f/pandas-2.3.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:ee15f284898e7b246df8087fc82b87b01686f98ee67d85a17b7ab44143a3a9a0", size = 11540635, upload-time = "2025-09-29T23:25:52.486Z" },
- { url = "https://files.pythonhosted.org/packages/21/00/266d6b357ad5e6d3ad55093a7e8efc7dd245f5a842b584db9f30b0f0a287/pandas-2.3.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:1611aedd912e1ff81ff41c745822980c49ce4a7907537be8692c8dbc31924593", size = 10759079, upload-time = "2025-09-29T23:26:33.204Z" },
- { url = "https://files.pythonhosted.org/packages/ca/05/d01ef80a7a3a12b2f8bbf16daba1e17c98a2f039cbc8e2f77a2c5a63d382/pandas-2.3.3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6d2cefc361461662ac48810cb14365a365ce864afe85ef1f447ff5a1e99ea81c", size = 11814049, upload-time = "2025-09-29T23:27:15.384Z" },
- { url = "https://files.pythonhosted.org/packages/15/b2/0e62f78c0c5ba7e3d2c5945a82456f4fac76c480940f805e0b97fcbc2f65/pandas-2.3.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ee67acbbf05014ea6c763beb097e03cd629961c8a632075eeb34247120abcb4b", size = 12332638, upload-time = "2025-09-29T23:27:51.625Z" },
- { url = "https://files.pythonhosted.org/packages/c5/33/dd70400631b62b9b29c3c93d2feee1d0964dc2bae2e5ad7a6c73a7f25325/pandas-2.3.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:c46467899aaa4da076d5abc11084634e2d197e9460643dd455ac3db5856b24d6", size = 12886834, upload-time = "2025-09-29T23:28:21.289Z" },
- { url = "https://files.pythonhosted.org/packages/d3/18/b5d48f55821228d0d2692b34fd5034bb185e854bdb592e9c640f6290e012/pandas-2.3.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:6253c72c6a1d990a410bc7de641d34053364ef8bcd3126f7e7450125887dffe3", size = 13409925, upload-time = "2025-09-29T23:28:58.261Z" },
- { url = "https://files.pythonhosted.org/packages/a6/3d/124ac75fcd0ecc09b8fdccb0246ef65e35b012030defb0e0eba2cbbbe948/pandas-2.3.3-cp314-cp314-win_amd64.whl", hash = "sha256:1b07204a219b3b7350abaae088f451860223a52cfb8a6c53358e7948735158e5", size = 11109071, upload-time = "2025-09-29T23:32:27.484Z" },
- { url = "https://files.pythonhosted.org/packages/89/9c/0e21c895c38a157e0faa1fb64587a9226d6dd46452cac4532d80c3c4a244/pandas-2.3.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:2462b1a365b6109d275250baaae7b760fd25c726aaca0054649286bcfbb3e8ec", size = 12048504, upload-time = "2025-09-29T23:29:31.47Z" },
- { url = "https://files.pythonhosted.org/packages/d7/82/b69a1c95df796858777b68fbe6a81d37443a33319761d7c652ce77797475/pandas-2.3.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:0242fe9a49aa8b4d78a4fa03acb397a58833ef6199e9aa40a95f027bb3a1b6e7", size = 11410702, upload-time = "2025-09-29T23:29:54.591Z" },
- { url = "https://files.pythonhosted.org/packages/f9/88/702bde3ba0a94b8c73a0181e05144b10f13f29ebfc2150c3a79062a8195d/pandas-2.3.3-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a21d830e78df0a515db2b3d2f5570610f5e6bd2e27749770e8bb7b524b89b450", size = 11634535, upload-time = "2025-09-29T23:30:21.003Z" },
- { url = "https://files.pythonhosted.org/packages/a4/1e/1bac1a839d12e6a82ec6cb40cda2edde64a2013a66963293696bbf31fbbb/pandas-2.3.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2e3ebdb170b5ef78f19bfb71b0dc5dc58775032361fa188e814959b74d726dd5", size = 12121582, upload-time = "2025-09-29T23:30:43.391Z" },
- { url = "https://files.pythonhosted.org/packages/44/91/483de934193e12a3b1d6ae7c8645d083ff88dec75f46e827562f1e4b4da6/pandas-2.3.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:d051c0e065b94b7a3cea50eb1ec32e912cd96dba41647eb24104b6c6c14c5788", size = 12699963, upload-time = "2025-09-29T23:31:10.009Z" },
- { url = "https://files.pythonhosted.org/packages/70/44/5191d2e4026f86a2a109053e194d3ba7a31a2d10a9c2348368c63ed4e85a/pandas-2.3.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:3869faf4bd07b3b66a9f462417d0ca3a9df29a9f6abd5d0d0dbab15dac7abe87", size = 13202175, upload-time = "2025-09-29T23:31:59.173Z" },
-]
-
-[[package]]
-name = "pillow"
-version = "12.1.0"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/d0/02/d52c733a2452ef1ffcc123b68e6606d07276b0e358db70eabad7e40042b7/pillow-12.1.0.tar.gz", hash = "sha256:5c5ae0a06e9ea030ab786b0251b32c7e4ce10e58d983c0d5c56029455180b5b9", size = 46977283, upload-time = "2026-01-02T09:13:29.892Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/43/c4/bf8328039de6cc22182c3ef007a2abfbbdab153661c0a9aa78af8d706391/pillow-12.1.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:a83e0850cb8f5ac975291ebfc4170ba481f41a28065277f7f735c202cd8e0af3", size = 5304057, upload-time = "2026-01-02T09:10:46.627Z" },
- { url = "https://files.pythonhosted.org/packages/43/06/7264c0597e676104cc22ca73ee48f752767cd4b1fe084662620b17e10120/pillow-12.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b6e53e82ec2db0717eabb276aa56cf4e500c9a7cec2c2e189b55c24f65a3e8c0", size = 4657811, upload-time = "2026-01-02T09:10:49.548Z" },
- { url = "https://files.pythonhosted.org/packages/72/64/f9189e44474610daf83da31145fa56710b627b5c4c0b9c235e34058f6b31/pillow-12.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:40a8e3b9e8773876d6e30daed22f016509e3987bab61b3b7fe309d7019a87451", size = 6232243, upload-time = "2026-01-02T09:10:51.62Z" },
- { url = "https://files.pythonhosted.org/packages/ef/30/0df458009be6a4caca4ca2c52975e6275c387d4e5c95544e34138b41dc86/pillow-12.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:800429ac32c9b72909c671aaf17ecd13110f823ddb7db4dfef412a5587c2c24e", size = 8037872, upload-time = "2026-01-02T09:10:53.446Z" },
- { url = "https://files.pythonhosted.org/packages/e4/86/95845d4eda4f4f9557e25381d70876aa213560243ac1a6d619c46caaedd9/pillow-12.1.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0b022eaaf709541b391ee069f0022ee5b36c709df71986e3f7be312e46f42c84", size = 6345398, upload-time = "2026-01-02T09:10:55.426Z" },
- { url = "https://files.pythonhosted.org/packages/5c/1f/8e66ab9be3aaf1435bc03edd1ebdf58ffcd17f7349c1d970cafe87af27d9/pillow-12.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1f345e7bc9d7f368887c712aa5054558bad44d2a301ddf9248599f4161abc7c0", size = 7034667, upload-time = "2026-01-02T09:10:57.11Z" },
- { url = "https://files.pythonhosted.org/packages/f9/f6/683b83cb9b1db1fb52b87951b1c0b99bdcfceaa75febf11406c19f82cb5e/pillow-12.1.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d70347c8a5b7ccd803ec0c85c8709f036e6348f1e6a5bf048ecd9c64d3550b8b", size = 6458743, upload-time = "2026-01-02T09:10:59.331Z" },
- { url = "https://files.pythonhosted.org/packages/9a/7d/de833d63622538c1d58ce5395e7c6cb7e7dce80decdd8bde4a484e095d9f/pillow-12.1.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:1fcc52d86ce7a34fd17cb04e87cfdb164648a3662a6f20565910a99653d66c18", size = 7159342, upload-time = "2026-01-02T09:11:01.82Z" },
- { url = "https://files.pythonhosted.org/packages/8c/40/50d86571c9e5868c42b81fe7da0c76ca26373f3b95a8dd675425f4a92ec1/pillow-12.1.0-cp311-cp311-win32.whl", hash = "sha256:3ffaa2f0659e2f740473bcf03c702c39a8d4b2b7ffc629052028764324842c64", size = 6328655, upload-time = "2026-01-02T09:11:04.556Z" },
- { url = "https://files.pythonhosted.org/packages/6c/af/b1d7e301c4cd26cd45d4af884d9ee9b6fab893b0ad2450d4746d74a6968c/pillow-12.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:806f3987ffe10e867bab0ddad45df1148a2b98221798457fa097ad85d6e8bc75", size = 7031469, upload-time = "2026-01-02T09:11:06.538Z" },
- { url = "https://files.pythonhosted.org/packages/48/36/d5716586d887fb2a810a4a61518a327a1e21c8b7134c89283af272efe84b/pillow-12.1.0-cp311-cp311-win_arm64.whl", hash = "sha256:9f5fefaca968e700ad1a4a9de98bf0869a94e397fe3524c4c9450c1445252304", size = 2452515, upload-time = "2026-01-02T09:11:08.226Z" },
- { url = "https://files.pythonhosted.org/packages/20/31/dc53fe21a2f2996e1b7d92bf671cdb157079385183ef7c1ae08b485db510/pillow-12.1.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:a332ac4ccb84b6dde65dbace8431f3af08874bf9770719d32a635c4ef411b18b", size = 5262642, upload-time = "2026-01-02T09:11:10.138Z" },
- { url = "https://files.pythonhosted.org/packages/ab/c1/10e45ac9cc79419cedf5121b42dcca5a50ad2b601fa080f58c22fb27626e/pillow-12.1.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:907bfa8a9cb790748a9aa4513e37c88c59660da3bcfffbd24a7d9e6abf224551", size = 4657464, upload-time = "2026-01-02T09:11:12.319Z" },
- { url = "https://files.pythonhosted.org/packages/ad/26/7b82c0ab7ef40ebede7a97c72d473bda5950f609f8e0c77b04af574a0ddb/pillow-12.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:efdc140e7b63b8f739d09a99033aa430accce485ff78e6d311973a67b6bf3208", size = 6234878, upload-time = "2026-01-02T09:11:14.096Z" },
- { url = "https://files.pythonhosted.org/packages/76/25/27abc9792615b5e886ca9411ba6637b675f1b77af3104710ac7353fe5605/pillow-12.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:bef9768cab184e7ae6e559c032e95ba8d07b3023c289f79a2bd36e8bf85605a5", size = 8044868, upload-time = "2026-01-02T09:11:15.903Z" },
- { url = "https://files.pythonhosted.org/packages/0a/ea/f200a4c36d836100e7bc738fc48cd963d3ba6372ebc8298a889e0cfc3359/pillow-12.1.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:742aea052cf5ab5034a53c3846165bc3ce88d7c38e954120db0ab867ca242661", size = 6349468, upload-time = "2026-01-02T09:11:17.631Z" },
- { url = "https://files.pythonhosted.org/packages/11/8f/48d0b77ab2200374c66d344459b8958c86693be99526450e7aee714e03e4/pillow-12.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a6dfc2af5b082b635af6e08e0d1f9f1c4e04d17d4e2ca0ef96131e85eda6eb17", size = 7041518, upload-time = "2026-01-02T09:11:19.389Z" },
- { url = "https://files.pythonhosted.org/packages/1d/23/c281182eb986b5d31f0a76d2a2c8cd41722d6fb8ed07521e802f9bba52de/pillow-12.1.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:609e89d9f90b581c8d16358c9087df76024cf058fa693dd3e1e1620823f39670", size = 6462829, upload-time = "2026-01-02T09:11:21.28Z" },
- { url = "https://files.pythonhosted.org/packages/25/ef/7018273e0faac099d7b00982abdcc39142ae6f3bd9ceb06de09779c4a9d6/pillow-12.1.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:43b4899cfd091a9693a1278c4982f3e50f7fb7cff5153b05174b4afc9593b616", size = 7166756, upload-time = "2026-01-02T09:11:23.559Z" },
- { url = "https://files.pythonhosted.org/packages/8f/c8/993d4b7ab2e341fe02ceef9576afcf5830cdec640be2ac5bee1820d693d4/pillow-12.1.0-cp312-cp312-win32.whl", hash = "sha256:aa0c9cc0b82b14766a99fbe6084409972266e82f459821cd26997a488a7261a7", size = 6328770, upload-time = "2026-01-02T09:11:25.661Z" },
- { url = "https://files.pythonhosted.org/packages/a7/87/90b358775a3f02765d87655237229ba64a997b87efa8ccaca7dd3e36e7a7/pillow-12.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:d70534cea9e7966169ad29a903b99fc507e932069a881d0965a1a84bb57f6c6d", size = 7033406, upload-time = "2026-01-02T09:11:27.474Z" },
- { url = "https://files.pythonhosted.org/packages/5d/cf/881b457eccacac9e5b2ddd97d5071fb6d668307c57cbf4e3b5278e06e536/pillow-12.1.0-cp312-cp312-win_arm64.whl", hash = "sha256:65b80c1ee7e14a87d6a068dd3b0aea268ffcabfe0498d38661b00c5b4b22e74c", size = 2452612, upload-time = "2026-01-02T09:11:29.309Z" },
- { url = "https://files.pythonhosted.org/packages/dd/c7/2530a4aa28248623e9d7f27316b42e27c32ec410f695929696f2e0e4a778/pillow-12.1.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl", hash = "sha256:7b5dd7cbae20285cdb597b10eb5a2c13aa9de6cde9bb64a3c1317427b1db1ae1", size = 4062543, upload-time = "2026-01-02T09:11:31.566Z" },
- { url = "https://files.pythonhosted.org/packages/8f/1f/40b8eae823dc1519b87d53c30ed9ef085506b05281d313031755c1705f73/pillow-12.1.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:29a4cef9cb672363926f0470afc516dbf7305a14d8c54f7abbb5c199cd8f8179", size = 4138373, upload-time = "2026-01-02T09:11:33.367Z" },
- { url = "https://files.pythonhosted.org/packages/d4/77/6fa60634cf06e52139fd0e89e5bbf055e8166c691c42fb162818b7fda31d/pillow-12.1.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:681088909d7e8fa9e31b9799aaa59ba5234c58e5e4f1951b4c4d1082a2e980e0", size = 3601241, upload-time = "2026-01-02T09:11:35.011Z" },
- { url = "https://files.pythonhosted.org/packages/4f/bf/28ab865de622e14b747f0cd7877510848252d950e43002e224fb1c9ababf/pillow-12.1.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:983976c2ab753166dc66d36af6e8ec15bb511e4a25856e2227e5f7e00a160587", size = 5262410, upload-time = "2026-01-02T09:11:36.682Z" },
- { url = "https://files.pythonhosted.org/packages/1c/34/583420a1b55e715937a85bd48c5c0991598247a1fd2eb5423188e765ea02/pillow-12.1.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:db44d5c160a90df2d24a24760bbd37607d53da0b34fb546c4c232af7192298ac", size = 4657312, upload-time = "2026-01-02T09:11:38.535Z" },
- { url = "https://files.pythonhosted.org/packages/1d/fd/f5a0896839762885b3376ff04878f86ab2b097c2f9a9cdccf4eda8ba8dc0/pillow-12.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:6b7a9d1db5dad90e2991645874f708e87d9a3c370c243c2d7684d28f7e133e6b", size = 6232605, upload-time = "2026-01-02T09:11:40.602Z" },
- { url = "https://files.pythonhosted.org/packages/98/aa/938a09d127ac1e70e6ed467bd03834350b33ef646b31edb7452d5de43792/pillow-12.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:6258f3260986990ba2fa8a874f8b6e808cf5abb51a94015ca3dc3c68aa4f30ea", size = 8041617, upload-time = "2026-01-02T09:11:42.721Z" },
- { url = "https://files.pythonhosted.org/packages/17/e8/538b24cb426ac0186e03f80f78bc8dc7246c667f58b540bdd57c71c9f79d/pillow-12.1.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e115c15e3bc727b1ca3e641a909f77f8ca72a64fff150f666fcc85e57701c26c", size = 6346509, upload-time = "2026-01-02T09:11:44.955Z" },
- { url = "https://files.pythonhosted.org/packages/01/9a/632e58ec89a32738cabfd9ec418f0e9898a2b4719afc581f07c04a05e3c9/pillow-12.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6741e6f3074a35e47c77b23a4e4f2d90db3ed905cb1c5e6e0d49bff2045632bc", size = 7038117, upload-time = "2026-01-02T09:11:46.736Z" },
- { url = "https://files.pythonhosted.org/packages/c7/a2/d40308cf86eada842ca1f3ffa45d0ca0df7e4ab33c83f81e73f5eaed136d/pillow-12.1.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:935b9d1aed48fcfb3f838caac506f38e29621b44ccc4f8a64d575cb1b2a88644", size = 6460151, upload-time = "2026-01-02T09:11:48.625Z" },
- { url = "https://files.pythonhosted.org/packages/f1/88/f5b058ad6453a085c5266660a1417bdad590199da1b32fb4efcff9d33b05/pillow-12.1.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5fee4c04aad8932da9f8f710af2c1a15a83582cfb884152a9caa79d4efcdbf9c", size = 7164534, upload-time = "2026-01-02T09:11:50.445Z" },
- { url = "https://files.pythonhosted.org/packages/19/ce/c17334caea1db789163b5d855a5735e47995b0b5dc8745e9a3605d5f24c0/pillow-12.1.0-cp313-cp313-win32.whl", hash = "sha256:a786bf667724d84aa29b5db1c61b7bfdde380202aaca12c3461afd6b71743171", size = 6332551, upload-time = "2026-01-02T09:11:52.234Z" },
- { url = "https://files.pythonhosted.org/packages/e5/07/74a9d941fa45c90a0d9465098fe1ec85de3e2afbdc15cc4766622d516056/pillow-12.1.0-cp313-cp313-win_amd64.whl", hash = "sha256:461f9dfdafa394c59cd6d818bdfdbab4028b83b02caadaff0ffd433faf4c9a7a", size = 7040087, upload-time = "2026-01-02T09:11:54.822Z" },
- { url = "https://files.pythonhosted.org/packages/88/09/c99950c075a0e9053d8e880595926302575bc742b1b47fe1bbcc8d388d50/pillow-12.1.0-cp313-cp313-win_arm64.whl", hash = "sha256:9212d6b86917a2300669511ed094a9406888362e085f2431a7da985a6b124f45", size = 2452470, upload-time = "2026-01-02T09:11:56.522Z" },
- { url = "https://files.pythonhosted.org/packages/b5/ba/970b7d85ba01f348dee4d65412476321d40ee04dcb51cd3735b9dc94eb58/pillow-12.1.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:00162e9ca6d22b7c3ee8e61faa3c3253cd19b6a37f126cad04f2f88b306f557d", size = 5264816, upload-time = "2026-01-02T09:11:58.227Z" },
- { url = "https://files.pythonhosted.org/packages/10/60/650f2fb55fdba7a510d836202aa52f0baac633e50ab1cf18415d332188fb/pillow-12.1.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:7d6daa89a00b58c37cb1747ec9fb7ac3bc5ffd5949f5888657dfddde6d1312e0", size = 4660472, upload-time = "2026-01-02T09:12:00.798Z" },
- { url = "https://files.pythonhosted.org/packages/2b/c0/5273a99478956a099d533c4f46cbaa19fd69d606624f4334b85e50987a08/pillow-12.1.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:e2479c7f02f9d505682dc47df8c0ea1fc5e264c4d1629a5d63fe3e2334b89554", size = 6268974, upload-time = "2026-01-02T09:12:02.572Z" },
- { url = "https://files.pythonhosted.org/packages/b4/26/0bf714bc2e73d5267887d47931d53c4ceeceea6978148ed2ab2a4e6463c4/pillow-12.1.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f188d580bd870cda1e15183790d1cc2fa78f666e76077d103edf048eed9c356e", size = 8073070, upload-time = "2026-01-02T09:12:04.75Z" },
- { url = "https://files.pythonhosted.org/packages/43/cf/1ea826200de111a9d65724c54f927f3111dc5ae297f294b370a670c17786/pillow-12.1.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0fde7ec5538ab5095cc02df38ee99b0443ff0e1c847a045554cf5f9af1f4aa82", size = 6380176, upload-time = "2026-01-02T09:12:06.626Z" },
- { url = "https://files.pythonhosted.org/packages/03/e0/7938dd2b2013373fd85d96e0f38d62b7a5a262af21ac274250c7ca7847c9/pillow-12.1.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0ed07dca4a8464bada6139ab38f5382f83e5f111698caf3191cb8dbf27d908b4", size = 7067061, upload-time = "2026-01-02T09:12:08.624Z" },
- { url = "https://files.pythonhosted.org/packages/86/ad/a2aa97d37272a929a98437a8c0ac37b3cf012f4f8721e1bd5154699b2518/pillow-12.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:f45bd71d1fa5e5749587613037b172e0b3b23159d1c00ef2fc920da6f470e6f0", size = 6491824, upload-time = "2026-01-02T09:12:10.488Z" },
- { url = "https://files.pythonhosted.org/packages/a4/44/80e46611b288d51b115826f136fb3465653c28f491068a72d3da49b54cd4/pillow-12.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:277518bf4fe74aa91489e1b20577473b19ee70fb97c374aa50830b279f25841b", size = 7190911, upload-time = "2026-01-02T09:12:12.772Z" },
- { url = "https://files.pythonhosted.org/packages/86/77/eacc62356b4cf81abe99ff9dbc7402750044aed02cfd6a503f7c6fc11f3e/pillow-12.1.0-cp313-cp313t-win32.whl", hash = "sha256:7315f9137087c4e0ee73a761b163fc9aa3b19f5f606a7fc08d83fd3e4379af65", size = 6336445, upload-time = "2026-01-02T09:12:14.775Z" },
- { url = "https://files.pythonhosted.org/packages/e7/3c/57d81d0b74d218706dafccb87a87ea44262c43eef98eb3b164fd000e0491/pillow-12.1.0-cp313-cp313t-win_amd64.whl", hash = "sha256:0ddedfaa8b5f0b4ffbc2fa87b556dc59f6bb4ecb14a53b33f9189713ae8053c0", size = 7045354, upload-time = "2026-01-02T09:12:16.599Z" },
- { url = "https://files.pythonhosted.org/packages/ac/82/8b9b97bba2e3576a340f93b044a3a3a09841170ab4c1eb0d5c93469fd32f/pillow-12.1.0-cp313-cp313t-win_arm64.whl", hash = "sha256:80941e6d573197a0c28f394753de529bb436b1ca990ed6e765cf42426abc39f8", size = 2454547, upload-time = "2026-01-02T09:12:18.704Z" },
- { url = "https://files.pythonhosted.org/packages/8c/87/bdf971d8bbcf80a348cc3bacfcb239f5882100fe80534b0ce67a784181d8/pillow-12.1.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl", hash = "sha256:5cb7bc1966d031aec37ddb9dcf15c2da5b2e9f7cc3ca7c54473a20a927e1eb91", size = 4062533, upload-time = "2026-01-02T09:12:20.791Z" },
- { url = "https://files.pythonhosted.org/packages/ff/4f/5eb37a681c68d605eb7034c004875c81f86ec9ef51f5be4a63eadd58859a/pillow-12.1.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:97e9993d5ed946aba26baf9c1e8cf18adbab584b99f452ee72f7ee8acb882796", size = 4138546, upload-time = "2026-01-02T09:12:23.664Z" },
- { url = "https://files.pythonhosted.org/packages/11/6d/19a95acb2edbace40dcd582d077b991646b7083c41b98da4ed7555b59733/pillow-12.1.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:414b9a78e14ffeb98128863314e62c3f24b8a86081066625700b7985b3f529bd", size = 3601163, upload-time = "2026-01-02T09:12:26.338Z" },
- { url = "https://files.pythonhosted.org/packages/fc/36/2b8138e51cb42e4cc39c3297713455548be855a50558c3ac2beebdc251dd/pillow-12.1.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:e6bdb408f7c9dd2a5ff2b14a3b0bb6d4deb29fb9961e6eb3ae2031ae9a5cec13", size = 5266086, upload-time = "2026-01-02T09:12:28.782Z" },
- { url = "https://files.pythonhosted.org/packages/53/4b/649056e4d22e1caa90816bf99cef0884aed607ed38075bd75f091a607a38/pillow-12.1.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:3413c2ae377550f5487991d444428f1a8ae92784aac79caa8b1e3b89b175f77e", size = 4657344, upload-time = "2026-01-02T09:12:31.117Z" },
- { url = "https://files.pythonhosted.org/packages/6c/6b/c5742cea0f1ade0cd61485dc3d81f05261fc2276f537fbdc00802de56779/pillow-12.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:e5dcbe95016e88437ecf33544ba5db21ef1b8dd6e1b434a2cb2a3d605299e643", size = 6232114, upload-time = "2026-01-02T09:12:32.936Z" },
- { url = "https://files.pythonhosted.org/packages/bf/8f/9f521268ce22d63991601aafd3d48d5ff7280a246a1ef62d626d67b44064/pillow-12.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:d0a7735df32ccbcc98b98a1ac785cc4b19b580be1bdf0aeb5c03223220ea09d5", size = 8042708, upload-time = "2026-01-02T09:12:34.78Z" },
- { url = "https://files.pythonhosted.org/packages/1a/eb/257f38542893f021502a1bbe0c2e883c90b5cff26cc33b1584a841a06d30/pillow-12.1.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0c27407a2d1b96774cbc4a7594129cc027339fd800cd081e44497722ea1179de", size = 6347762, upload-time = "2026-01-02T09:12:36.748Z" },
- { url = "https://files.pythonhosted.org/packages/c4/5a/8ba375025701c09b309e8d5163c5a4ce0102fa86bbf8800eb0d7ac87bc51/pillow-12.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:15c794d74303828eaa957ff8070846d0efe8c630901a1c753fdc63850e19ecd9", size = 7039265, upload-time = "2026-01-02T09:12:39.082Z" },
- { url = "https://files.pythonhosted.org/packages/cf/dc/cf5e4cdb3db533f539e88a7bbf9f190c64ab8a08a9bc7a4ccf55067872e4/pillow-12.1.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:c990547452ee2800d8506c4150280757f88532f3de2a58e3022e9b179107862a", size = 6462341, upload-time = "2026-01-02T09:12:40.946Z" },
- { url = "https://files.pythonhosted.org/packages/d0/47/0291a25ac9550677e22eda48510cfc4fa4b2ef0396448b7fbdc0a6946309/pillow-12.1.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:b63e13dd27da389ed9475b3d28510f0f954bca0041e8e551b2a4eb1eab56a39a", size = 7165395, upload-time = "2026-01-02T09:12:42.706Z" },
- { url = "https://files.pythonhosted.org/packages/4f/4c/e005a59393ec4d9416be06e6b45820403bb946a778e39ecec62f5b2b991e/pillow-12.1.0-cp314-cp314-win32.whl", hash = "sha256:1a949604f73eb07a8adab38c4fe50791f9919344398bdc8ac6b307f755fc7030", size = 6431413, upload-time = "2026-01-02T09:12:44.944Z" },
- { url = "https://files.pythonhosted.org/packages/1c/af/f23697f587ac5f9095d67e31b81c95c0249cd461a9798a061ed6709b09b5/pillow-12.1.0-cp314-cp314-win_amd64.whl", hash = "sha256:4f9f6a650743f0ddee5593ac9e954ba1bdbc5e150bc066586d4f26127853ab94", size = 7176779, upload-time = "2026-01-02T09:12:46.727Z" },
- { url = "https://files.pythonhosted.org/packages/b3/36/6a51abf8599232f3e9afbd16d52829376a68909fe14efe29084445db4b73/pillow-12.1.0-cp314-cp314-win_arm64.whl", hash = "sha256:808b99604f7873c800c4840f55ff389936ef1948e4e87645eaf3fccbc8477ac4", size = 2543105, upload-time = "2026-01-02T09:12:49.243Z" },
- { url = "https://files.pythonhosted.org/packages/82/54/2e1dd20c8749ff225080d6ba465a0cab4387f5db0d1c5fb1439e2d99923f/pillow-12.1.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:bc11908616c8a283cf7d664f77411a5ed2a02009b0097ff8abbba5e79128ccf2", size = 5268571, upload-time = "2026-01-02T09:12:51.11Z" },
- { url = "https://files.pythonhosted.org/packages/57/61/571163a5ef86ec0cf30d265ac2a70ae6fc9e28413d1dc94fa37fae6bda89/pillow-12.1.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:896866d2d436563fa2a43a9d72f417874f16b5545955c54a64941e87c1376c61", size = 4660426, upload-time = "2026-01-02T09:12:52.865Z" },
- { url = "https://files.pythonhosted.org/packages/5e/e1/53ee5163f794aef1bf84243f755ee6897a92c708505350dd1923f4afec48/pillow-12.1.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:8e178e3e99d3c0ea8fc64b88447f7cac8ccf058af422a6cedc690d0eadd98c51", size = 6269908, upload-time = "2026-01-02T09:12:54.884Z" },
- { url = "https://files.pythonhosted.org/packages/bc/0b/b4b4106ff0ee1afa1dc599fde6ab230417f800279745124f6c50bcffed8e/pillow-12.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:079af2fb0c599c2ec144ba2c02766d1b55498e373b3ac64687e43849fbbef5bc", size = 8074733, upload-time = "2026-01-02T09:12:56.802Z" },
- { url = "https://files.pythonhosted.org/packages/19/9f/80b411cbac4a732439e629a26ad3ef11907a8c7fc5377b7602f04f6fe4e7/pillow-12.1.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bdec5e43377761c5dbca620efb69a77f6855c5a379e32ac5b158f54c84212b14", size = 6381431, upload-time = "2026-01-02T09:12:58.823Z" },
- { url = "https://files.pythonhosted.org/packages/8f/b7/d65c45db463b66ecb6abc17c6ba6917a911202a07662247e1355ce1789e7/pillow-12.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:565c986f4b45c020f5421a4cea13ef294dde9509a8577f29b2fc5edc7587fff8", size = 7068529, upload-time = "2026-01-02T09:13:00.885Z" },
- { url = "https://files.pythonhosted.org/packages/50/96/dfd4cd726b4a45ae6e3c669fc9e49deb2241312605d33aba50499e9d9bd1/pillow-12.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:43aca0a55ce1eefc0aefa6253661cb54571857b1a7b2964bd8a1e3ef4b729924", size = 6492981, upload-time = "2026-01-02T09:13:03.314Z" },
- { url = "https://files.pythonhosted.org/packages/4d/1c/b5dc52cf713ae46033359c5ca920444f18a6359ce1020dd3e9c553ea5bc6/pillow-12.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:0deedf2ea233722476b3a81e8cdfbad786f7adbed5d848469fa59fe52396e4ef", size = 7191878, upload-time = "2026-01-02T09:13:05.276Z" },
- { url = "https://files.pythonhosted.org/packages/53/26/c4188248bd5edaf543864fe4834aebe9c9cb4968b6f573ce014cc42d0720/pillow-12.1.0-cp314-cp314t-win32.whl", hash = "sha256:b17fbdbe01c196e7e159aacb889e091f28e61020a8abeac07b68079b6e626988", size = 6438703, upload-time = "2026-01-02T09:13:07.491Z" },
- { url = "https://files.pythonhosted.org/packages/b8/0e/69ed296de8ea05cb03ee139cee600f424ca166e632567b2d66727f08c7ed/pillow-12.1.0-cp314-cp314t-win_amd64.whl", hash = "sha256:27b9baecb428899db6c0de572d6d305cfaf38ca1596b5c0542a5182e3e74e8c6", size = 7182927, upload-time = "2026-01-02T09:13:09.841Z" },
- { url = "https://files.pythonhosted.org/packages/fc/f5/68334c015eed9b5cff77814258717dec591ded209ab5b6fb70e2ae873d1d/pillow-12.1.0-cp314-cp314t-win_arm64.whl", hash = "sha256:f61333d817698bdcdd0f9d7793e365ac3d2a21c1f1eb02b32ad6aefb8d8ea831", size = 2545104, upload-time = "2026-01-02T09:13:12.068Z" },
- { url = "https://files.pythonhosted.org/packages/8b/bc/224b1d98cffd7164b14707c91aac83c07b047fbd8f58eba4066a3e53746a/pillow-12.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:ca94b6aac0d7af2a10ba08c0f888b3d5114439b6b3ef39968378723622fed377", size = 5228605, upload-time = "2026-01-02T09:13:14.084Z" },
- { url = "https://files.pythonhosted.org/packages/0c/ca/49ca7769c4550107de049ed85208240ba0f330b3f2e316f24534795702ce/pillow-12.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:351889afef0f485b84078ea40fe33727a0492b9af3904661b0abbafee0355b72", size = 4622245, upload-time = "2026-01-02T09:13:15.964Z" },
- { url = "https://files.pythonhosted.org/packages/73/48/fac807ce82e5955bcc2718642b94b1bd22a82a6d452aea31cbb678cddf12/pillow-12.1.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:bb0984b30e973f7e2884362b7d23d0a348c7143ee559f38ef3eaab640144204c", size = 5247593, upload-time = "2026-01-02T09:13:17.913Z" },
- { url = "https://files.pythonhosted.org/packages/d2/95/3e0742fe358c4664aed4fd05d5f5373dcdad0b27af52aa0972568541e3f4/pillow-12.1.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:84cabc7095dd535ca934d57e9ce2a72ffd216e435a84acb06b2277b1de2689bd", size = 6989008, upload-time = "2026-01-02T09:13:20.083Z" },
- { url = "https://files.pythonhosted.org/packages/5a/74/fe2ac378e4e202e56d50540d92e1ef4ff34ed687f3c60f6a121bcf99437e/pillow-12.1.0-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:53d8b764726d3af1a138dd353116f774e3862ec7e3794e0c8781e30db0f35dfc", size = 5313824, upload-time = "2026-01-02T09:13:22.405Z" },
- { url = "https://files.pythonhosted.org/packages/f3/77/2a60dee1adee4e2655ac328dd05c02a955c1cd683b9f1b82ec3feb44727c/pillow-12.1.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5da841d81b1a05ef940a8567da92decaa15bc4d7dedb540a8c219ad83d91808a", size = 5963278, upload-time = "2026-01-02T09:13:24.706Z" },
- { url = "https://files.pythonhosted.org/packages/2d/71/64e9b1c7f04ae0027f788a248e6297d7fcc29571371fe7d45495a78172c0/pillow-12.1.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:75af0b4c229ac519b155028fa1be632d812a519abba9b46b20e50c6caa184f19", size = 7029809, upload-time = "2026-01-02T09:13:26.541Z" },
-]
-
-[[package]]
-name = "propcache"
-version = "0.4.1"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/9e/da/e9fc233cf63743258bff22b3dfa7ea5baef7b5bc324af47a0ad89b8ffc6f/propcache-0.4.1.tar.gz", hash = "sha256:f48107a8c637e80362555f37ecf49abe20370e557cc4ab374f04ec4423c97c3d", size = 46442, upload-time = "2025-10-08T19:49:02.291Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/8c/d4/4e2c9aaf7ac2242b9358f98dccd8f90f2605402f5afeff6c578682c2c491/propcache-0.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:60a8fda9644b7dfd5dece8c61d8a85e271cb958075bfc4e01083c148b61a7caf", size = 80208, upload-time = "2025-10-08T19:46:24.597Z" },
- { url = "https://files.pythonhosted.org/packages/c2/21/d7b68e911f9c8e18e4ae43bdbc1e1e9bbd971f8866eb81608947b6f585ff/propcache-0.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c30b53e7e6bda1d547cabb47c825f3843a0a1a42b0496087bb58d8fedf9f41b5", size = 45777, upload-time = "2025-10-08T19:46:25.733Z" },
- { url = "https://files.pythonhosted.org/packages/d3/1d/11605e99ac8ea9435651ee71ab4cb4bf03f0949586246476a25aadfec54a/propcache-0.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6918ecbd897443087a3b7cd978d56546a812517dcaaca51b49526720571fa93e", size = 47647, upload-time = "2025-10-08T19:46:27.304Z" },
- { url = "https://files.pythonhosted.org/packages/58/1a/3c62c127a8466c9c843bccb503d40a273e5cc69838805f322e2826509e0d/propcache-0.4.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3d902a36df4e5989763425a8ab9e98cd8ad5c52c823b34ee7ef307fd50582566", size = 214929, upload-time = "2025-10-08T19:46:28.62Z" },
- { url = "https://files.pythonhosted.org/packages/56/b9/8fa98f850960b367c4b8fe0592e7fc341daa7a9462e925228f10a60cf74f/propcache-0.4.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a9695397f85973bb40427dedddf70d8dc4a44b22f1650dd4af9eedf443d45165", size = 221778, upload-time = "2025-10-08T19:46:30.358Z" },
- { url = "https://files.pythonhosted.org/packages/46/a6/0ab4f660eb59649d14b3d3d65c439421cf2f87fe5dd68591cbe3c1e78a89/propcache-0.4.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:2bb07ffd7eaad486576430c89f9b215f9e4be68c4866a96e97db9e97fead85dc", size = 228144, upload-time = "2025-10-08T19:46:32.607Z" },
- { url = "https://files.pythonhosted.org/packages/52/6a/57f43e054fb3d3a56ac9fc532bc684fc6169a26c75c353e65425b3e56eef/propcache-0.4.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fd6f30fdcf9ae2a70abd34da54f18da086160e4d7d9251f81f3da0ff84fc5a48", size = 210030, upload-time = "2025-10-08T19:46:33.969Z" },
- { url = "https://files.pythonhosted.org/packages/40/e2/27e6feebb5f6b8408fa29f5efbb765cd54c153ac77314d27e457a3e993b7/propcache-0.4.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:fc38cba02d1acba4e2869eef1a57a43dfbd3d49a59bf90dda7444ec2be6a5570", size = 208252, upload-time = "2025-10-08T19:46:35.309Z" },
- { url = "https://files.pythonhosted.org/packages/9e/f8/91c27b22ccda1dbc7967f921c42825564fa5336a01ecd72eb78a9f4f53c2/propcache-0.4.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:67fad6162281e80e882fb3ec355398cf72864a54069d060321f6cd0ade95fe85", size = 202064, upload-time = "2025-10-08T19:46:36.993Z" },
- { url = "https://files.pythonhosted.org/packages/f2/26/7f00bd6bd1adba5aafe5f4a66390f243acab58eab24ff1a08bebb2ef9d40/propcache-0.4.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f10207adf04d08bec185bae14d9606a1444715bc99180f9331c9c02093e1959e", size = 212429, upload-time = "2025-10-08T19:46:38.398Z" },
- { url = "https://files.pythonhosted.org/packages/84/89/fd108ba7815c1117ddca79c228f3f8a15fc82a73bca8b142eb5de13b2785/propcache-0.4.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:e9b0d8d0845bbc4cfcdcbcdbf5086886bc8157aa963c31c777ceff7846c77757", size = 216727, upload-time = "2025-10-08T19:46:39.732Z" },
- { url = "https://files.pythonhosted.org/packages/79/37/3ec3f7e3173e73f1d600495d8b545b53802cbf35506e5732dd8578db3724/propcache-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:981333cb2f4c1896a12f4ab92a9cc8f09ea664e9b7dbdc4eff74627af3a11c0f", size = 205097, upload-time = "2025-10-08T19:46:41.025Z" },
- { url = "https://files.pythonhosted.org/packages/61/b0/b2631c19793f869d35f47d5a3a56fb19e9160d3c119f15ac7344fc3ccae7/propcache-0.4.1-cp311-cp311-win32.whl", hash = "sha256:f1d2f90aeec838a52f1c1a32fe9a619fefd5e411721a9117fbf82aea638fe8a1", size = 38084, upload-time = "2025-10-08T19:46:42.693Z" },
- { url = "https://files.pythonhosted.org/packages/f4/78/6cce448e2098e9f3bfc91bb877f06aa24b6ccace872e39c53b2f707c4648/propcache-0.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:364426a62660f3f699949ac8c621aad6977be7126c5807ce48c0aeb8e7333ea6", size = 41637, upload-time = "2025-10-08T19:46:43.778Z" },
- { url = "https://files.pythonhosted.org/packages/9c/e9/754f180cccd7f51a39913782c74717c581b9cc8177ad0e949f4d51812383/propcache-0.4.1-cp311-cp311-win_arm64.whl", hash = "sha256:e53f3a38d3510c11953f3e6a33f205c6d1b001129f972805ca9b42fc308bc239", size = 38064, upload-time = "2025-10-08T19:46:44.872Z" },
- { url = "https://files.pythonhosted.org/packages/a2/0f/f17b1b2b221d5ca28b4b876e8bb046ac40466513960646bda8e1853cdfa2/propcache-0.4.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:e153e9cd40cc8945138822807139367f256f89c6810c2634a4f6902b52d3b4e2", size = 80061, upload-time = "2025-10-08T19:46:46.075Z" },
- { url = "https://files.pythonhosted.org/packages/76/47/8ccf75935f51448ba9a16a71b783eb7ef6b9ee60f5d14c7f8a8a79fbeed7/propcache-0.4.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:cd547953428f7abb73c5ad82cbb32109566204260d98e41e5dfdc682eb7f8403", size = 46037, upload-time = "2025-10-08T19:46:47.23Z" },
- { url = "https://files.pythonhosted.org/packages/0a/b6/5c9a0e42df4d00bfb4a3cbbe5cf9f54260300c88a0e9af1f47ca5ce17ac0/propcache-0.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f048da1b4f243fc44f205dfd320933a951b8d89e0afd4c7cacc762a8b9165207", size = 47324, upload-time = "2025-10-08T19:46:48.384Z" },
- { url = "https://files.pythonhosted.org/packages/9e/d3/6c7ee328b39a81ee877c962469f1e795f9db87f925251efeb0545e0020d0/propcache-0.4.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ec17c65562a827bba85e3872ead335f95405ea1674860d96483a02f5c698fa72", size = 225505, upload-time = "2025-10-08T19:46:50.055Z" },
- { url = "https://files.pythonhosted.org/packages/01/5d/1c53f4563490b1d06a684742cc6076ef944bc6457df6051b7d1a877c057b/propcache-0.4.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:405aac25c6394ef275dee4c709be43745d36674b223ba4eb7144bf4d691b7367", size = 230242, upload-time = "2025-10-08T19:46:51.815Z" },
- { url = "https://files.pythonhosted.org/packages/20/e1/ce4620633b0e2422207c3cb774a0ee61cac13abc6217763a7b9e2e3f4a12/propcache-0.4.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:0013cb6f8dde4b2a2f66903b8ba740bdfe378c943c4377a200551ceb27f379e4", size = 238474, upload-time = "2025-10-08T19:46:53.208Z" },
- { url = "https://files.pythonhosted.org/packages/46/4b/3aae6835b8e5f44ea6a68348ad90f78134047b503765087be2f9912140ea/propcache-0.4.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:15932ab57837c3368b024473a525e25d316d8353016e7cc0e5ba9eb343fbb1cf", size = 221575, upload-time = "2025-10-08T19:46:54.511Z" },
- { url = "https://files.pythonhosted.org/packages/6e/a5/8a5e8678bcc9d3a1a15b9a29165640d64762d424a16af543f00629c87338/propcache-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:031dce78b9dc099f4c29785d9cf5577a3faf9ebf74ecbd3c856a7b92768c3df3", size = 216736, upload-time = "2025-10-08T19:46:56.212Z" },
- { url = "https://files.pythonhosted.org/packages/f1/63/b7b215eddeac83ca1c6b934f89d09a625aa9ee4ba158338854c87210cc36/propcache-0.4.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:ab08df6c9a035bee56e31af99be621526bd237bea9f32def431c656b29e41778", size = 213019, upload-time = "2025-10-08T19:46:57.595Z" },
- { url = "https://files.pythonhosted.org/packages/57/74/f580099a58c8af587cac7ba19ee7cb418506342fbbe2d4a4401661cca886/propcache-0.4.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:4d7af63f9f93fe593afbf104c21b3b15868efb2c21d07d8732c0c4287e66b6a6", size = 220376, upload-time = "2025-10-08T19:46:59.067Z" },
- { url = "https://files.pythonhosted.org/packages/c4/ee/542f1313aff7eaf19c2bb758c5d0560d2683dac001a1c96d0774af799843/propcache-0.4.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:cfc27c945f422e8b5071b6e93169679e4eb5bf73bbcbf1ba3ae3a83d2f78ebd9", size = 226988, upload-time = "2025-10-08T19:47:00.544Z" },
- { url = "https://files.pythonhosted.org/packages/8f/18/9c6b015dd9c6930f6ce2229e1f02fb35298b847f2087ea2b436a5bfa7287/propcache-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:35c3277624a080cc6ec6f847cbbbb5b49affa3598c4535a0a4682a697aaa5c75", size = 215615, upload-time = "2025-10-08T19:47:01.968Z" },
- { url = "https://files.pythonhosted.org/packages/80/9e/e7b85720b98c45a45e1fca6a177024934dc9bc5f4d5dd04207f216fc33ed/propcache-0.4.1-cp312-cp312-win32.whl", hash = "sha256:671538c2262dadb5ba6395e26c1731e1d52534bfe9ae56d0b5573ce539266aa8", size = 38066, upload-time = "2025-10-08T19:47:03.503Z" },
- { url = "https://files.pythonhosted.org/packages/54/09/d19cff2a5aaac632ec8fc03737b223597b1e347416934c1b3a7df079784c/propcache-0.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:cb2d222e72399fcf5890d1d5cc1060857b9b236adff2792ff48ca2dfd46c81db", size = 41655, upload-time = "2025-10-08T19:47:04.973Z" },
- { url = "https://files.pythonhosted.org/packages/68/ab/6b5c191bb5de08036a8c697b265d4ca76148efb10fa162f14af14fb5f076/propcache-0.4.1-cp312-cp312-win_arm64.whl", hash = "sha256:204483131fb222bdaaeeea9f9e6c6ed0cac32731f75dfc1d4a567fc1926477c1", size = 37789, upload-time = "2025-10-08T19:47:06.077Z" },
- { url = "https://files.pythonhosted.org/packages/bf/df/6d9c1b6ac12b003837dde8a10231a7344512186e87b36e855bef32241942/propcache-0.4.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:43eedf29202c08550aac1d14e0ee619b0430aaef78f85864c1a892294fbc28cf", size = 77750, upload-time = "2025-10-08T19:47:07.648Z" },
- { url = "https://files.pythonhosted.org/packages/8b/e8/677a0025e8a2acf07d3418a2e7ba529c9c33caf09d3c1f25513023c1db56/propcache-0.4.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:d62cdfcfd89ccb8de04e0eda998535c406bf5e060ffd56be6c586cbcc05b3311", size = 44780, upload-time = "2025-10-08T19:47:08.851Z" },
- { url = "https://files.pythonhosted.org/packages/89/a4/92380f7ca60f99ebae761936bc48a72a639e8a47b29050615eef757cb2a7/propcache-0.4.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:cae65ad55793da34db5f54e4029b89d3b9b9490d8abe1b4c7ab5d4b8ec7ebf74", size = 46308, upload-time = "2025-10-08T19:47:09.982Z" },
- { url = "https://files.pythonhosted.org/packages/2d/48/c5ac64dee5262044348d1d78a5f85dd1a57464a60d30daee946699963eb3/propcache-0.4.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:333ddb9031d2704a301ee3e506dc46b1fe5f294ec198ed6435ad5b6a085facfe", size = 208182, upload-time = "2025-10-08T19:47:11.319Z" },
- { url = "https://files.pythonhosted.org/packages/c6/0c/cd762dd011a9287389a6a3eb43aa30207bde253610cca06824aeabfe9653/propcache-0.4.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:fd0858c20f078a32cf55f7e81473d96dcf3b93fd2ccdb3d40fdf54b8573df3af", size = 211215, upload-time = "2025-10-08T19:47:13.146Z" },
- { url = "https://files.pythonhosted.org/packages/30/3e/49861e90233ba36890ae0ca4c660e95df565b2cd15d4a68556ab5865974e/propcache-0.4.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:678ae89ebc632c5c204c794f8dab2837c5f159aeb59e6ed0539500400577298c", size = 218112, upload-time = "2025-10-08T19:47:14.913Z" },
- { url = "https://files.pythonhosted.org/packages/f1/8b/544bc867e24e1bd48f3118cecd3b05c694e160a168478fa28770f22fd094/propcache-0.4.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d472aeb4fbf9865e0c6d622d7f4d54a4e101a89715d8904282bb5f9a2f476c3f", size = 204442, upload-time = "2025-10-08T19:47:16.277Z" },
- { url = "https://files.pythonhosted.org/packages/50/a6/4282772fd016a76d3e5c0df58380a5ea64900afd836cec2c2f662d1b9bb3/propcache-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:4d3df5fa7e36b3225954fba85589da77a0fe6a53e3976de39caf04a0db4c36f1", size = 199398, upload-time = "2025-10-08T19:47:17.962Z" },
- { url = "https://files.pythonhosted.org/packages/3e/ec/d8a7cd406ee1ddb705db2139f8a10a8a427100347bd698e7014351c7af09/propcache-0.4.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:ee17f18d2498f2673e432faaa71698032b0127ebf23ae5974eeaf806c279df24", size = 196920, upload-time = "2025-10-08T19:47:19.355Z" },
- { url = "https://files.pythonhosted.org/packages/f6/6c/f38ab64af3764f431e359f8baf9e0a21013e24329e8b85d2da32e8ed07ca/propcache-0.4.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:580e97762b950f993ae618e167e7be9256b8353c2dcd8b99ec100eb50f5286aa", size = 203748, upload-time = "2025-10-08T19:47:21.338Z" },
- { url = "https://files.pythonhosted.org/packages/d6/e3/fa846bd70f6534d647886621388f0a265254d30e3ce47e5c8e6e27dbf153/propcache-0.4.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:501d20b891688eb8e7aa903021f0b72d5a55db40ffaab27edefd1027caaafa61", size = 205877, upload-time = "2025-10-08T19:47:23.059Z" },
- { url = "https://files.pythonhosted.org/packages/e2/39/8163fc6f3133fea7b5f2827e8eba2029a0277ab2c5beee6c1db7b10fc23d/propcache-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9a0bd56e5b100aef69bd8562b74b46254e7c8812918d3baa700c8a8009b0af66", size = 199437, upload-time = "2025-10-08T19:47:24.445Z" },
- { url = "https://files.pythonhosted.org/packages/93/89/caa9089970ca49c7c01662bd0eeedfe85494e863e8043565aeb6472ce8fe/propcache-0.4.1-cp313-cp313-win32.whl", hash = "sha256:bcc9aaa5d80322bc2fb24bb7accb4a30f81e90ab8d6ba187aec0744bc302ad81", size = 37586, upload-time = "2025-10-08T19:47:25.736Z" },
- { url = "https://files.pythonhosted.org/packages/f5/ab/f76ec3c3627c883215b5c8080debb4394ef5a7a29be811f786415fc1e6fd/propcache-0.4.1-cp313-cp313-win_amd64.whl", hash = "sha256:381914df18634f5494334d201e98245c0596067504b9372d8cf93f4bb23e025e", size = 40790, upload-time = "2025-10-08T19:47:26.847Z" },
- { url = "https://files.pythonhosted.org/packages/59/1b/e71ae98235f8e2ba5004d8cb19765a74877abf189bc53fc0c80d799e56c3/propcache-0.4.1-cp313-cp313-win_arm64.whl", hash = "sha256:8873eb4460fd55333ea49b7d189749ecf6e55bf85080f11b1c4530ed3034cba1", size = 37158, upload-time = "2025-10-08T19:47:27.961Z" },
- { url = "https://files.pythonhosted.org/packages/83/ce/a31bbdfc24ee0dcbba458c8175ed26089cf109a55bbe7b7640ed2470cfe9/propcache-0.4.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:92d1935ee1f8d7442da9c0c4fa7ac20d07e94064184811b685f5c4fada64553b", size = 81451, upload-time = "2025-10-08T19:47:29.445Z" },
- { url = "https://files.pythonhosted.org/packages/25/9c/442a45a470a68456e710d96cacd3573ef26a1d0a60067e6a7d5e655621ed/propcache-0.4.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:473c61b39e1460d386479b9b2f337da492042447c9b685f28be4f74d3529e566", size = 46374, upload-time = "2025-10-08T19:47:30.579Z" },
- { url = "https://files.pythonhosted.org/packages/f4/bf/b1d5e21dbc3b2e889ea4327044fb16312a736d97640fb8b6aa3f9c7b3b65/propcache-0.4.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:c0ef0aaafc66fbd87842a3fe3902fd889825646bc21149eafe47be6072725835", size = 48396, upload-time = "2025-10-08T19:47:31.79Z" },
- { url = "https://files.pythonhosted.org/packages/f4/04/5b4c54a103d480e978d3c8a76073502b18db0c4bc17ab91b3cb5092ad949/propcache-0.4.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f95393b4d66bfae908c3ca8d169d5f79cd65636ae15b5e7a4f6e67af675adb0e", size = 275950, upload-time = "2025-10-08T19:47:33.481Z" },
- { url = "https://files.pythonhosted.org/packages/b4/c1/86f846827fb969c4b78b0af79bba1d1ea2156492e1b83dea8b8a6ae27395/propcache-0.4.1-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c07fda85708bc48578467e85099645167a955ba093be0a2dcba962195676e859", size = 273856, upload-time = "2025-10-08T19:47:34.906Z" },
- { url = "https://files.pythonhosted.org/packages/36/1d/fc272a63c8d3bbad6878c336c7a7dea15e8f2d23a544bda43205dfa83ada/propcache-0.4.1-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:af223b406d6d000830c6f65f1e6431783fc3f713ba3e6cc8c024d5ee96170a4b", size = 280420, upload-time = "2025-10-08T19:47:36.338Z" },
- { url = "https://files.pythonhosted.org/packages/07/0c/01f2219d39f7e53d52e5173bcb09c976609ba30209912a0680adfb8c593a/propcache-0.4.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a78372c932c90ee474559c5ddfffd718238e8673c340dc21fe45c5b8b54559a0", size = 263254, upload-time = "2025-10-08T19:47:37.692Z" },
- { url = "https://files.pythonhosted.org/packages/2d/18/cd28081658ce597898f0c4d174d4d0f3c5b6d4dc27ffafeef835c95eb359/propcache-0.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:564d9f0d4d9509e1a870c920a89b2fec951b44bf5ba7d537a9e7c1ccec2c18af", size = 261205, upload-time = "2025-10-08T19:47:39.659Z" },
- { url = "https://files.pythonhosted.org/packages/7a/71/1f9e22eb8b8316701c2a19fa1f388c8a3185082607da8e406a803c9b954e/propcache-0.4.1-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:17612831fda0138059cc5546f4d12a2aacfb9e47068c06af35c400ba58ba7393", size = 247873, upload-time = "2025-10-08T19:47:41.084Z" },
- { url = "https://files.pythonhosted.org/packages/4a/65/3d4b61f36af2b4eddba9def857959f1016a51066b4f1ce348e0cf7881f58/propcache-0.4.1-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:41a89040cb10bd345b3c1a873b2bf36413d48da1def52f268a055f7398514874", size = 262739, upload-time = "2025-10-08T19:47:42.51Z" },
- { url = "https://files.pythonhosted.org/packages/2a/42/26746ab087faa77c1c68079b228810436ccd9a5ce9ac85e2b7307195fd06/propcache-0.4.1-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:e35b88984e7fa64aacecea39236cee32dd9bd8c55f57ba8a75cf2399553f9bd7", size = 263514, upload-time = "2025-10-08T19:47:43.927Z" },
- { url = "https://files.pythonhosted.org/packages/94/13/630690fe201f5502d2403dd3cfd451ed8858fe3c738ee88d095ad2ff407b/propcache-0.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:6f8b465489f927b0df505cbe26ffbeed4d6d8a2bbc61ce90eb074ff129ef0ab1", size = 257781, upload-time = "2025-10-08T19:47:45.448Z" },
- { url = "https://files.pythonhosted.org/packages/92/f7/1d4ec5841505f423469efbfc381d64b7b467438cd5a4bbcbb063f3b73d27/propcache-0.4.1-cp313-cp313t-win32.whl", hash = "sha256:2ad890caa1d928c7c2965b48f3a3815c853180831d0e5503d35cf00c472f4717", size = 41396, upload-time = "2025-10-08T19:47:47.202Z" },
- { url = "https://files.pythonhosted.org/packages/48/f0/615c30622316496d2cbbc29f5985f7777d3ada70f23370608c1d3e081c1f/propcache-0.4.1-cp313-cp313t-win_amd64.whl", hash = "sha256:f7ee0e597f495cf415bcbd3da3caa3bd7e816b74d0d52b8145954c5e6fd3ff37", size = 44897, upload-time = "2025-10-08T19:47:48.336Z" },
- { url = "https://files.pythonhosted.org/packages/fd/ca/6002e46eccbe0e33dcd4069ef32f7f1c9e243736e07adca37ae8c4830ec3/propcache-0.4.1-cp313-cp313t-win_arm64.whl", hash = "sha256:929d7cbe1f01bb7baffb33dc14eb5691c95831450a26354cd210a8155170c93a", size = 39789, upload-time = "2025-10-08T19:47:49.876Z" },
- { url = "https://files.pythonhosted.org/packages/8e/5c/bca52d654a896f831b8256683457ceddd490ec18d9ec50e97dfd8fc726a8/propcache-0.4.1-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:3f7124c9d820ba5548d431afb4632301acf965db49e666aa21c305cbe8c6de12", size = 78152, upload-time = "2025-10-08T19:47:51.051Z" },
- { url = "https://files.pythonhosted.org/packages/65/9b/03b04e7d82a5f54fb16113d839f5ea1ede58a61e90edf515f6577c66fa8f/propcache-0.4.1-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:c0d4b719b7da33599dfe3b22d3db1ef789210a0597bc650b7cee9c77c2be8c5c", size = 44869, upload-time = "2025-10-08T19:47:52.594Z" },
- { url = "https://files.pythonhosted.org/packages/b2/fa/89a8ef0468d5833a23fff277b143d0573897cf75bd56670a6d28126c7d68/propcache-0.4.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:9f302f4783709a78240ebc311b793f123328716a60911d667e0c036bc5dcbded", size = 46596, upload-time = "2025-10-08T19:47:54.073Z" },
- { url = "https://files.pythonhosted.org/packages/86/bd/47816020d337f4a746edc42fe8d53669965138f39ee117414c7d7a340cfe/propcache-0.4.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c80ee5802e3fb9ea37938e7eecc307fb984837091d5fd262bb37238b1ae97641", size = 206981, upload-time = "2025-10-08T19:47:55.715Z" },
- { url = "https://files.pythonhosted.org/packages/df/f6/c5fa1357cc9748510ee55f37173eb31bfde6d94e98ccd9e6f033f2fc06e1/propcache-0.4.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ed5a841e8bb29a55fb8159ed526b26adc5bdd7e8bd7bf793ce647cb08656cdf4", size = 211490, upload-time = "2025-10-08T19:47:57.499Z" },
- { url = "https://files.pythonhosted.org/packages/80/1e/e5889652a7c4a3846683401a48f0f2e5083ce0ec1a8a5221d8058fbd1adf/propcache-0.4.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:55c72fd6ea2da4c318e74ffdf93c4fe4e926051133657459131a95c846d16d44", size = 215371, upload-time = "2025-10-08T19:47:59.317Z" },
- { url = "https://files.pythonhosted.org/packages/b2/f2/889ad4b2408f72fe1a4f6a19491177b30ea7bf1a0fd5f17050ca08cfc882/propcache-0.4.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8326e144341460402713f91df60ade3c999d601e7eb5ff8f6f7862d54de0610d", size = 201424, upload-time = "2025-10-08T19:48:00.67Z" },
- { url = "https://files.pythonhosted.org/packages/27/73/033d63069b57b0812c8bd19f311faebeceb6ba31b8f32b73432d12a0b826/propcache-0.4.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:060b16ae65bc098da7f6d25bf359f1f31f688384858204fe5d652979e0015e5b", size = 197566, upload-time = "2025-10-08T19:48:02.604Z" },
- { url = "https://files.pythonhosted.org/packages/dc/89/ce24f3dc182630b4e07aa6d15f0ff4b14ed4b9955fae95a0b54c58d66c05/propcache-0.4.1-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:89eb3fa9524f7bec9de6e83cf3faed9d79bffa560672c118a96a171a6f55831e", size = 193130, upload-time = "2025-10-08T19:48:04.499Z" },
- { url = "https://files.pythonhosted.org/packages/a9/24/ef0d5fd1a811fb5c609278d0209c9f10c35f20581fcc16f818da959fc5b4/propcache-0.4.1-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:dee69d7015dc235f526fe80a9c90d65eb0039103fe565776250881731f06349f", size = 202625, upload-time = "2025-10-08T19:48:06.213Z" },
- { url = "https://files.pythonhosted.org/packages/f5/02/98ec20ff5546f68d673df2f7a69e8c0d076b5abd05ca882dc7ee3a83653d/propcache-0.4.1-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:5558992a00dfd54ccbc64a32726a3357ec93825a418a401f5cc67df0ac5d9e49", size = 204209, upload-time = "2025-10-08T19:48:08.432Z" },
- { url = "https://files.pythonhosted.org/packages/a0/87/492694f76759b15f0467a2a93ab68d32859672b646aa8a04ce4864e7932d/propcache-0.4.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:c9b822a577f560fbd9554812526831712c1436d2c046cedee4c3796d3543b144", size = 197797, upload-time = "2025-10-08T19:48:09.968Z" },
- { url = "https://files.pythonhosted.org/packages/ee/36/66367de3575db1d2d3f3d177432bd14ee577a39d3f5d1b3d5df8afe3b6e2/propcache-0.4.1-cp314-cp314-win32.whl", hash = "sha256:ab4c29b49d560fe48b696cdcb127dd36e0bc2472548f3bf56cc5cb3da2b2984f", size = 38140, upload-time = "2025-10-08T19:48:11.232Z" },
- { url = "https://files.pythonhosted.org/packages/0c/2a/a758b47de253636e1b8aef181c0b4f4f204bf0dd964914fb2af90a95b49b/propcache-0.4.1-cp314-cp314-win_amd64.whl", hash = "sha256:5a103c3eb905fcea0ab98be99c3a9a5ab2de60228aa5aceedc614c0281cf6153", size = 41257, upload-time = "2025-10-08T19:48:12.707Z" },
- { url = "https://files.pythonhosted.org/packages/34/5e/63bd5896c3fec12edcbd6f12508d4890d23c265df28c74b175e1ef9f4f3b/propcache-0.4.1-cp314-cp314-win_arm64.whl", hash = "sha256:74c1fb26515153e482e00177a1ad654721bf9207da8a494a0c05e797ad27b992", size = 38097, upload-time = "2025-10-08T19:48:13.923Z" },
- { url = "https://files.pythonhosted.org/packages/99/85/9ff785d787ccf9bbb3f3106f79884a130951436f58392000231b4c737c80/propcache-0.4.1-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:824e908bce90fb2743bd6b59db36eb4f45cd350a39637c9f73b1c1ea66f5b75f", size = 81455, upload-time = "2025-10-08T19:48:15.16Z" },
- { url = "https://files.pythonhosted.org/packages/90/85/2431c10c8e7ddb1445c1f7c4b54d886e8ad20e3c6307e7218f05922cad67/propcache-0.4.1-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:c2b5e7db5328427c57c8e8831abda175421b709672f6cfc3d630c3b7e2146393", size = 46372, upload-time = "2025-10-08T19:48:16.424Z" },
- { url = "https://files.pythonhosted.org/packages/01/20/b0972d902472da9bcb683fa595099911f4d2e86e5683bcc45de60dd05dc3/propcache-0.4.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:6f6ff873ed40292cd4969ef5310179afd5db59fdf055897e282485043fc80ad0", size = 48411, upload-time = "2025-10-08T19:48:17.577Z" },
- { url = "https://files.pythonhosted.org/packages/e2/e3/7dc89f4f21e8f99bad3d5ddb3a3389afcf9da4ac69e3deb2dcdc96e74169/propcache-0.4.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:49a2dc67c154db2c1463013594c458881a069fcf98940e61a0569016a583020a", size = 275712, upload-time = "2025-10-08T19:48:18.901Z" },
- { url = "https://files.pythonhosted.org/packages/20/67/89800c8352489b21a8047c773067644e3897f02ecbbd610f4d46b7f08612/propcache-0.4.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:005f08e6a0529984491e37d8dbc3dd86f84bd78a8ceb5fa9a021f4c48d4984be", size = 273557, upload-time = "2025-10-08T19:48:20.762Z" },
- { url = "https://files.pythonhosted.org/packages/e2/a1/b52b055c766a54ce6d9c16d9aca0cad8059acd9637cdf8aa0222f4a026ef/propcache-0.4.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5c3310452e0d31390da9035c348633b43d7e7feb2e37be252be6da45abd1abcc", size = 280015, upload-time = "2025-10-08T19:48:22.592Z" },
- { url = "https://files.pythonhosted.org/packages/48/c8/33cee30bd890672c63743049f3c9e4be087e6780906bfc3ec58528be59c1/propcache-0.4.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4c3c70630930447f9ef1caac7728c8ad1c56bc5015338b20fed0d08ea2480b3a", size = 262880, upload-time = "2025-10-08T19:48:23.947Z" },
- { url = "https://files.pythonhosted.org/packages/0c/b1/8f08a143b204b418285c88b83d00edbd61afbc2c6415ffafc8905da7038b/propcache-0.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:8e57061305815dfc910a3634dcf584f08168a8836e6999983569f51a8544cd89", size = 260938, upload-time = "2025-10-08T19:48:25.656Z" },
- { url = "https://files.pythonhosted.org/packages/cf/12/96e4664c82ca2f31e1c8dff86afb867348979eb78d3cb8546a680287a1e9/propcache-0.4.1-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:521a463429ef54143092c11a77e04056dd00636f72e8c45b70aaa3140d639726", size = 247641, upload-time = "2025-10-08T19:48:27.207Z" },
- { url = "https://files.pythonhosted.org/packages/18/ed/e7a9cfca28133386ba52278136d42209d3125db08d0a6395f0cba0c0285c/propcache-0.4.1-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:120c964da3fdc75e3731aa392527136d4ad35868cc556fd09bb6d09172d9a367", size = 262510, upload-time = "2025-10-08T19:48:28.65Z" },
- { url = "https://files.pythonhosted.org/packages/f5/76/16d8bf65e8845dd62b4e2b57444ab81f07f40caa5652b8969b87ddcf2ef6/propcache-0.4.1-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:d8f353eb14ee3441ee844ade4277d560cdd68288838673273b978e3d6d2c8f36", size = 263161, upload-time = "2025-10-08T19:48:30.133Z" },
- { url = "https://files.pythonhosted.org/packages/e7/70/c99e9edb5d91d5ad8a49fa3c1e8285ba64f1476782fed10ab251ff413ba1/propcache-0.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:ab2943be7c652f09638800905ee1bab2c544e537edb57d527997a24c13dc1455", size = 257393, upload-time = "2025-10-08T19:48:31.567Z" },
- { url = "https://files.pythonhosted.org/packages/08/02/87b25304249a35c0915d236575bc3574a323f60b47939a2262b77632a3ee/propcache-0.4.1-cp314-cp314t-win32.whl", hash = "sha256:05674a162469f31358c30bcaa8883cb7829fa3110bf9c0991fe27d7896c42d85", size = 42546, upload-time = "2025-10-08T19:48:32.872Z" },
- { url = "https://files.pythonhosted.org/packages/cb/ef/3c6ecf8b317aa982f309835e8f96987466123c6e596646d4e6a1dfcd080f/propcache-0.4.1-cp314-cp314t-win_amd64.whl", hash = "sha256:990f6b3e2a27d683cb7602ed6c86f15ee6b43b1194736f9baaeb93d0016633b1", size = 46259, upload-time = "2025-10-08T19:48:34.226Z" },
- { url = "https://files.pythonhosted.org/packages/c4/2d/346e946d4951f37eca1e4f55be0f0174c52cd70720f84029b02f296f4a38/propcache-0.4.1-cp314-cp314t-win_arm64.whl", hash = "sha256:ecef2343af4cc68e05131e45024ba34f6095821988a9d0a02aa7c73fcc448aa9", size = 40428, upload-time = "2025-10-08T19:48:35.441Z" },
- { url = "https://files.pythonhosted.org/packages/5b/5a/bc7b4a4ef808fa59a816c17b20c4bef6884daebbdf627ff2a161da67da19/propcache-0.4.1-py3-none-any.whl", hash = "sha256:af2a6052aeb6cf17d3e46ee169099044fd8224cbaf75c76a2ef596e8163e2237", size = 13305, upload-time = "2025-10-08T19:49:00.792Z" },
-]
-
-[[package]]
-name = "protobuf"
-version = "6.33.5"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/ba/25/7c72c307aafc96fa87062aa6291d9f7c94836e43214d43722e86037aac02/protobuf-6.33.5.tar.gz", hash = "sha256:6ddcac2a081f8b7b9642c09406bc6a4290128fce5f471cddd165960bb9119e5c", size = 444465, upload-time = "2026-01-29T21:51:33.494Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/b1/79/af92d0a8369732b027e6d6084251dd8e782c685c72da161bd4a2e00fbabb/protobuf-6.33.5-cp310-abi3-win32.whl", hash = "sha256:d71b040839446bac0f4d162e758bea99c8251161dae9d0983a3b88dee345153b", size = 425769, upload-time = "2026-01-29T21:51:21.751Z" },
- { url = "https://files.pythonhosted.org/packages/55/75/bb9bc917d10e9ee13dee8607eb9ab963b7cf8be607c46e7862c748aa2af7/protobuf-6.33.5-cp310-abi3-win_amd64.whl", hash = "sha256:3093804752167bcab3998bec9f1048baae6e29505adaf1afd14a37bddede533c", size = 437118, upload-time = "2026-01-29T21:51:24.022Z" },
- { url = "https://files.pythonhosted.org/packages/a2/6b/e48dfc1191bc5b52950246275bf4089773e91cb5ba3592621723cdddca62/protobuf-6.33.5-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:a5cb85982d95d906df1e2210e58f8e4f1e3cdc088e52c921a041f9c9a0386de5", size = 427766, upload-time = "2026-01-29T21:51:25.413Z" },
- { url = "https://files.pythonhosted.org/packages/4e/b1/c79468184310de09d75095ed1314b839eb2f72df71097db9d1404a1b2717/protobuf-6.33.5-cp39-abi3-manylinux2014_aarch64.whl", hash = "sha256:9b71e0281f36f179d00cbcb119cb19dec4d14a81393e5ea220f64b286173e190", size = 324638, upload-time = "2026-01-29T21:51:26.423Z" },
- { url = "https://files.pythonhosted.org/packages/c5/f5/65d838092fd01c44d16037953fd4c2cc851e783de9b8f02b27ec4ffd906f/protobuf-6.33.5-cp39-abi3-manylinux2014_s390x.whl", hash = "sha256:8afa18e1d6d20af15b417e728e9f60f3aa108ee76f23c3b2c07a2c3b546d3afd", size = 339411, upload-time = "2026-01-29T21:51:27.446Z" },
- { url = "https://files.pythonhosted.org/packages/9b/53/a9443aa3ca9ba8724fdfa02dd1887c1bcd8e89556b715cfbacca6b63dbec/protobuf-6.33.5-cp39-abi3-manylinux2014_x86_64.whl", hash = "sha256:cbf16ba3350fb7b889fca858fb215967792dc125b35c7976ca4818bee3521cf0", size = 323465, upload-time = "2026-01-29T21:51:28.925Z" },
- { url = "https://files.pythonhosted.org/packages/57/bf/2086963c69bdac3d7cff1cc7ff79b8ce5ea0bec6797a017e1be338a46248/protobuf-6.33.5-py3-none-any.whl", hash = "sha256:69915a973dd0f60f31a08b8318b73eab2bd6a392c79184b3612226b0a3f8ec02", size = 170687, upload-time = "2026-01-29T21:51:32.557Z" },
-]
-
-[[package]]
-name = "pyarrow"
-version = "20.0.0"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/a2/ee/a7810cb9f3d6e9238e61d312076a9859bf3668fd21c69744de9532383912/pyarrow-20.0.0.tar.gz", hash = "sha256:febc4a913592573c8d5805091a6c2b5064c8bd6e002131f01061797d91c783c1", size = 1125187, upload-time = "2025-04-27T12:34:23.264Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/47/a2/b7930824181ceadd0c63c1042d01fa4ef63eee233934826a7a2a9af6e463/pyarrow-20.0.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:24ca380585444cb2a31324c546a9a56abbe87e26069189e14bdba19c86c049f0", size = 30856035, upload-time = "2025-04-27T12:28:40.78Z" },
- { url = "https://files.pythonhosted.org/packages/9b/18/c765770227d7f5bdfa8a69f64b49194352325c66a5c3bb5e332dfd5867d9/pyarrow-20.0.0-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:95b330059ddfdc591a3225f2d272123be26c8fa76e8c9ee1a77aad507361cfdb", size = 32309552, upload-time = "2025-04-27T12:28:47.051Z" },
- { url = "https://files.pythonhosted.org/packages/44/fb/dfb2dfdd3e488bb14f822d7335653092dde150cffc2da97de6e7500681f9/pyarrow-20.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5f0fb1041267e9968c6d0d2ce3ff92e3928b243e2b6d11eeb84d9ac547308232", size = 41334704, upload-time = "2025-04-27T12:28:55.064Z" },
- { url = "https://files.pythonhosted.org/packages/58/0d/08a95878d38808051a953e887332d4a76bc06c6ee04351918ee1155407eb/pyarrow-20.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b8ff87cc837601532cc8242d2f7e09b4e02404de1b797aee747dd4ba4bd6313f", size = 42399836, upload-time = "2025-04-27T12:29:02.13Z" },
- { url = "https://files.pythonhosted.org/packages/f3/cd/efa271234dfe38f0271561086eedcad7bc0f2ddd1efba423916ff0883684/pyarrow-20.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:7a3a5dcf54286e6141d5114522cf31dd67a9e7c9133d150799f30ee302a7a1ab", size = 40711789, upload-time = "2025-04-27T12:29:09.951Z" },
- { url = "https://files.pythonhosted.org/packages/46/1f/7f02009bc7fc8955c391defee5348f510e589a020e4b40ca05edcb847854/pyarrow-20.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:a6ad3e7758ecf559900261a4df985662df54fb7fdb55e8e3b3aa99b23d526b62", size = 42301124, upload-time = "2025-04-27T12:29:17.187Z" },
- { url = "https://files.pythonhosted.org/packages/4f/92/692c562be4504c262089e86757a9048739fe1acb4024f92d39615e7bab3f/pyarrow-20.0.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6bb830757103a6cb300a04610e08d9636f0cd223d32f388418ea893a3e655f1c", size = 42916060, upload-time = "2025-04-27T12:29:24.253Z" },
- { url = "https://files.pythonhosted.org/packages/a4/ec/9f5c7e7c828d8e0a3c7ef50ee62eca38a7de2fa6eb1b8fa43685c9414fef/pyarrow-20.0.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:96e37f0766ecb4514a899d9a3554fadda770fb57ddf42b63d80f14bc20aa7db3", size = 44547640, upload-time = "2025-04-27T12:29:32.782Z" },
- { url = "https://files.pythonhosted.org/packages/54/96/46613131b4727f10fd2ffa6d0d6f02efcc09a0e7374eff3b5771548aa95b/pyarrow-20.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:3346babb516f4b6fd790da99b98bed9708e3f02e734c84971faccb20736848dc", size = 25781491, upload-time = "2025-04-27T12:29:38.464Z" },
- { url = "https://files.pythonhosted.org/packages/a1/d6/0c10e0d54f6c13eb464ee9b67a68b8c71bcf2f67760ef5b6fbcddd2ab05f/pyarrow-20.0.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:75a51a5b0eef32727a247707d4755322cb970be7e935172b6a3a9f9ae98404ba", size = 30815067, upload-time = "2025-04-27T12:29:44.384Z" },
- { url = "https://files.pythonhosted.org/packages/7e/e2/04e9874abe4094a06fd8b0cbb0f1312d8dd7d707f144c2ec1e5e8f452ffa/pyarrow-20.0.0-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:211d5e84cecc640c7a3ab900f930aaff5cd2702177e0d562d426fb7c4f737781", size = 32297128, upload-time = "2025-04-27T12:29:52.038Z" },
- { url = "https://files.pythonhosted.org/packages/31/fd/c565e5dcc906a3b471a83273039cb75cb79aad4a2d4a12f76cc5ae90a4b8/pyarrow-20.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4ba3cf4182828be7a896cbd232aa8dd6a31bd1f9e32776cc3796c012855e1199", size = 41334890, upload-time = "2025-04-27T12:29:59.452Z" },
- { url = "https://files.pythonhosted.org/packages/af/a9/3bdd799e2c9b20c1ea6dc6fa8e83f29480a97711cf806e823f808c2316ac/pyarrow-20.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2c3a01f313ffe27ac4126f4c2e5ea0f36a5fc6ab51f8726cf41fee4b256680bd", size = 42421775, upload-time = "2025-04-27T12:30:06.875Z" },
- { url = "https://files.pythonhosted.org/packages/10/f7/da98ccd86354c332f593218101ae56568d5dcedb460e342000bd89c49cc1/pyarrow-20.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:a2791f69ad72addd33510fec7bb14ee06c2a448e06b649e264c094c5b5f7ce28", size = 40687231, upload-time = "2025-04-27T12:30:13.954Z" },
- { url = "https://files.pythonhosted.org/packages/bb/1b/2168d6050e52ff1e6cefc61d600723870bf569cbf41d13db939c8cf97a16/pyarrow-20.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:4250e28a22302ce8692d3a0e8ec9d9dde54ec00d237cff4dfa9c1fbf79e472a8", size = 42295639, upload-time = "2025-04-27T12:30:21.949Z" },
- { url = "https://files.pythonhosted.org/packages/b2/66/2d976c0c7158fd25591c8ca55aee026e6d5745a021915a1835578707feb3/pyarrow-20.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:89e030dc58fc760e4010148e6ff164d2f44441490280ef1e97a542375e41058e", size = 42908549, upload-time = "2025-04-27T12:30:29.551Z" },
- { url = "https://files.pythonhosted.org/packages/31/a9/dfb999c2fc6911201dcbf348247f9cc382a8990f9ab45c12eabfd7243a38/pyarrow-20.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:6102b4864d77102dbbb72965618e204e550135a940c2534711d5ffa787df2a5a", size = 44557216, upload-time = "2025-04-27T12:30:36.977Z" },
- { url = "https://files.pythonhosted.org/packages/a0/8e/9adee63dfa3911be2382fb4d92e4b2e7d82610f9d9f668493bebaa2af50f/pyarrow-20.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:96d6a0a37d9c98be08f5ed6a10831d88d52cac7b13f5287f1e0f625a0de8062b", size = 25660496, upload-time = "2025-04-27T12:30:42.809Z" },
- { url = "https://files.pythonhosted.org/packages/9b/aa/daa413b81446d20d4dad2944110dcf4cf4f4179ef7f685dd5a6d7570dc8e/pyarrow-20.0.0-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:a15532e77b94c61efadde86d10957950392999503b3616b2ffcef7621a002893", size = 30798501, upload-time = "2025-04-27T12:30:48.351Z" },
- { url = "https://files.pythonhosted.org/packages/ff/75/2303d1caa410925de902d32ac215dc80a7ce7dd8dfe95358c165f2adf107/pyarrow-20.0.0-cp313-cp313-macosx_12_0_x86_64.whl", hash = "sha256:dd43f58037443af715f34f1322c782ec463a3c8a94a85fdb2d987ceb5658e061", size = 32277895, upload-time = "2025-04-27T12:30:55.238Z" },
- { url = "https://files.pythonhosted.org/packages/92/41/fe18c7c0b38b20811b73d1bdd54b1fccba0dab0e51d2048878042d84afa8/pyarrow-20.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aa0d288143a8585806e3cc7c39566407aab646fb9ece164609dac1cfff45f6ae", size = 41327322, upload-time = "2025-04-27T12:31:05.587Z" },
- { url = "https://files.pythonhosted.org/packages/da/ab/7dbf3d11db67c72dbf36ae63dcbc9f30b866c153b3a22ef728523943eee6/pyarrow-20.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b6953f0114f8d6f3d905d98e987d0924dabce59c3cda380bdfaa25a6201563b4", size = 42411441, upload-time = "2025-04-27T12:31:15.675Z" },
- { url = "https://files.pythonhosted.org/packages/90/c3/0c7da7b6dac863af75b64e2f827e4742161128c350bfe7955b426484e226/pyarrow-20.0.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:991f85b48a8a5e839b2128590ce07611fae48a904cae6cab1f089c5955b57eb5", size = 40677027, upload-time = "2025-04-27T12:31:24.631Z" },
- { url = "https://files.pythonhosted.org/packages/be/27/43a47fa0ff9053ab5203bb3faeec435d43c0d8bfa40179bfd076cdbd4e1c/pyarrow-20.0.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:97c8dc984ed09cb07d618d57d8d4b67a5100a30c3818c2fb0b04599f0da2de7b", size = 42281473, upload-time = "2025-04-27T12:31:31.311Z" },
- { url = "https://files.pythonhosted.org/packages/bc/0b/d56c63b078876da81bbb9ba695a596eabee9b085555ed12bf6eb3b7cab0e/pyarrow-20.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:9b71daf534f4745818f96c214dbc1e6124d7daf059167330b610fc69b6f3d3e3", size = 42893897, upload-time = "2025-04-27T12:31:39.406Z" },
- { url = "https://files.pythonhosted.org/packages/92/ac/7d4bd020ba9145f354012838692d48300c1b8fe5634bfda886abcada67ed/pyarrow-20.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e8b88758f9303fa5a83d6c90e176714b2fd3852e776fc2d7e42a22dd6c2fb368", size = 44543847, upload-time = "2025-04-27T12:31:45.997Z" },
- { url = "https://files.pythonhosted.org/packages/9d/07/290f4abf9ca702c5df7b47739c1b2c83588641ddfa2cc75e34a301d42e55/pyarrow-20.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:30b3051b7975801c1e1d387e17c588d8ab05ced9b1e14eec57915f79869b5031", size = 25653219, upload-time = "2025-04-27T12:31:54.11Z" },
- { url = "https://files.pythonhosted.org/packages/95/df/720bb17704b10bd69dde086e1400b8eefb8f58df3f8ac9cff6c425bf57f1/pyarrow-20.0.0-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:ca151afa4f9b7bc45bcc791eb9a89e90a9eb2772767d0b1e5389609c7d03db63", size = 30853957, upload-time = "2025-04-27T12:31:59.215Z" },
- { url = "https://files.pythonhosted.org/packages/d9/72/0d5f875efc31baef742ba55a00a25213a19ea64d7176e0fe001c5d8b6e9a/pyarrow-20.0.0-cp313-cp313t-macosx_12_0_x86_64.whl", hash = "sha256:4680f01ecd86e0dd63e39eb5cd59ef9ff24a9d166db328679e36c108dc993d4c", size = 32247972, upload-time = "2025-04-27T12:32:05.369Z" },
- { url = "https://files.pythonhosted.org/packages/d5/bc/e48b4fa544d2eea72f7844180eb77f83f2030b84c8dad860f199f94307ed/pyarrow-20.0.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7f4c8534e2ff059765647aa69b75d6543f9fef59e2cd4c6d18015192565d2b70", size = 41256434, upload-time = "2025-04-27T12:32:11.814Z" },
- { url = "https://files.pythonhosted.org/packages/c3/01/974043a29874aa2cf4f87fb07fd108828fc7362300265a2a64a94965e35b/pyarrow-20.0.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3e1f8a47f4b4ae4c69c4d702cfbdfe4d41e18e5c7ef6f1bb1c50918c1e81c57b", size = 42353648, upload-time = "2025-04-27T12:32:20.766Z" },
- { url = "https://files.pythonhosted.org/packages/68/95/cc0d3634cde9ca69b0e51cbe830d8915ea32dda2157560dda27ff3b3337b/pyarrow-20.0.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:a1f60dc14658efaa927f8214734f6a01a806d7690be4b3232ba526836d216122", size = 40619853, upload-time = "2025-04-27T12:32:28.1Z" },
- { url = "https://files.pythonhosted.org/packages/29/c2/3ad40e07e96a3e74e7ed7cc8285aadfa84eb848a798c98ec0ad009eb6bcc/pyarrow-20.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:204a846dca751428991346976b914d6d2a82ae5b8316a6ed99789ebf976551e6", size = 42241743, upload-time = "2025-04-27T12:32:35.792Z" },
- { url = "https://files.pythonhosted.org/packages/eb/cb/65fa110b483339add6a9bc7b6373614166b14e20375d4daa73483755f830/pyarrow-20.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:f3b117b922af5e4c6b9a9115825726cac7d8b1421c37c2b5e24fbacc8930612c", size = 42839441, upload-time = "2025-04-27T12:32:46.64Z" },
- { url = "https://files.pythonhosted.org/packages/98/7b/f30b1954589243207d7a0fbc9997401044bf9a033eec78f6cb50da3f304a/pyarrow-20.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:e724a3fd23ae5b9c010e7be857f4405ed5e679db5c93e66204db1a69f733936a", size = 44503279, upload-time = "2025-04-27T12:32:56.503Z" },
- { url = "https://files.pythonhosted.org/packages/37/40/ad395740cd641869a13bcf60851296c89624662575621968dcfafabaa7f6/pyarrow-20.0.0-cp313-cp313t-win_amd64.whl", hash = "sha256:82f1ee5133bd8f49d31be1299dc07f585136679666b502540db854968576faf9", size = 25944982, upload-time = "2025-04-27T12:33:04.72Z" },
-]
-
-[[package]]
-name = "pydantic"
-version = "2.12.5"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "annotated-types" },
- { name = "pydantic-core" },
- { name = "typing-extensions" },
- { name = "typing-inspection" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/69/44/36f1a6e523abc58ae5f928898e4aca2e0ea509b5aa6f6f392a5d882be928/pydantic-2.12.5.tar.gz", hash = "sha256:4d351024c75c0f085a9febbb665ce8c0c6ec5d30e903bdb6394b7ede26aebb49", size = 821591, upload-time = "2025-11-26T15:11:46.471Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/5a/87/b70ad306ebb6f9b585f114d0ac2137d792b48be34d732d60e597c2f8465a/pydantic-2.12.5-py3-none-any.whl", hash = "sha256:e561593fccf61e8a20fc46dfc2dfe075b8be7d0188df33f221ad1f0139180f9d", size = 463580, upload-time = "2025-11-26T15:11:44.605Z" },
-]
-
-[[package]]
-name = "pydantic-core"
-version = "2.41.5"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "typing-extensions" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/71/70/23b021c950c2addd24ec408e9ab05d59b035b39d97cdc1130e1bce647bb6/pydantic_core-2.41.5.tar.gz", hash = "sha256:08daa51ea16ad373ffd5e7606252cc32f07bc72b28284b6bc9c6df804816476e", size = 460952, upload-time = "2025-11-04T13:43:49.098Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/e8/72/74a989dd9f2084b3d9530b0915fdda64ac48831c30dbf7c72a41a5232db8/pydantic_core-2.41.5-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:a3a52f6156e73e7ccb0f8cced536adccb7042be67cb45f9562e12b319c119da6", size = 2105873, upload-time = "2025-11-04T13:39:31.373Z" },
- { url = "https://files.pythonhosted.org/packages/12/44/37e403fd9455708b3b942949e1d7febc02167662bf1a7da5b78ee1ea2842/pydantic_core-2.41.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7f3bf998340c6d4b0c9a2f02d6a400e51f123b59565d74dc60d252ce888c260b", size = 1899826, upload-time = "2025-11-04T13:39:32.897Z" },
- { url = "https://files.pythonhosted.org/packages/33/7f/1d5cab3ccf44c1935a359d51a8a2a9e1a654b744b5e7f80d41b88d501eec/pydantic_core-2.41.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:378bec5c66998815d224c9ca994f1e14c0c21cb95d2f52b6021cc0b2a58f2a5a", size = 1917869, upload-time = "2025-11-04T13:39:34.469Z" },
- { url = "https://files.pythonhosted.org/packages/6e/6a/30d94a9674a7fe4f4744052ed6c5e083424510be1e93da5bc47569d11810/pydantic_core-2.41.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e7b576130c69225432866fe2f4a469a85a54ade141d96fd396dffcf607b558f8", size = 2063890, upload-time = "2025-11-04T13:39:36.053Z" },
- { url = "https://files.pythonhosted.org/packages/50/be/76e5d46203fcb2750e542f32e6c371ffa9b8ad17364cf94bb0818dbfb50c/pydantic_core-2.41.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6cb58b9c66f7e4179a2d5e0f849c48eff5c1fca560994d6eb6543abf955a149e", size = 2229740, upload-time = "2025-11-04T13:39:37.753Z" },
- { url = "https://files.pythonhosted.org/packages/d3/ee/fed784df0144793489f87db310a6bbf8118d7b630ed07aa180d6067e653a/pydantic_core-2.41.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:88942d3a3dff3afc8288c21e565e476fc278902ae4d6d134f1eeda118cc830b1", size = 2350021, upload-time = "2025-11-04T13:39:40.94Z" },
- { url = "https://files.pythonhosted.org/packages/c8/be/8fed28dd0a180dca19e72c233cbf58efa36df055e5b9d90d64fd1740b828/pydantic_core-2.41.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f31d95a179f8d64d90f6831d71fa93290893a33148d890ba15de25642c5d075b", size = 2066378, upload-time = "2025-11-04T13:39:42.523Z" },
- { url = "https://files.pythonhosted.org/packages/b0/3b/698cf8ae1d536a010e05121b4958b1257f0b5522085e335360e53a6b1c8b/pydantic_core-2.41.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c1df3d34aced70add6f867a8cf413e299177e0c22660cc767218373d0779487b", size = 2175761, upload-time = "2025-11-04T13:39:44.553Z" },
- { url = "https://files.pythonhosted.org/packages/b8/ba/15d537423939553116dea94ce02f9c31be0fa9d0b806d427e0308ec17145/pydantic_core-2.41.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:4009935984bd36bd2c774e13f9a09563ce8de4abaa7226f5108262fa3e637284", size = 2146303, upload-time = "2025-11-04T13:39:46.238Z" },
- { url = "https://files.pythonhosted.org/packages/58/7f/0de669bf37d206723795f9c90c82966726a2ab06c336deba4735b55af431/pydantic_core-2.41.5-cp311-cp311-musllinux_1_1_armv7l.whl", hash = "sha256:34a64bc3441dc1213096a20fe27e8e128bd3ff89921706e83c0b1ac971276594", size = 2340355, upload-time = "2025-11-04T13:39:48.002Z" },
- { url = "https://files.pythonhosted.org/packages/e5/de/e7482c435b83d7e3c3ee5ee4451f6e8973cff0eb6007d2872ce6383f6398/pydantic_core-2.41.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:c9e19dd6e28fdcaa5a1de679aec4141f691023916427ef9bae8584f9c2fb3b0e", size = 2319875, upload-time = "2025-11-04T13:39:49.705Z" },
- { url = "https://files.pythonhosted.org/packages/fe/e6/8c9e81bb6dd7560e33b9053351c29f30c8194b72f2d6932888581f503482/pydantic_core-2.41.5-cp311-cp311-win32.whl", hash = "sha256:2c010c6ded393148374c0f6f0bf89d206bf3217f201faa0635dcd56bd1520f6b", size = 1987549, upload-time = "2025-11-04T13:39:51.842Z" },
- { url = "https://files.pythonhosted.org/packages/11/66/f14d1d978ea94d1bc21fc98fcf570f9542fe55bfcc40269d4e1a21c19bf7/pydantic_core-2.41.5-cp311-cp311-win_amd64.whl", hash = "sha256:76ee27c6e9c7f16f47db7a94157112a2f3a00e958bc626e2f4ee8bec5c328fbe", size = 2011305, upload-time = "2025-11-04T13:39:53.485Z" },
- { url = "https://files.pythonhosted.org/packages/56/d8/0e271434e8efd03186c5386671328154ee349ff0354d83c74f5caaf096ed/pydantic_core-2.41.5-cp311-cp311-win_arm64.whl", hash = "sha256:4bc36bbc0b7584de96561184ad7f012478987882ebf9f9c389b23f432ea3d90f", size = 1972902, upload-time = "2025-11-04T13:39:56.488Z" },
- { url = "https://files.pythonhosted.org/packages/5f/5d/5f6c63eebb5afee93bcaae4ce9a898f3373ca23df3ccaef086d0233a35a7/pydantic_core-2.41.5-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:f41a7489d32336dbf2199c8c0a215390a751c5b014c2c1c5366e817202e9cdf7", size = 2110990, upload-time = "2025-11-04T13:39:58.079Z" },
- { url = "https://files.pythonhosted.org/packages/aa/32/9c2e8ccb57c01111e0fd091f236c7b371c1bccea0fa85247ac55b1e2b6b6/pydantic_core-2.41.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:070259a8818988b9a84a449a2a7337c7f430a22acc0859c6b110aa7212a6d9c0", size = 1896003, upload-time = "2025-11-04T13:39:59.956Z" },
- { url = "https://files.pythonhosted.org/packages/68/b8/a01b53cb0e59139fbc9e4fda3e9724ede8de279097179be4ff31f1abb65a/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e96cea19e34778f8d59fe40775a7a574d95816eb150850a85a7a4c8f4b94ac69", size = 1919200, upload-time = "2025-11-04T13:40:02.241Z" },
- { url = "https://files.pythonhosted.org/packages/38/de/8c36b5198a29bdaade07b5985e80a233a5ac27137846f3bc2d3b40a47360/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ed2e99c456e3fadd05c991f8f437ef902e00eedf34320ba2b0842bd1c3ca3a75", size = 2052578, upload-time = "2025-11-04T13:40:04.401Z" },
- { url = "https://files.pythonhosted.org/packages/00/b5/0e8e4b5b081eac6cb3dbb7e60a65907549a1ce035a724368c330112adfdd/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:65840751b72fbfd82c3c640cff9284545342a4f1eb1586ad0636955b261b0b05", size = 2208504, upload-time = "2025-11-04T13:40:06.072Z" },
- { url = "https://files.pythonhosted.org/packages/77/56/87a61aad59c7c5b9dc8caad5a41a5545cba3810c3e828708b3d7404f6cef/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e536c98a7626a98feb2d3eaf75944ef6f3dbee447e1f841eae16f2f0a72d8ddc", size = 2335816, upload-time = "2025-11-04T13:40:07.835Z" },
- { url = "https://files.pythonhosted.org/packages/0d/76/941cc9f73529988688a665a5c0ecff1112b3d95ab48f81db5f7606f522d3/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eceb81a8d74f9267ef4081e246ffd6d129da5d87e37a77c9bde550cb04870c1c", size = 2075366, upload-time = "2025-11-04T13:40:09.804Z" },
- { url = "https://files.pythonhosted.org/packages/d3/43/ebef01f69baa07a482844faaa0a591bad1ef129253ffd0cdaa9d8a7f72d3/pydantic_core-2.41.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d38548150c39b74aeeb0ce8ee1d8e82696f4a4e16ddc6de7b1d8823f7de4b9b5", size = 2171698, upload-time = "2025-11-04T13:40:12.004Z" },
- { url = "https://files.pythonhosted.org/packages/b1/87/41f3202e4193e3bacfc2c065fab7706ebe81af46a83d3e27605029c1f5a6/pydantic_core-2.41.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c23e27686783f60290e36827f9c626e63154b82b116d7fe9adba1fda36da706c", size = 2132603, upload-time = "2025-11-04T13:40:13.868Z" },
- { url = "https://files.pythonhosted.org/packages/49/7d/4c00df99cb12070b6bccdef4a195255e6020a550d572768d92cc54dba91a/pydantic_core-2.41.5-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:482c982f814460eabe1d3bb0adfdc583387bd4691ef00b90575ca0d2b6fe2294", size = 2329591, upload-time = "2025-11-04T13:40:15.672Z" },
- { url = "https://files.pythonhosted.org/packages/cc/6a/ebf4b1d65d458f3cda6a7335d141305dfa19bdc61140a884d165a8a1bbc7/pydantic_core-2.41.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:bfea2a5f0b4d8d43adf9d7b8bf019fb46fdd10a2e5cde477fbcb9d1fa08c68e1", size = 2319068, upload-time = "2025-11-04T13:40:17.532Z" },
- { url = "https://files.pythonhosted.org/packages/49/3b/774f2b5cd4192d5ab75870ce4381fd89cf218af999515baf07e7206753f0/pydantic_core-2.41.5-cp312-cp312-win32.whl", hash = "sha256:b74557b16e390ec12dca509bce9264c3bbd128f8a2c376eaa68003d7f327276d", size = 1985908, upload-time = "2025-11-04T13:40:19.309Z" },
- { url = "https://files.pythonhosted.org/packages/86/45/00173a033c801cacf67c190fef088789394feaf88a98a7035b0e40d53dc9/pydantic_core-2.41.5-cp312-cp312-win_amd64.whl", hash = "sha256:1962293292865bca8e54702b08a4f26da73adc83dd1fcf26fbc875b35d81c815", size = 2020145, upload-time = "2025-11-04T13:40:21.548Z" },
- { url = "https://files.pythonhosted.org/packages/f9/22/91fbc821fa6d261b376a3f73809f907cec5ca6025642c463d3488aad22fb/pydantic_core-2.41.5-cp312-cp312-win_arm64.whl", hash = "sha256:1746d4a3d9a794cacae06a5eaaccb4b8643a131d45fbc9af23e353dc0a5ba5c3", size = 1976179, upload-time = "2025-11-04T13:40:23.393Z" },
- { url = "https://files.pythonhosted.org/packages/87/06/8806241ff1f70d9939f9af039c6c35f2360cf16e93c2ca76f184e76b1564/pydantic_core-2.41.5-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:941103c9be18ac8daf7b7adca8228f8ed6bb7a1849020f643b3a14d15b1924d9", size = 2120403, upload-time = "2025-11-04T13:40:25.248Z" },
- { url = "https://files.pythonhosted.org/packages/94/02/abfa0e0bda67faa65fef1c84971c7e45928e108fe24333c81f3bfe35d5f5/pydantic_core-2.41.5-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:112e305c3314f40c93998e567879e887a3160bb8689ef3d2c04b6cc62c33ac34", size = 1896206, upload-time = "2025-11-04T13:40:27.099Z" },
- { url = "https://files.pythonhosted.org/packages/15/df/a4c740c0943e93e6500f9eb23f4ca7ec9bf71b19e608ae5b579678c8d02f/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0cbaad15cb0c90aa221d43c00e77bb33c93e8d36e0bf74760cd00e732d10a6a0", size = 1919307, upload-time = "2025-11-04T13:40:29.806Z" },
- { url = "https://files.pythonhosted.org/packages/9a/e3/6324802931ae1d123528988e0e86587c2072ac2e5394b4bc2bc34b61ff6e/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:03ca43e12fab6023fc79d28ca6b39b05f794ad08ec2feccc59a339b02f2b3d33", size = 2063258, upload-time = "2025-11-04T13:40:33.544Z" },
- { url = "https://files.pythonhosted.org/packages/c9/d4/2230d7151d4957dd79c3044ea26346c148c98fbf0ee6ebd41056f2d62ab5/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc799088c08fa04e43144b164feb0c13f9a0bc40503f8df3e9fde58a3c0c101e", size = 2214917, upload-time = "2025-11-04T13:40:35.479Z" },
- { url = "https://files.pythonhosted.org/packages/e6/9f/eaac5df17a3672fef0081b6c1bb0b82b33ee89aa5cec0d7b05f52fd4a1fa/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:97aeba56665b4c3235a0e52b2c2f5ae9cd071b8a8310ad27bddb3f7fb30e9aa2", size = 2332186, upload-time = "2025-11-04T13:40:37.436Z" },
- { url = "https://files.pythonhosted.org/packages/cf/4e/35a80cae583a37cf15604b44240e45c05e04e86f9cfd766623149297e971/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:406bf18d345822d6c21366031003612b9c77b3e29ffdb0f612367352aab7d586", size = 2073164, upload-time = "2025-11-04T13:40:40.289Z" },
- { url = "https://files.pythonhosted.org/packages/bf/e3/f6e262673c6140dd3305d144d032f7bd5f7497d3871c1428521f19f9efa2/pydantic_core-2.41.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b93590ae81f7010dbe380cdeab6f515902ebcbefe0b9327cc4804d74e93ae69d", size = 2179146, upload-time = "2025-11-04T13:40:42.809Z" },
- { url = "https://files.pythonhosted.org/packages/75/c7/20bd7fc05f0c6ea2056a4565c6f36f8968c0924f19b7d97bbfea55780e73/pydantic_core-2.41.5-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:01a3d0ab748ee531f4ea6c3e48ad9dac84ddba4b0d82291f87248f2f9de8d740", size = 2137788, upload-time = "2025-11-04T13:40:44.752Z" },
- { url = "https://files.pythonhosted.org/packages/3a/8d/34318ef985c45196e004bc46c6eab2eda437e744c124ef0dbe1ff2c9d06b/pydantic_core-2.41.5-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:6561e94ba9dacc9c61bce40e2d6bdc3bfaa0259d3ff36ace3b1e6901936d2e3e", size = 2340133, upload-time = "2025-11-04T13:40:46.66Z" },
- { url = "https://files.pythonhosted.org/packages/9c/59/013626bf8c78a5a5d9350d12e7697d3d4de951a75565496abd40ccd46bee/pydantic_core-2.41.5-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:915c3d10f81bec3a74fbd4faebe8391013ba61e5a1a8d48c4455b923bdda7858", size = 2324852, upload-time = "2025-11-04T13:40:48.575Z" },
- { url = "https://files.pythonhosted.org/packages/1a/d9/c248c103856f807ef70c18a4f986693a46a8ffe1602e5d361485da502d20/pydantic_core-2.41.5-cp313-cp313-win32.whl", hash = "sha256:650ae77860b45cfa6e2cdafc42618ceafab3a2d9a3811fcfbd3bbf8ac3c40d36", size = 1994679, upload-time = "2025-11-04T13:40:50.619Z" },
- { url = "https://files.pythonhosted.org/packages/9e/8b/341991b158ddab181cff136acd2552c9f35bd30380422a639c0671e99a91/pydantic_core-2.41.5-cp313-cp313-win_amd64.whl", hash = "sha256:79ec52ec461e99e13791ec6508c722742ad745571f234ea6255bed38c6480f11", size = 2019766, upload-time = "2025-11-04T13:40:52.631Z" },
- { url = "https://files.pythonhosted.org/packages/73/7d/f2f9db34af103bea3e09735bb40b021788a5e834c81eedb541991badf8f5/pydantic_core-2.41.5-cp313-cp313-win_arm64.whl", hash = "sha256:3f84d5c1b4ab906093bdc1ff10484838aca54ef08de4afa9de0f5f14d69639cd", size = 1981005, upload-time = "2025-11-04T13:40:54.734Z" },
- { url = "https://files.pythonhosted.org/packages/ea/28/46b7c5c9635ae96ea0fbb779e271a38129df2550f763937659ee6c5dbc65/pydantic_core-2.41.5-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:3f37a19d7ebcdd20b96485056ba9e8b304e27d9904d233d7b1015db320e51f0a", size = 2119622, upload-time = "2025-11-04T13:40:56.68Z" },
- { url = "https://files.pythonhosted.org/packages/74/1a/145646e5687e8d9a1e8d09acb278c8535ebe9e972e1f162ed338a622f193/pydantic_core-2.41.5-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:1d1d9764366c73f996edd17abb6d9d7649a7eb690006ab6adbda117717099b14", size = 1891725, upload-time = "2025-11-04T13:40:58.807Z" },
- { url = "https://files.pythonhosted.org/packages/23/04/e89c29e267b8060b40dca97bfc64a19b2a3cf99018167ea1677d96368273/pydantic_core-2.41.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:25e1c2af0fce638d5f1988b686f3b3ea8cd7de5f244ca147c777769e798a9cd1", size = 1915040, upload-time = "2025-11-04T13:41:00.853Z" },
- { url = "https://files.pythonhosted.org/packages/84/a3/15a82ac7bd97992a82257f777b3583d3e84bdb06ba6858f745daa2ec8a85/pydantic_core-2.41.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:506d766a8727beef16b7adaeb8ee6217c64fc813646b424d0804d67c16eddb66", size = 2063691, upload-time = "2025-11-04T13:41:03.504Z" },
- { url = "https://files.pythonhosted.org/packages/74/9b/0046701313c6ef08c0c1cf0e028c67c770a4e1275ca73131563c5f2a310a/pydantic_core-2.41.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4819fa52133c9aa3c387b3328f25c1facc356491e6135b459f1de698ff64d869", size = 2213897, upload-time = "2025-11-04T13:41:05.804Z" },
- { url = "https://files.pythonhosted.org/packages/8a/cd/6bac76ecd1b27e75a95ca3a9a559c643b3afcd2dd62086d4b7a32a18b169/pydantic_core-2.41.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2b761d210c9ea91feda40d25b4efe82a1707da2ef62901466a42492c028553a2", size = 2333302, upload-time = "2025-11-04T13:41:07.809Z" },
- { url = "https://files.pythonhosted.org/packages/4c/d2/ef2074dc020dd6e109611a8be4449b98cd25e1b9b8a303c2f0fca2f2bcf7/pydantic_core-2.41.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:22f0fb8c1c583a3b6f24df2470833b40207e907b90c928cc8d3594b76f874375", size = 2064877, upload-time = "2025-11-04T13:41:09.827Z" },
- { url = "https://files.pythonhosted.org/packages/18/66/e9db17a9a763d72f03de903883c057b2592c09509ccfe468187f2a2eef29/pydantic_core-2.41.5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2782c870e99878c634505236d81e5443092fba820f0373997ff75f90f68cd553", size = 2180680, upload-time = "2025-11-04T13:41:12.379Z" },
- { url = "https://files.pythonhosted.org/packages/d3/9e/3ce66cebb929f3ced22be85d4c2399b8e85b622db77dad36b73c5387f8f8/pydantic_core-2.41.5-cp314-cp314-musllinux_1_1_aarch64.whl", hash = "sha256:0177272f88ab8312479336e1d777f6b124537d47f2123f89cb37e0accea97f90", size = 2138960, upload-time = "2025-11-04T13:41:14.627Z" },
- { url = "https://files.pythonhosted.org/packages/a6/62/205a998f4327d2079326b01abee48e502ea739d174f0a89295c481a2272e/pydantic_core-2.41.5-cp314-cp314-musllinux_1_1_armv7l.whl", hash = "sha256:63510af5e38f8955b8ee5687740d6ebf7c2a0886d15a6d65c32814613681bc07", size = 2339102, upload-time = "2025-11-04T13:41:16.868Z" },
- { url = "https://files.pythonhosted.org/packages/3c/0d/f05e79471e889d74d3d88f5bd20d0ed189ad94c2423d81ff8d0000aab4ff/pydantic_core-2.41.5-cp314-cp314-musllinux_1_1_x86_64.whl", hash = "sha256:e56ba91f47764cc14f1daacd723e3e82d1a89d783f0f5afe9c364b8bb491ccdb", size = 2326039, upload-time = "2025-11-04T13:41:18.934Z" },
- { url = "https://files.pythonhosted.org/packages/ec/e1/e08a6208bb100da7e0c4b288eed624a703f4d129bde2da475721a80cab32/pydantic_core-2.41.5-cp314-cp314-win32.whl", hash = "sha256:aec5cf2fd867b4ff45b9959f8b20ea3993fc93e63c7363fe6851424c8a7e7c23", size = 1995126, upload-time = "2025-11-04T13:41:21.418Z" },
- { url = "https://files.pythonhosted.org/packages/48/5d/56ba7b24e9557f99c9237e29f5c09913c81eeb2f3217e40e922353668092/pydantic_core-2.41.5-cp314-cp314-win_amd64.whl", hash = "sha256:8e7c86f27c585ef37c35e56a96363ab8de4e549a95512445b85c96d3e2f7c1bf", size = 2015489, upload-time = "2025-11-04T13:41:24.076Z" },
- { url = "https://files.pythonhosted.org/packages/4e/bb/f7a190991ec9e3e0ba22e4993d8755bbc4a32925c0b5b42775c03e8148f9/pydantic_core-2.41.5-cp314-cp314-win_arm64.whl", hash = "sha256:e672ba74fbc2dc8eea59fb6d4aed6845e6905fc2a8afe93175d94a83ba2a01a0", size = 1977288, upload-time = "2025-11-04T13:41:26.33Z" },
- { url = "https://files.pythonhosted.org/packages/92/ed/77542d0c51538e32e15afe7899d79efce4b81eee631d99850edc2f5e9349/pydantic_core-2.41.5-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:8566def80554c3faa0e65ac30ab0932b9e3a5cd7f8323764303d468e5c37595a", size = 2120255, upload-time = "2025-11-04T13:41:28.569Z" },
- { url = "https://files.pythonhosted.org/packages/bb/3d/6913dde84d5be21e284439676168b28d8bbba5600d838b9dca99de0fad71/pydantic_core-2.41.5-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:b80aa5095cd3109962a298ce14110ae16b8c1aece8b72f9dafe81cf597ad80b3", size = 1863760, upload-time = "2025-11-04T13:41:31.055Z" },
- { url = "https://files.pythonhosted.org/packages/5a/f0/e5e6b99d4191da102f2b0eb9687aaa7f5bea5d9964071a84effc3e40f997/pydantic_core-2.41.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3006c3dd9ba34b0c094c544c6006cc79e87d8612999f1a5d43b769b89181f23c", size = 1878092, upload-time = "2025-11-04T13:41:33.21Z" },
- { url = "https://files.pythonhosted.org/packages/71/48/36fb760642d568925953bcc8116455513d6e34c4beaa37544118c36aba6d/pydantic_core-2.41.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:72f6c8b11857a856bcfa48c86f5368439f74453563f951e473514579d44aa612", size = 2053385, upload-time = "2025-11-04T13:41:35.508Z" },
- { url = "https://files.pythonhosted.org/packages/20/25/92dc684dd8eb75a234bc1c764b4210cf2646479d54b47bf46061657292a8/pydantic_core-2.41.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5cb1b2f9742240e4bb26b652a5aeb840aa4b417c7748b6f8387927bc6e45e40d", size = 2218832, upload-time = "2025-11-04T13:41:37.732Z" },
- { url = "https://files.pythonhosted.org/packages/e2/09/f53e0b05023d3e30357d82eb35835d0f6340ca344720a4599cd663dca599/pydantic_core-2.41.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bd3d54f38609ff308209bd43acea66061494157703364ae40c951f83ba99a1a9", size = 2327585, upload-time = "2025-11-04T13:41:40Z" },
- { url = "https://files.pythonhosted.org/packages/aa/4e/2ae1aa85d6af35a39b236b1b1641de73f5a6ac4d5a7509f77b814885760c/pydantic_core-2.41.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2ff4321e56e879ee8d2a879501c8e469414d948f4aba74a2d4593184eb326660", size = 2041078, upload-time = "2025-11-04T13:41:42.323Z" },
- { url = "https://files.pythonhosted.org/packages/cd/13/2e215f17f0ef326fc72afe94776edb77525142c693767fc347ed6288728d/pydantic_core-2.41.5-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d0d2568a8c11bf8225044aa94409e21da0cb09dcdafe9ecd10250b2baad531a9", size = 2173914, upload-time = "2025-11-04T13:41:45.221Z" },
- { url = "https://files.pythonhosted.org/packages/02/7a/f999a6dcbcd0e5660bc348a3991c8915ce6599f4f2c6ac22f01d7a10816c/pydantic_core-2.41.5-cp314-cp314t-musllinux_1_1_aarch64.whl", hash = "sha256:a39455728aabd58ceabb03c90e12f71fd30fa69615760a075b9fec596456ccc3", size = 2129560, upload-time = "2025-11-04T13:41:47.474Z" },
- { url = "https://files.pythonhosted.org/packages/3a/b1/6c990ac65e3b4c079a4fb9f5b05f5b013afa0f4ed6780a3dd236d2cbdc64/pydantic_core-2.41.5-cp314-cp314t-musllinux_1_1_armv7l.whl", hash = "sha256:239edca560d05757817c13dc17c50766136d21f7cd0fac50295499ae24f90fdf", size = 2329244, upload-time = "2025-11-04T13:41:49.992Z" },
- { url = "https://files.pythonhosted.org/packages/d9/02/3c562f3a51afd4d88fff8dffb1771b30cfdfd79befd9883ee094f5b6c0d8/pydantic_core-2.41.5-cp314-cp314t-musllinux_1_1_x86_64.whl", hash = "sha256:2a5e06546e19f24c6a96a129142a75cee553cc018ffee48a460059b1185f4470", size = 2331955, upload-time = "2025-11-04T13:41:54.079Z" },
- { url = "https://files.pythonhosted.org/packages/5c/96/5fb7d8c3c17bc8c62fdb031c47d77a1af698f1d7a406b0f79aaa1338f9ad/pydantic_core-2.41.5-cp314-cp314t-win32.whl", hash = "sha256:b4ececa40ac28afa90871c2cc2b9ffd2ff0bf749380fbdf57d165fd23da353aa", size = 1988906, upload-time = "2025-11-04T13:41:56.606Z" },
- { url = "https://files.pythonhosted.org/packages/22/ed/182129d83032702912c2e2d8bbe33c036f342cc735737064668585dac28f/pydantic_core-2.41.5-cp314-cp314t-win_amd64.whl", hash = "sha256:80aa89cad80b32a912a65332f64a4450ed00966111b6615ca6816153d3585a8c", size = 1981607, upload-time = "2025-11-04T13:41:58.889Z" },
- { url = "https://files.pythonhosted.org/packages/9f/ed/068e41660b832bb0b1aa5b58011dea2a3fe0ba7861ff38c4d4904c1c1a99/pydantic_core-2.41.5-cp314-cp314t-win_arm64.whl", hash = "sha256:35b44f37a3199f771c3eaa53051bc8a70cd7b54f333531c59e29fd4db5d15008", size = 1974769, upload-time = "2025-11-04T13:42:01.186Z" },
- { url = "https://files.pythonhosted.org/packages/11/72/90fda5ee3b97e51c494938a4a44c3a35a9c96c19bba12372fb9c634d6f57/pydantic_core-2.41.5-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl", hash = "sha256:b96d5f26b05d03cc60f11a7761a5ded1741da411e7fe0909e27a5e6a0cb7b034", size = 2115441, upload-time = "2025-11-04T13:42:39.557Z" },
- { url = "https://files.pythonhosted.org/packages/1f/53/8942f884fa33f50794f119012dc6a1a02ac43a56407adaac20463df8e98f/pydantic_core-2.41.5-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl", hash = "sha256:634e8609e89ceecea15e2d61bc9ac3718caaaa71963717bf3c8f38bfde64242c", size = 1930291, upload-time = "2025-11-04T13:42:42.169Z" },
- { url = "https://files.pythonhosted.org/packages/79/c8/ecb9ed9cd942bce09fc888ee960b52654fbdbede4ba6c2d6e0d3b1d8b49c/pydantic_core-2.41.5-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:93e8740d7503eb008aa2df04d3b9735f845d43ae845e6dcd2be0b55a2da43cd2", size = 1948632, upload-time = "2025-11-04T13:42:44.564Z" },
- { url = "https://files.pythonhosted.org/packages/2e/1b/687711069de7efa6af934e74f601e2a4307365e8fdc404703afc453eab26/pydantic_core-2.41.5-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f15489ba13d61f670dcc96772e733aad1a6f9c429cc27574c6cdaed82d0146ad", size = 2138905, upload-time = "2025-11-04T13:42:47.156Z" },
- { url = "https://files.pythonhosted.org/packages/09/32/59b0c7e63e277fa7911c2fc70ccfb45ce4b98991e7ef37110663437005af/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl", hash = "sha256:7da7087d756b19037bc2c06edc6c170eeef3c3bafcb8f532ff17d64dc427adfd", size = 2110495, upload-time = "2025-11-04T13:42:49.689Z" },
- { url = "https://files.pythonhosted.org/packages/aa/81/05e400037eaf55ad400bcd318c05bb345b57e708887f07ddb2d20e3f0e98/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl", hash = "sha256:aabf5777b5c8ca26f7824cb4a120a740c9588ed58df9b2d196ce92fba42ff8dc", size = 1915388, upload-time = "2025-11-04T13:42:52.215Z" },
- { url = "https://files.pythonhosted.org/packages/6e/0d/e3549b2399f71d56476b77dbf3cf8937cec5cd70536bdc0e374a421d0599/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c007fe8a43d43b3969e8469004e9845944f1a80e6acd47c150856bb87f230c56", size = 1942879, upload-time = "2025-11-04T13:42:56.483Z" },
- { url = "https://files.pythonhosted.org/packages/f7/07/34573da085946b6a313d7c42f82f16e8920bfd730665de2d11c0c37a74b5/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:76d0819de158cd855d1cbb8fcafdf6f5cf1eb8e470abe056d5d161106e38062b", size = 2139017, upload-time = "2025-11-04T13:42:59.471Z" },
- { url = "https://files.pythonhosted.org/packages/5f/9b/1b3f0e9f9305839d7e84912f9e8bfbd191ed1b1ef48083609f0dabde978c/pydantic_core-2.41.5-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:b2379fa7ed44ddecb5bfe4e48577d752db9fc10be00a6b7446e9663ba143de26", size = 2101980, upload-time = "2025-11-04T13:43:25.97Z" },
- { url = "https://files.pythonhosted.org/packages/a4/ed/d71fefcb4263df0da6a85b5d8a7508360f2f2e9b3bf5814be9c8bccdccc1/pydantic_core-2.41.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:266fb4cbf5e3cbd0b53669a6d1b039c45e3ce651fd5442eff4d07c2cc8d66808", size = 1923865, upload-time = "2025-11-04T13:43:28.763Z" },
- { url = "https://files.pythonhosted.org/packages/ce/3a/626b38db460d675f873e4444b4bb030453bbe7b4ba55df821d026a0493c4/pydantic_core-2.41.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:58133647260ea01e4d0500089a8c4f07bd7aa6ce109682b1426394988d8aaacc", size = 2134256, upload-time = "2025-11-04T13:43:31.71Z" },
- { url = "https://files.pythonhosted.org/packages/83/d9/8412d7f06f616bbc053d30cb4e5f76786af3221462ad5eee1f202021eb4e/pydantic_core-2.41.5-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:287dad91cfb551c363dc62899a80e9e14da1f0e2b6ebde82c806612ca2a13ef1", size = 2174762, upload-time = "2025-11-04T13:43:34.744Z" },
- { url = "https://files.pythonhosted.org/packages/55/4c/162d906b8e3ba3a99354e20faa1b49a85206c47de97a639510a0e673f5da/pydantic_core-2.41.5-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:03b77d184b9eb40240ae9fd676ca364ce1085f203e1b1256f8ab9984dca80a84", size = 2143141, upload-time = "2025-11-04T13:43:37.701Z" },
- { url = "https://files.pythonhosted.org/packages/1f/f2/f11dd73284122713f5f89fc940f370d035fa8e1e078d446b3313955157fe/pydantic_core-2.41.5-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl", hash = "sha256:a668ce24de96165bb239160b3d854943128f4334822900534f2fe947930e5770", size = 2330317, upload-time = "2025-11-04T13:43:40.406Z" },
- { url = "https://files.pythonhosted.org/packages/88/9d/b06ca6acfe4abb296110fb1273a4d848a0bfb2ff65f3ee92127b3244e16b/pydantic_core-2.41.5-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f14f8f046c14563f8eb3f45f499cc658ab8d10072961e07225e507adb700e93f", size = 2316992, upload-time = "2025-11-04T13:43:43.602Z" },
- { url = "https://files.pythonhosted.org/packages/36/c7/cfc8e811f061c841d7990b0201912c3556bfeb99cdcb7ed24adc8d6f8704/pydantic_core-2.41.5-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:56121965f7a4dc965bff783d70b907ddf3d57f6eba29b6d2e5dabfaf07799c51", size = 2145302, upload-time = "2025-11-04T13:43:46.64Z" },
-]
-
-[[package]]
-name = "pydeck"
-version = "0.9.1"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "jinja2" },
- { name = "numpy" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/a1/ca/40e14e196864a0f61a92abb14d09b3d3da98f94ccb03b49cf51688140dab/pydeck-0.9.1.tar.gz", hash = "sha256:f74475ae637951d63f2ee58326757f8d4f9cd9f2a457cf42950715003e2cb605", size = 3832240, upload-time = "2024-05-10T15:36:21.153Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/ab/4c/b888e6cf58bd9db9c93f40d1c6be8283ff49d88919231afe93a6bcf61626/pydeck-0.9.1-py2.py3-none-any.whl", hash = "sha256:b3f75ba0d273fc917094fa61224f3f6076ca8752b93d46faf3bcfd9f9d59b038", size = 6900403, upload-time = "2024-05-10T15:36:17.36Z" },
-]
-
-[[package]]
-name = "python-dateutil"
-version = "2.9.0.post0"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "six" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432, upload-time = "2024-03-01T18:36:20.211Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892, upload-time = "2024-03-01T18:36:18.57Z" },
-]
-
-[[package]]
-name = "pytz"
-version = "2025.2"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/f8/bf/abbd3cdfb8fbc7fb3d4d38d320f2441b1e7cbe29be4f23797b4a2b5d8aac/pytz-2025.2.tar.gz", hash = "sha256:360b9e3dbb49a209c21ad61809c7fb453643e048b38924c765813546746e81c3", size = 320884, upload-time = "2025-03-25T02:25:00.538Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/81/c4/34e93fe5f5429d7570ec1fa436f1986fb1f00c3e0f43a589fe2bbcd22c3f/pytz-2025.2-py2.py3-none-any.whl", hash = "sha256:5ddf76296dd8c44c26eb8f4b6f35488f3ccbf6fbbd7adee0b7262d43f0ec2f00", size = 509225, upload-time = "2025-03-25T02:24:58.468Z" },
-]
-
-[[package]]
-name = "pyyaml"
-version = "6.0.3"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/05/8e/961c0007c59b8dd7729d542c61a4d537767a59645b82a0b521206e1e25c2/pyyaml-6.0.3.tar.gz", hash = "sha256:d76623373421df22fb4cf8817020cbb7ef15c725b9d5e45f17e189bfc384190f", size = 130960, upload-time = "2025-09-25T21:33:16.546Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/6d/16/a95b6757765b7b031c9374925bb718d55e0a9ba8a1b6a12d25962ea44347/pyyaml-6.0.3-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:44edc647873928551a01e7a563d7452ccdebee747728c1080d881d68af7b997e", size = 185826, upload-time = "2025-09-25T21:31:58.655Z" },
- { url = "https://files.pythonhosted.org/packages/16/19/13de8e4377ed53079ee996e1ab0a9c33ec2faf808a4647b7b4c0d46dd239/pyyaml-6.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:652cb6edd41e718550aad172851962662ff2681490a8a711af6a4d288dd96824", size = 175577, upload-time = "2025-09-25T21:32:00.088Z" },
- { url = "https://files.pythonhosted.org/packages/0c/62/d2eb46264d4b157dae1275b573017abec435397aa59cbcdab6fc978a8af4/pyyaml-6.0.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:10892704fc220243f5305762e276552a0395f7beb4dbf9b14ec8fd43b57f126c", size = 775556, upload-time = "2025-09-25T21:32:01.31Z" },
- { url = "https://files.pythonhosted.org/packages/10/cb/16c3f2cf3266edd25aaa00d6c4350381c8b012ed6f5276675b9eba8d9ff4/pyyaml-6.0.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:850774a7879607d3a6f50d36d04f00ee69e7fc816450e5f7e58d7f17f1ae5c00", size = 882114, upload-time = "2025-09-25T21:32:03.376Z" },
- { url = "https://files.pythonhosted.org/packages/71/60/917329f640924b18ff085ab889a11c763e0b573da888e8404ff486657602/pyyaml-6.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b8bb0864c5a28024fac8a632c443c87c5aa6f215c0b126c449ae1a150412f31d", size = 806638, upload-time = "2025-09-25T21:32:04.553Z" },
- { url = "https://files.pythonhosted.org/packages/dd/6f/529b0f316a9fd167281a6c3826b5583e6192dba792dd55e3203d3f8e655a/pyyaml-6.0.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1d37d57ad971609cf3c53ba6a7e365e40660e3be0e5175fa9f2365a379d6095a", size = 767463, upload-time = "2025-09-25T21:32:06.152Z" },
- { url = "https://files.pythonhosted.org/packages/f2/6a/b627b4e0c1dd03718543519ffb2f1deea4a1e6d42fbab8021936a4d22589/pyyaml-6.0.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:37503bfbfc9d2c40b344d06b2199cf0e96e97957ab1c1b546fd4f87e53e5d3e4", size = 794986, upload-time = "2025-09-25T21:32:07.367Z" },
- { url = "https://files.pythonhosted.org/packages/45/91/47a6e1c42d9ee337c4839208f30d9f09caa9f720ec7582917b264defc875/pyyaml-6.0.3-cp311-cp311-win32.whl", hash = "sha256:8098f252adfa6c80ab48096053f512f2321f0b998f98150cea9bd23d83e1467b", size = 142543, upload-time = "2025-09-25T21:32:08.95Z" },
- { url = "https://files.pythonhosted.org/packages/da/e3/ea007450a105ae919a72393cb06f122f288ef60bba2dc64b26e2646fa315/pyyaml-6.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:9f3bfb4965eb874431221a3ff3fdcddc7e74e3b07799e0e84ca4a0f867d449bf", size = 158763, upload-time = "2025-09-25T21:32:09.96Z" },
- { url = "https://files.pythonhosted.org/packages/d1/33/422b98d2195232ca1826284a76852ad5a86fe23e31b009c9886b2d0fb8b2/pyyaml-6.0.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7f047e29dcae44602496db43be01ad42fc6f1cc0d8cd6c83d342306c32270196", size = 182063, upload-time = "2025-09-25T21:32:11.445Z" },
- { url = "https://files.pythonhosted.org/packages/89/a0/6cf41a19a1f2f3feab0e9c0b74134aa2ce6849093d5517a0c550fe37a648/pyyaml-6.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:fc09d0aa354569bc501d4e787133afc08552722d3ab34836a80547331bb5d4a0", size = 173973, upload-time = "2025-09-25T21:32:12.492Z" },
- { url = "https://files.pythonhosted.org/packages/ed/23/7a778b6bd0b9a8039df8b1b1d80e2e2ad78aa04171592c8a5c43a56a6af4/pyyaml-6.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9149cad251584d5fb4981be1ecde53a1ca46c891a79788c0df828d2f166bda28", size = 775116, upload-time = "2025-09-25T21:32:13.652Z" },
- { url = "https://files.pythonhosted.org/packages/65/30/d7353c338e12baef4ecc1b09e877c1970bd3382789c159b4f89d6a70dc09/pyyaml-6.0.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5fdec68f91a0c6739b380c83b951e2c72ac0197ace422360e6d5a959d8d97b2c", size = 844011, upload-time = "2025-09-25T21:32:15.21Z" },
- { url = "https://files.pythonhosted.org/packages/8b/9d/b3589d3877982d4f2329302ef98a8026e7f4443c765c46cfecc8858c6b4b/pyyaml-6.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ba1cc08a7ccde2d2ec775841541641e4548226580ab850948cbfda66a1befcdc", size = 807870, upload-time = "2025-09-25T21:32:16.431Z" },
- { url = "https://files.pythonhosted.org/packages/05/c0/b3be26a015601b822b97d9149ff8cb5ead58c66f981e04fedf4e762f4bd4/pyyaml-6.0.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8dc52c23056b9ddd46818a57b78404882310fb473d63f17b07d5c40421e47f8e", size = 761089, upload-time = "2025-09-25T21:32:17.56Z" },
- { url = "https://files.pythonhosted.org/packages/be/8e/98435a21d1d4b46590d5459a22d88128103f8da4c2d4cb8f14f2a96504e1/pyyaml-6.0.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:41715c910c881bc081f1e8872880d3c650acf13dfa8214bad49ed4cede7c34ea", size = 790181, upload-time = "2025-09-25T21:32:18.834Z" },
- { url = "https://files.pythonhosted.org/packages/74/93/7baea19427dcfbe1e5a372d81473250b379f04b1bd3c4c5ff825e2327202/pyyaml-6.0.3-cp312-cp312-win32.whl", hash = "sha256:96b533f0e99f6579b3d4d4995707cf36df9100d67e0c8303a0c55b27b5f99bc5", size = 137658, upload-time = "2025-09-25T21:32:20.209Z" },
- { url = "https://files.pythonhosted.org/packages/86/bf/899e81e4cce32febab4fb42bb97dcdf66bc135272882d1987881a4b519e9/pyyaml-6.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:5fcd34e47f6e0b794d17de1b4ff496c00986e1c83f7ab2fb8fcfe9616ff7477b", size = 154003, upload-time = "2025-09-25T21:32:21.167Z" },
- { url = "https://files.pythonhosted.org/packages/1a/08/67bd04656199bbb51dbed1439b7f27601dfb576fb864099c7ef0c3e55531/pyyaml-6.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:64386e5e707d03a7e172c0701abfb7e10f0fb753ee1d773128192742712a98fd", size = 140344, upload-time = "2025-09-25T21:32:22.617Z" },
- { url = "https://files.pythonhosted.org/packages/d1/11/0fd08f8192109f7169db964b5707a2f1e8b745d4e239b784a5a1dd80d1db/pyyaml-6.0.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8da9669d359f02c0b91ccc01cac4a67f16afec0dac22c2ad09f46bee0697eba8", size = 181669, upload-time = "2025-09-25T21:32:23.673Z" },
- { url = "https://files.pythonhosted.org/packages/b1/16/95309993f1d3748cd644e02e38b75d50cbc0d9561d21f390a76242ce073f/pyyaml-6.0.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2283a07e2c21a2aa78d9c4442724ec1eb15f5e42a723b99cb3d822d48f5f7ad1", size = 173252, upload-time = "2025-09-25T21:32:25.149Z" },
- { url = "https://files.pythonhosted.org/packages/50/31/b20f376d3f810b9b2371e72ef5adb33879b25edb7a6d072cb7ca0c486398/pyyaml-6.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ee2922902c45ae8ccada2c5b501ab86c36525b883eff4255313a253a3160861c", size = 767081, upload-time = "2025-09-25T21:32:26.575Z" },
- { url = "https://files.pythonhosted.org/packages/49/1e/a55ca81e949270d5d4432fbbd19dfea5321eda7c41a849d443dc92fd1ff7/pyyaml-6.0.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a33284e20b78bd4a18c8c2282d549d10bc8408a2a7ff57653c0cf0b9be0afce5", size = 841159, upload-time = "2025-09-25T21:32:27.727Z" },
- { url = "https://files.pythonhosted.org/packages/74/27/e5b8f34d02d9995b80abcef563ea1f8b56d20134d8f4e5e81733b1feceb2/pyyaml-6.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0f29edc409a6392443abf94b9cf89ce99889a1dd5376d94316ae5145dfedd5d6", size = 801626, upload-time = "2025-09-25T21:32:28.878Z" },
- { url = "https://files.pythonhosted.org/packages/f9/11/ba845c23988798f40e52ba45f34849aa8a1f2d4af4b798588010792ebad6/pyyaml-6.0.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f7057c9a337546edc7973c0d3ba84ddcdf0daa14533c2065749c9075001090e6", size = 753613, upload-time = "2025-09-25T21:32:30.178Z" },
- { url = "https://files.pythonhosted.org/packages/3d/e0/7966e1a7bfc0a45bf0a7fb6b98ea03fc9b8d84fa7f2229e9659680b69ee3/pyyaml-6.0.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:eda16858a3cab07b80edaf74336ece1f986ba330fdb8ee0d6c0d68fe82bc96be", size = 794115, upload-time = "2025-09-25T21:32:31.353Z" },
- { url = "https://files.pythonhosted.org/packages/de/94/980b50a6531b3019e45ddeada0626d45fa85cbe22300844a7983285bed3b/pyyaml-6.0.3-cp313-cp313-win32.whl", hash = "sha256:d0eae10f8159e8fdad514efdc92d74fd8d682c933a6dd088030f3834bc8e6b26", size = 137427, upload-time = "2025-09-25T21:32:32.58Z" },
- { url = "https://files.pythonhosted.org/packages/97/c9/39d5b874e8b28845e4ec2202b5da735d0199dbe5b8fb85f91398814a9a46/pyyaml-6.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:79005a0d97d5ddabfeeea4cf676af11e647e41d81c9a7722a193022accdb6b7c", size = 154090, upload-time = "2025-09-25T21:32:33.659Z" },
- { url = "https://files.pythonhosted.org/packages/73/e8/2bdf3ca2090f68bb3d75b44da7bbc71843b19c9f2b9cb9b0f4ab7a5a4329/pyyaml-6.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:5498cd1645aa724a7c71c8f378eb29ebe23da2fc0d7a08071d89469bf1d2defb", size = 140246, upload-time = "2025-09-25T21:32:34.663Z" },
- { url = "https://files.pythonhosted.org/packages/9d/8c/f4bd7f6465179953d3ac9bc44ac1a8a3e6122cf8ada906b4f96c60172d43/pyyaml-6.0.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:8d1fab6bb153a416f9aeb4b8763bc0f22a5586065f86f7664fc23339fc1c1fac", size = 181814, upload-time = "2025-09-25T21:32:35.712Z" },
- { url = "https://files.pythonhosted.org/packages/bd/9c/4d95bb87eb2063d20db7b60faa3840c1b18025517ae857371c4dd55a6b3a/pyyaml-6.0.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:34d5fcd24b8445fadc33f9cf348c1047101756fd760b4dacb5c3e99755703310", size = 173809, upload-time = "2025-09-25T21:32:36.789Z" },
- { url = "https://files.pythonhosted.org/packages/92/b5/47e807c2623074914e29dabd16cbbdd4bf5e9b2db9f8090fa64411fc5382/pyyaml-6.0.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:501a031947e3a9025ed4405a168e6ef5ae3126c59f90ce0cd6f2bfc477be31b7", size = 766454, upload-time = "2025-09-25T21:32:37.966Z" },
- { url = "https://files.pythonhosted.org/packages/02/9e/e5e9b168be58564121efb3de6859c452fccde0ab093d8438905899a3a483/pyyaml-6.0.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:b3bc83488de33889877a0f2543ade9f70c67d66d9ebb4ac959502e12de895788", size = 836355, upload-time = "2025-09-25T21:32:39.178Z" },
- { url = "https://files.pythonhosted.org/packages/88/f9/16491d7ed2a919954993e48aa941b200f38040928474c9e85ea9e64222c3/pyyaml-6.0.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c458b6d084f9b935061bc36216e8a69a7e293a2f1e68bf956dcd9e6cbcd143f5", size = 794175, upload-time = "2025-09-25T21:32:40.865Z" },
- { url = "https://files.pythonhosted.org/packages/dd/3f/5989debef34dc6397317802b527dbbafb2b4760878a53d4166579111411e/pyyaml-6.0.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:7c6610def4f163542a622a73fb39f534f8c101d690126992300bf3207eab9764", size = 755228, upload-time = "2025-09-25T21:32:42.084Z" },
- { url = "https://files.pythonhosted.org/packages/d7/ce/af88a49043cd2e265be63d083fc75b27b6ed062f5f9fd6cdc223ad62f03e/pyyaml-6.0.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:5190d403f121660ce8d1d2c1bb2ef1bd05b5f68533fc5c2ea899bd15f4399b35", size = 789194, upload-time = "2025-09-25T21:32:43.362Z" },
- { url = "https://files.pythonhosted.org/packages/23/20/bb6982b26a40bb43951265ba29d4c246ef0ff59c9fdcdf0ed04e0687de4d/pyyaml-6.0.3-cp314-cp314-win_amd64.whl", hash = "sha256:4a2e8cebe2ff6ab7d1050ecd59c25d4c8bd7e6f400f5f82b96557ac0abafd0ac", size = 156429, upload-time = "2025-09-25T21:32:57.844Z" },
- { url = "https://files.pythonhosted.org/packages/f4/f4/a4541072bb9422c8a883ab55255f918fa378ecf083f5b85e87fc2b4eda1b/pyyaml-6.0.3-cp314-cp314-win_arm64.whl", hash = "sha256:93dda82c9c22deb0a405ea4dc5f2d0cda384168e466364dec6255b293923b2f3", size = 143912, upload-time = "2025-09-25T21:32:59.247Z" },
- { url = "https://files.pythonhosted.org/packages/7c/f9/07dd09ae774e4616edf6cda684ee78f97777bdd15847253637a6f052a62f/pyyaml-6.0.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:02893d100e99e03eda1c8fd5c441d8c60103fd175728e23e431db1b589cf5ab3", size = 189108, upload-time = "2025-09-25T21:32:44.377Z" },
- { url = "https://files.pythonhosted.org/packages/4e/78/8d08c9fb7ce09ad8c38ad533c1191cf27f7ae1effe5bb9400a46d9437fcf/pyyaml-6.0.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:c1ff362665ae507275af2853520967820d9124984e0f7466736aea23d8611fba", size = 183641, upload-time = "2025-09-25T21:32:45.407Z" },
- { url = "https://files.pythonhosted.org/packages/7b/5b/3babb19104a46945cf816d047db2788bcaf8c94527a805610b0289a01c6b/pyyaml-6.0.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6adc77889b628398debc7b65c073bcb99c4a0237b248cacaf3fe8a557563ef6c", size = 831901, upload-time = "2025-09-25T21:32:48.83Z" },
- { url = "https://files.pythonhosted.org/packages/8b/cc/dff0684d8dc44da4d22a13f35f073d558c268780ce3c6ba1b87055bb0b87/pyyaml-6.0.3-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a80cb027f6b349846a3bf6d73b5e95e782175e52f22108cfa17876aaeff93702", size = 861132, upload-time = "2025-09-25T21:32:50.149Z" },
- { url = "https://files.pythonhosted.org/packages/b1/5e/f77dc6b9036943e285ba76b49e118d9ea929885becb0a29ba8a7c75e29fe/pyyaml-6.0.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:00c4bdeba853cc34e7dd471f16b4114f4162dc03e6b7afcc2128711f0eca823c", size = 839261, upload-time = "2025-09-25T21:32:51.808Z" },
- { url = "https://files.pythonhosted.org/packages/ce/88/a9db1376aa2a228197c58b37302f284b5617f56a5d959fd1763fb1675ce6/pyyaml-6.0.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:66e1674c3ef6f541c35191caae2d429b967b99e02040f5ba928632d9a7f0f065", size = 805272, upload-time = "2025-09-25T21:32:52.941Z" },
- { url = "https://files.pythonhosted.org/packages/da/92/1446574745d74df0c92e6aa4a7b0b3130706a4142b2d1a5869f2eaa423c6/pyyaml-6.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:16249ee61e95f858e83976573de0f5b2893b3677ba71c9dd36b9cf8be9ac6d65", size = 829923, upload-time = "2025-09-25T21:32:54.537Z" },
- { url = "https://files.pythonhosted.org/packages/f0/7a/1c7270340330e575b92f397352af856a8c06f230aa3e76f86b39d01b416a/pyyaml-6.0.3-cp314-cp314t-win_amd64.whl", hash = "sha256:4ad1906908f2f5ae4e5a8ddfce73c320c2a1429ec52eafd27138b7f1cbe341c9", size = 174062, upload-time = "2025-09-25T21:32:55.767Z" },
- { url = "https://files.pythonhosted.org/packages/f1/12/de94a39c2ef588c7e6455cfbe7343d3b2dc9d6b6b2f40c4c6565744c873d/pyyaml-6.0.3-cp314-cp314t-win_arm64.whl", hash = "sha256:ebc55a14a21cb14062aa4162f906cd962b28e2e9ea38f9b4391244cd8de4ae0b", size = 149341, upload-time = "2025-09-25T21:32:56.828Z" },
-]
-
-[[package]]
-name = "referencing"
-version = "0.37.0"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "attrs" },
- { name = "rpds-py" },
- { name = "typing-extensions", marker = "python_full_version < '3.13'" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/22/f5/df4e9027acead3ecc63e50fe1e36aca1523e1719559c499951bb4b53188f/referencing-0.37.0.tar.gz", hash = "sha256:44aefc3142c5b842538163acb373e24cce6632bd54bdb01b21ad5863489f50d8", size = 78036, upload-time = "2025-10-13T15:30:48.871Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/2c/58/ca301544e1fa93ed4f80d724bf5b194f6e4b945841c5bfd555878eea9fcb/referencing-0.37.0-py3-none-any.whl", hash = "sha256:381329a9f99628c9069361716891d34ad94af76e461dcb0335825aecc7692231", size = 26766, upload-time = "2025-10-13T15:30:47.625Z" },
-]
-
-[[package]]
-name = "requests"
-version = "2.32.5"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "certifi" },
- { name = "charset-normalizer" },
- { name = "idna" },
- { name = "urllib3" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/c9/74/b3ff8e6c8446842c3f5c837e9c3dfcfe2018ea6ecef224c710c85ef728f4/requests-2.32.5.tar.gz", hash = "sha256:dbba0bac56e100853db0ea71b82b4dfd5fe2bf6d3754a8893c3af500cec7d7cf", size = 134517, upload-time = "2025-08-18T20:46:02.573Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl", hash = "sha256:2462f94637a34fd532264295e186976db0f5d453d1cdd31473c85a6a161affb6", size = 64738, upload-time = "2025-08-18T20:46:00.542Z" },
-]
-
-[[package]]
-name = "rpds-py"
-version = "0.30.0"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/20/af/3f2f423103f1113b36230496629986e0ef7e199d2aa8392452b484b38ced/rpds_py-0.30.0.tar.gz", hash = "sha256:dd8ff7cf90014af0c0f787eea34794ebf6415242ee1d6fa91eaba725cc441e84", size = 69469, upload-time = "2025-11-30T20:24:38.837Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/4d/6e/f964e88b3d2abee2a82c1ac8366da848fce1c6d834dc2132c3fda3970290/rpds_py-0.30.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:a2bffea6a4ca9f01b3f8e548302470306689684e61602aa3d141e34da06cf425", size = 370157, upload-time = "2025-11-30T20:21:53.789Z" },
- { url = "https://files.pythonhosted.org/packages/94/ba/24e5ebb7c1c82e74c4e4f33b2112a5573ddc703915b13a073737b59b86e0/rpds_py-0.30.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dc4f992dfe1e2bc3ebc7444f6c7051b4bc13cd8e33e43511e8ffd13bf407010d", size = 359676, upload-time = "2025-11-30T20:21:55.475Z" },
- { url = "https://files.pythonhosted.org/packages/84/86/04dbba1b087227747d64d80c3b74df946b986c57af0a9f0c98726d4d7a3b/rpds_py-0.30.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:422c3cb9856d80b09d30d2eb255d0754b23e090034e1deb4083f8004bd0761e4", size = 389938, upload-time = "2025-11-30T20:21:57.079Z" },
- { url = "https://files.pythonhosted.org/packages/42/bb/1463f0b1722b7f45431bdd468301991d1328b16cffe0b1c2918eba2c4eee/rpds_py-0.30.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:07ae8a593e1c3c6b82ca3292efbe73c30b61332fd612e05abee07c79359f292f", size = 402932, upload-time = "2025-11-30T20:21:58.47Z" },
- { url = "https://files.pythonhosted.org/packages/99/ee/2520700a5c1f2d76631f948b0736cdf9b0acb25abd0ca8e889b5c62ac2e3/rpds_py-0.30.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:12f90dd7557b6bd57f40abe7747e81e0c0b119bef015ea7726e69fe550e394a4", size = 525830, upload-time = "2025-11-30T20:21:59.699Z" },
- { url = "https://files.pythonhosted.org/packages/e0/ad/bd0331f740f5705cc555a5e17fdf334671262160270962e69a2bdef3bf76/rpds_py-0.30.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:99b47d6ad9a6da00bec6aabe5a6279ecd3c06a329d4aa4771034a21e335c3a97", size = 412033, upload-time = "2025-11-30T20:22:00.991Z" },
- { url = "https://files.pythonhosted.org/packages/f8/1e/372195d326549bb51f0ba0f2ecb9874579906b97e08880e7a65c3bef1a99/rpds_py-0.30.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:33f559f3104504506a44bb666b93a33f5d33133765b0c216a5bf2f1e1503af89", size = 390828, upload-time = "2025-11-30T20:22:02.723Z" },
- { url = "https://files.pythonhosted.org/packages/ab/2b/d88bb33294e3e0c76bc8f351a3721212713629ffca1700fa94979cb3eae8/rpds_py-0.30.0-cp311-cp311-manylinux_2_31_riscv64.whl", hash = "sha256:946fe926af6e44f3697abbc305ea168c2c31d3e3ef1058cf68f379bf0335a78d", size = 404683, upload-time = "2025-11-30T20:22:04.367Z" },
- { url = "https://files.pythonhosted.org/packages/50/32/c759a8d42bcb5289c1fac697cd92f6fe01a018dd937e62ae77e0e7f15702/rpds_py-0.30.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:495aeca4b93d465efde585977365187149e75383ad2684f81519f504f5c13038", size = 421583, upload-time = "2025-11-30T20:22:05.814Z" },
- { url = "https://files.pythonhosted.org/packages/2b/81/e729761dbd55ddf5d84ec4ff1f47857f4374b0f19bdabfcf929164da3e24/rpds_py-0.30.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d9a0ca5da0386dee0655b4ccdf46119df60e0f10da268d04fe7cc87886872ba7", size = 572496, upload-time = "2025-11-30T20:22:07.713Z" },
- { url = "https://files.pythonhosted.org/packages/14/f6/69066a924c3557c9c30baa6ec3a0aa07526305684c6f86c696b08860726c/rpds_py-0.30.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8d6d1cc13664ec13c1b84241204ff3b12f9bb82464b8ad6e7a5d3486975c2eed", size = 598669, upload-time = "2025-11-30T20:22:09.312Z" },
- { url = "https://files.pythonhosted.org/packages/5f/48/905896b1eb8a05630d20333d1d8ffd162394127b74ce0b0784ae04498d32/rpds_py-0.30.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:3896fa1be39912cf0757753826bc8bdc8ca331a28a7c4ae46b7a21280b06bb85", size = 561011, upload-time = "2025-11-30T20:22:11.309Z" },
- { url = "https://files.pythonhosted.org/packages/22/16/cd3027c7e279d22e5eb431dd3c0fbc677bed58797fe7581e148f3f68818b/rpds_py-0.30.0-cp311-cp311-win32.whl", hash = "sha256:55f66022632205940f1827effeff17c4fa7ae1953d2b74a8581baaefb7d16f8c", size = 221406, upload-time = "2025-11-30T20:22:13.101Z" },
- { url = "https://files.pythonhosted.org/packages/fa/5b/e7b7aa136f28462b344e652ee010d4de26ee9fd16f1bfd5811f5153ccf89/rpds_py-0.30.0-cp311-cp311-win_amd64.whl", hash = "sha256:a51033ff701fca756439d641c0ad09a41d9242fa69121c7d8769604a0a629825", size = 236024, upload-time = "2025-11-30T20:22:14.853Z" },
- { url = "https://files.pythonhosted.org/packages/14/a6/364bba985e4c13658edb156640608f2c9e1d3ea3c81b27aa9d889fff0e31/rpds_py-0.30.0-cp311-cp311-win_arm64.whl", hash = "sha256:47b0ef6231c58f506ef0b74d44e330405caa8428e770fec25329ed2cb971a229", size = 229069, upload-time = "2025-11-30T20:22:16.577Z" },
- { url = "https://files.pythonhosted.org/packages/03/e7/98a2f4ac921d82f33e03f3835f5bf3a4a40aa1bfdc57975e74a97b2b4bdd/rpds_py-0.30.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:a161f20d9a43006833cd7068375a94d035714d73a172b681d8881820600abfad", size = 375086, upload-time = "2025-11-30T20:22:17.93Z" },
- { url = "https://files.pythonhosted.org/packages/4d/a1/bca7fd3d452b272e13335db8d6b0b3ecde0f90ad6f16f3328c6fb150c889/rpds_py-0.30.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6abc8880d9d036ecaafe709079969f56e876fcf107f7a8e9920ba6d5a3878d05", size = 359053, upload-time = "2025-11-30T20:22:19.297Z" },
- { url = "https://files.pythonhosted.org/packages/65/1c/ae157e83a6357eceff62ba7e52113e3ec4834a84cfe07fa4b0757a7d105f/rpds_py-0.30.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca28829ae5f5d569bb62a79512c842a03a12576375d5ece7d2cadf8abe96ec28", size = 390763, upload-time = "2025-11-30T20:22:21.661Z" },
- { url = "https://files.pythonhosted.org/packages/d4/36/eb2eb8515e2ad24c0bd43c3ee9cd74c33f7ca6430755ccdb240fd3144c44/rpds_py-0.30.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a1010ed9524c73b94d15919ca4d41d8780980e1765babf85f9a2f90d247153dd", size = 408951, upload-time = "2025-11-30T20:22:23.408Z" },
- { url = "https://files.pythonhosted.org/packages/d6/65/ad8dc1784a331fabbd740ef6f71ce2198c7ed0890dab595adb9ea2d775a1/rpds_py-0.30.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f8d1736cfb49381ba528cd5baa46f82fdc65c06e843dab24dd70b63d09121b3f", size = 514622, upload-time = "2025-11-30T20:22:25.16Z" },
- { url = "https://files.pythonhosted.org/packages/63/8e/0cfa7ae158e15e143fe03993b5bcd743a59f541f5952e1546b1ac1b5fd45/rpds_py-0.30.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d948b135c4693daff7bc2dcfc4ec57237a29bd37e60c2fabf5aff2bbacf3e2f1", size = 414492, upload-time = "2025-11-30T20:22:26.505Z" },
- { url = "https://files.pythonhosted.org/packages/60/1b/6f8f29f3f995c7ffdde46a626ddccd7c63aefc0efae881dc13b6e5d5bb16/rpds_py-0.30.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47f236970bccb2233267d89173d3ad2703cd36a0e2a6e92d0560d333871a3d23", size = 394080, upload-time = "2025-11-30T20:22:27.934Z" },
- { url = "https://files.pythonhosted.org/packages/6d/d5/a266341051a7a3ca2f4b750a3aa4abc986378431fc2da508c5034d081b70/rpds_py-0.30.0-cp312-cp312-manylinux_2_31_riscv64.whl", hash = "sha256:2e6ecb5a5bcacf59c3f912155044479af1d0b6681280048b338b28e364aca1f6", size = 408680, upload-time = "2025-11-30T20:22:29.341Z" },
- { url = "https://files.pythonhosted.org/packages/10/3b/71b725851df9ab7a7a4e33cf36d241933da66040d195a84781f49c50490c/rpds_py-0.30.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a8fa71a2e078c527c3e9dc9fc5a98c9db40bcc8a92b4e8858e36d329f8684b51", size = 423589, upload-time = "2025-11-30T20:22:31.469Z" },
- { url = "https://files.pythonhosted.org/packages/00/2b/e59e58c544dc9bd8bd8384ecdb8ea91f6727f0e37a7131baeff8d6f51661/rpds_py-0.30.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:73c67f2db7bc334e518d097c6d1e6fed021bbc9b7d678d6cc433478365d1d5f5", size = 573289, upload-time = "2025-11-30T20:22:32.997Z" },
- { url = "https://files.pythonhosted.org/packages/da/3e/a18e6f5b460893172a7d6a680e86d3b6bc87a54c1f0b03446a3c8c7b588f/rpds_py-0.30.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:5ba103fb455be00f3b1c2076c9d4264bfcb037c976167a6047ed82f23153f02e", size = 599737, upload-time = "2025-11-30T20:22:34.419Z" },
- { url = "https://files.pythonhosted.org/packages/5c/e2/714694e4b87b85a18e2c243614974413c60aa107fd815b8cbc42b873d1d7/rpds_py-0.30.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:7cee9c752c0364588353e627da8a7e808a66873672bcb5f52890c33fd965b394", size = 563120, upload-time = "2025-11-30T20:22:35.903Z" },
- { url = "https://files.pythonhosted.org/packages/6f/ab/d5d5e3bcedb0a77f4f613706b750e50a5a3ba1c15ccd3665ecc636c968fd/rpds_py-0.30.0-cp312-cp312-win32.whl", hash = "sha256:1ab5b83dbcf55acc8b08fc62b796ef672c457b17dbd7820a11d6c52c06839bdf", size = 223782, upload-time = "2025-11-30T20:22:37.271Z" },
- { url = "https://files.pythonhosted.org/packages/39/3b/f786af9957306fdc38a74cef405b7b93180f481fb48453a114bb6465744a/rpds_py-0.30.0-cp312-cp312-win_amd64.whl", hash = "sha256:a090322ca841abd453d43456ac34db46e8b05fd9b3b4ac0c78bcde8b089f959b", size = 240463, upload-time = "2025-11-30T20:22:39.021Z" },
- { url = "https://files.pythonhosted.org/packages/f3/d2/b91dc748126c1559042cfe41990deb92c4ee3e2b415f6b5234969ffaf0cc/rpds_py-0.30.0-cp312-cp312-win_arm64.whl", hash = "sha256:669b1805bd639dd2989b281be2cfd951c6121b65e729d9b843e9639ef1fd555e", size = 230868, upload-time = "2025-11-30T20:22:40.493Z" },
- { url = "https://files.pythonhosted.org/packages/ed/dc/d61221eb88ff410de3c49143407f6f3147acf2538c86f2ab7ce65ae7d5f9/rpds_py-0.30.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:f83424d738204d9770830d35290ff3273fbb02b41f919870479fab14b9d303b2", size = 374887, upload-time = "2025-11-30T20:22:41.812Z" },
- { url = "https://files.pythonhosted.org/packages/fd/32/55fb50ae104061dbc564ef15cc43c013dc4a9f4527a1f4d99baddf56fe5f/rpds_py-0.30.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:e7536cd91353c5273434b4e003cbda89034d67e7710eab8761fd918ec6c69cf8", size = 358904, upload-time = "2025-11-30T20:22:43.479Z" },
- { url = "https://files.pythonhosted.org/packages/58/70/faed8186300e3b9bdd138d0273109784eea2396c68458ed580f885dfe7ad/rpds_py-0.30.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2771c6c15973347f50fece41fc447c054b7ac2ae0502388ce3b6738cd366e3d4", size = 389945, upload-time = "2025-11-30T20:22:44.819Z" },
- { url = "https://files.pythonhosted.org/packages/bd/a8/073cac3ed2c6387df38f71296d002ab43496a96b92c823e76f46b8af0543/rpds_py-0.30.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0a59119fc6e3f460315fe9d08149f8102aa322299deaa5cab5b40092345c2136", size = 407783, upload-time = "2025-11-30T20:22:46.103Z" },
- { url = "https://files.pythonhosted.org/packages/77/57/5999eb8c58671f1c11eba084115e77a8899d6e694d2a18f69f0ba471ec8b/rpds_py-0.30.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:76fec018282b4ead0364022e3c54b60bf368b9d926877957a8624b58419169b7", size = 515021, upload-time = "2025-11-30T20:22:47.458Z" },
- { url = "https://files.pythonhosted.org/packages/e0/af/5ab4833eadc36c0a8ed2bc5c0de0493c04f6c06de223170bd0798ff98ced/rpds_py-0.30.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:692bef75a5525db97318e8cd061542b5a79812d711ea03dbc1f6f8dbb0c5f0d2", size = 414589, upload-time = "2025-11-30T20:22:48.872Z" },
- { url = "https://files.pythonhosted.org/packages/b7/de/f7192e12b21b9e9a68a6d0f249b4af3fdcdff8418be0767a627564afa1f1/rpds_py-0.30.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9027da1ce107104c50c81383cae773ef5c24d296dd11c99e2629dbd7967a20c6", size = 394025, upload-time = "2025-11-30T20:22:50.196Z" },
- { url = "https://files.pythonhosted.org/packages/91/c4/fc70cd0249496493500e7cc2de87504f5aa6509de1e88623431fec76d4b6/rpds_py-0.30.0-cp313-cp313-manylinux_2_31_riscv64.whl", hash = "sha256:9cf69cdda1f5968a30a359aba2f7f9aa648a9ce4b580d6826437f2b291cfc86e", size = 408895, upload-time = "2025-11-30T20:22:51.87Z" },
- { url = "https://files.pythonhosted.org/packages/58/95/d9275b05ab96556fefff73a385813eb66032e4c99f411d0795372d9abcea/rpds_py-0.30.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a4796a717bf12b9da9d3ad002519a86063dcac8988b030e405704ef7d74d2d9d", size = 422799, upload-time = "2025-11-30T20:22:53.341Z" },
- { url = "https://files.pythonhosted.org/packages/06/c1/3088fc04b6624eb12a57eb814f0d4997a44b0d208d6cace713033ff1a6ba/rpds_py-0.30.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5d4c2aa7c50ad4728a094ebd5eb46c452e9cb7edbfdb18f9e1221f597a73e1e7", size = 572731, upload-time = "2025-11-30T20:22:54.778Z" },
- { url = "https://files.pythonhosted.org/packages/d8/42/c612a833183b39774e8ac8fecae81263a68b9583ee343db33ab571a7ce55/rpds_py-0.30.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ba81a9203d07805435eb06f536d95a266c21e5b2dfbf6517748ca40c98d19e31", size = 599027, upload-time = "2025-11-30T20:22:56.212Z" },
- { url = "https://files.pythonhosted.org/packages/5f/60/525a50f45b01d70005403ae0e25f43c0384369ad24ffe46e8d9068b50086/rpds_py-0.30.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:945dccface01af02675628334f7cf49c2af4c1c904748efc5cf7bbdf0b579f95", size = 563020, upload-time = "2025-11-30T20:22:58.2Z" },
- { url = "https://files.pythonhosted.org/packages/0b/5d/47c4655e9bcd5ca907148535c10e7d489044243cc9941c16ed7cd53be91d/rpds_py-0.30.0-cp313-cp313-win32.whl", hash = "sha256:b40fb160a2db369a194cb27943582b38f79fc4887291417685f3ad693c5a1d5d", size = 223139, upload-time = "2025-11-30T20:23:00.209Z" },
- { url = "https://files.pythonhosted.org/packages/f2/e1/485132437d20aa4d3e1d8b3fb5a5e65aa8139f1e097080c2a8443201742c/rpds_py-0.30.0-cp313-cp313-win_amd64.whl", hash = "sha256:806f36b1b605e2d6a72716f321f20036b9489d29c51c91f4dd29a3e3afb73b15", size = 240224, upload-time = "2025-11-30T20:23:02.008Z" },
- { url = "https://files.pythonhosted.org/packages/24/95/ffd128ed1146a153d928617b0ef673960130be0009c77d8fbf0abe306713/rpds_py-0.30.0-cp313-cp313-win_arm64.whl", hash = "sha256:d96c2086587c7c30d44f31f42eae4eac89b60dabbac18c7669be3700f13c3ce1", size = 230645, upload-time = "2025-11-30T20:23:03.43Z" },
- { url = "https://files.pythonhosted.org/packages/ff/1b/b10de890a0def2a319a2626334a7f0ae388215eb60914dbac8a3bae54435/rpds_py-0.30.0-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:eb0b93f2e5c2189ee831ee43f156ed34e2a89a78a66b98cadad955972548be5a", size = 364443, upload-time = "2025-11-30T20:23:04.878Z" },
- { url = "https://files.pythonhosted.org/packages/0d/bf/27e39f5971dc4f305a4fb9c672ca06f290f7c4e261c568f3dea16a410d47/rpds_py-0.30.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:922e10f31f303c7c920da8981051ff6d8c1a56207dbdf330d9047f6d30b70e5e", size = 353375, upload-time = "2025-11-30T20:23:06.342Z" },
- { url = "https://files.pythonhosted.org/packages/40/58/442ada3bba6e8e6615fc00483135c14a7538d2ffac30e2d933ccf6852232/rpds_py-0.30.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdc62c8286ba9bf7f47befdcea13ea0e26bf294bda99758fd90535cbaf408000", size = 383850, upload-time = "2025-11-30T20:23:07.825Z" },
- { url = "https://files.pythonhosted.org/packages/14/14/f59b0127409a33c6ef6f5c1ebd5ad8e32d7861c9c7adfa9a624fc3889f6c/rpds_py-0.30.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:47f9a91efc418b54fb8190a6b4aa7813a23fb79c51f4bb84e418f5476c38b8db", size = 392812, upload-time = "2025-11-30T20:23:09.228Z" },
- { url = "https://files.pythonhosted.org/packages/b3/66/e0be3e162ac299b3a22527e8913767d869e6cc75c46bd844aa43fb81ab62/rpds_py-0.30.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1f3587eb9b17f3789ad50824084fa6f81921bbf9a795826570bda82cb3ed91f2", size = 517841, upload-time = "2025-11-30T20:23:11.186Z" },
- { url = "https://files.pythonhosted.org/packages/3d/55/fa3b9cf31d0c963ecf1ba777f7cf4b2a2c976795ac430d24a1f43d25a6ba/rpds_py-0.30.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:39c02563fc592411c2c61d26b6c5fe1e51eaa44a75aa2c8735ca88b0d9599daa", size = 408149, upload-time = "2025-11-30T20:23:12.864Z" },
- { url = "https://files.pythonhosted.org/packages/60/ca/780cf3b1a32b18c0f05c441958d3758f02544f1d613abf9488cd78876378/rpds_py-0.30.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:51a1234d8febafdfd33a42d97da7a43f5dcb120c1060e352a3fbc0c6d36e2083", size = 383843, upload-time = "2025-11-30T20:23:14.638Z" },
- { url = "https://files.pythonhosted.org/packages/82/86/d5f2e04f2aa6247c613da0c1dd87fcd08fa17107e858193566048a1e2f0a/rpds_py-0.30.0-cp313-cp313t-manylinux_2_31_riscv64.whl", hash = "sha256:eb2c4071ab598733724c08221091e8d80e89064cd472819285a9ab0f24bcedb9", size = 396507, upload-time = "2025-11-30T20:23:16.105Z" },
- { url = "https://files.pythonhosted.org/packages/4b/9a/453255d2f769fe44e07ea9785c8347edaf867f7026872e76c1ad9f7bed92/rpds_py-0.30.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6bdfdb946967d816e6adf9a3d8201bfad269c67efe6cefd7093ef959683c8de0", size = 414949, upload-time = "2025-11-30T20:23:17.539Z" },
- { url = "https://files.pythonhosted.org/packages/a3/31/622a86cdc0c45d6df0e9ccb6becdba5074735e7033c20e401a6d9d0e2ca0/rpds_py-0.30.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:c77afbd5f5250bf27bf516c7c4a016813eb2d3e116139aed0096940c5982da94", size = 565790, upload-time = "2025-11-30T20:23:19.029Z" },
- { url = "https://files.pythonhosted.org/packages/1c/5d/15bbf0fb4a3f58a3b1c67855ec1efcc4ceaef4e86644665fff03e1b66d8d/rpds_py-0.30.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:61046904275472a76c8c90c9ccee9013d70a6d0f73eecefd38c1ae7c39045a08", size = 590217, upload-time = "2025-11-30T20:23:20.885Z" },
- { url = "https://files.pythonhosted.org/packages/6d/61/21b8c41f68e60c8cc3b2e25644f0e3681926020f11d06ab0b78e3c6bbff1/rpds_py-0.30.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:4c5f36a861bc4b7da6516dbdf302c55313afa09b81931e8280361a4f6c9a2d27", size = 555806, upload-time = "2025-11-30T20:23:22.488Z" },
- { url = "https://files.pythonhosted.org/packages/f9/39/7e067bb06c31de48de3eb200f9fc7c58982a4d3db44b07e73963e10d3be9/rpds_py-0.30.0-cp313-cp313t-win32.whl", hash = "sha256:3d4a69de7a3e50ffc214ae16d79d8fbb0922972da0356dcf4d0fdca2878559c6", size = 211341, upload-time = "2025-11-30T20:23:24.449Z" },
- { url = "https://files.pythonhosted.org/packages/0a/4d/222ef0b46443cf4cf46764d9c630f3fe4abaa7245be9417e56e9f52b8f65/rpds_py-0.30.0-cp313-cp313t-win_amd64.whl", hash = "sha256:f14fc5df50a716f7ece6a80b6c78bb35ea2ca47c499e422aa4463455dd96d56d", size = 225768, upload-time = "2025-11-30T20:23:25.908Z" },
- { url = "https://files.pythonhosted.org/packages/86/81/dad16382ebbd3d0e0328776d8fd7ca94220e4fa0798d1dc5e7da48cb3201/rpds_py-0.30.0-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:68f19c879420aa08f61203801423f6cd5ac5f0ac4ac82a2368a9fcd6a9a075e0", size = 362099, upload-time = "2025-11-30T20:23:27.316Z" },
- { url = "https://files.pythonhosted.org/packages/2b/60/19f7884db5d5603edf3c6bce35408f45ad3e97e10007df0e17dd57af18f8/rpds_py-0.30.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:ec7c4490c672c1a0389d319b3a9cfcd098dcdc4783991553c332a15acf7249be", size = 353192, upload-time = "2025-11-30T20:23:29.151Z" },
- { url = "https://files.pythonhosted.org/packages/bf/c4/76eb0e1e72d1a9c4703c69607cec123c29028bff28ce41588792417098ac/rpds_py-0.30.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f251c812357a3fed308d684a5079ddfb9d933860fc6de89f2b7ab00da481e65f", size = 384080, upload-time = "2025-11-30T20:23:30.785Z" },
- { url = "https://files.pythonhosted.org/packages/72/87/87ea665e92f3298d1b26d78814721dc39ed8d2c74b86e83348d6b48a6f31/rpds_py-0.30.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ac98b175585ecf4c0348fd7b29c3864bda53b805c773cbf7bfdaffc8070c976f", size = 394841, upload-time = "2025-11-30T20:23:32.209Z" },
- { url = "https://files.pythonhosted.org/packages/77/ad/7783a89ca0587c15dcbf139b4a8364a872a25f861bdb88ed99f9b0dec985/rpds_py-0.30.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3e62880792319dbeb7eb866547f2e35973289e7d5696c6e295476448f5b63c87", size = 516670, upload-time = "2025-11-30T20:23:33.742Z" },
- { url = "https://files.pythonhosted.org/packages/5b/3c/2882bdac942bd2172f3da574eab16f309ae10a3925644e969536553cb4ee/rpds_py-0.30.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4e7fc54e0900ab35d041b0601431b0a0eb495f0851a0639b6ef90f7741b39a18", size = 408005, upload-time = "2025-11-30T20:23:35.253Z" },
- { url = "https://files.pythonhosted.org/packages/ce/81/9a91c0111ce1758c92516a3e44776920b579d9a7c09b2b06b642d4de3f0f/rpds_py-0.30.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47e77dc9822d3ad616c3d5759ea5631a75e5809d5a28707744ef79d7a1bcfcad", size = 382112, upload-time = "2025-11-30T20:23:36.842Z" },
- { url = "https://files.pythonhosted.org/packages/cf/8e/1da49d4a107027e5fbc64daeab96a0706361a2918da10cb41769244b805d/rpds_py-0.30.0-cp314-cp314-manylinux_2_31_riscv64.whl", hash = "sha256:b4dc1a6ff022ff85ecafef7979a2c6eb423430e05f1165d6688234e62ba99a07", size = 399049, upload-time = "2025-11-30T20:23:38.343Z" },
- { url = "https://files.pythonhosted.org/packages/df/5a/7ee239b1aa48a127570ec03becbb29c9d5a9eb092febbd1699d567cae859/rpds_py-0.30.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:4559c972db3a360808309e06a74628b95eaccbf961c335c8fe0d590cf587456f", size = 415661, upload-time = "2025-11-30T20:23:40.263Z" },
- { url = "https://files.pythonhosted.org/packages/70/ea/caa143cf6b772f823bc7929a45da1fa83569ee49b11d18d0ada7f5ee6fd6/rpds_py-0.30.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:0ed177ed9bded28f8deb6ab40c183cd1192aa0de40c12f38be4d59cd33cb5c65", size = 565606, upload-time = "2025-11-30T20:23:42.186Z" },
- { url = "https://files.pythonhosted.org/packages/64/91/ac20ba2d69303f961ad8cf55bf7dbdb4763f627291ba3d0d7d67333cced9/rpds_py-0.30.0-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:ad1fa8db769b76ea911cb4e10f049d80bf518c104f15b3edb2371cc65375c46f", size = 591126, upload-time = "2025-11-30T20:23:44.086Z" },
- { url = "https://files.pythonhosted.org/packages/21/20/7ff5f3c8b00c8a95f75985128c26ba44503fb35b8e0259d812766ea966c7/rpds_py-0.30.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:46e83c697b1f1c72b50e5ee5adb4353eef7406fb3f2043d64c33f20ad1c2fc53", size = 553371, upload-time = "2025-11-30T20:23:46.004Z" },
- { url = "https://files.pythonhosted.org/packages/72/c7/81dadd7b27c8ee391c132a6b192111ca58d866577ce2d9b0ca157552cce0/rpds_py-0.30.0-cp314-cp314-win32.whl", hash = "sha256:ee454b2a007d57363c2dfd5b6ca4a5d7e2c518938f8ed3b706e37e5d470801ed", size = 215298, upload-time = "2025-11-30T20:23:47.696Z" },
- { url = "https://files.pythonhosted.org/packages/3e/d2/1aaac33287e8cfb07aab2e6b8ac1deca62f6f65411344f1433c55e6f3eb8/rpds_py-0.30.0-cp314-cp314-win_amd64.whl", hash = "sha256:95f0802447ac2d10bcc69f6dc28fe95fdf17940367b21d34e34c737870758950", size = 228604, upload-time = "2025-11-30T20:23:49.501Z" },
- { url = "https://files.pythonhosted.org/packages/e8/95/ab005315818cc519ad074cb7784dae60d939163108bd2b394e60dc7b5461/rpds_py-0.30.0-cp314-cp314-win_arm64.whl", hash = "sha256:613aa4771c99f03346e54c3f038e4cc574ac09a3ddfb0e8878487335e96dead6", size = 222391, upload-time = "2025-11-30T20:23:50.96Z" },
- { url = "https://files.pythonhosted.org/packages/9e/68/154fe0194d83b973cdedcdcc88947a2752411165930182ae41d983dcefa6/rpds_py-0.30.0-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:7e6ecfcb62edfd632e56983964e6884851786443739dbfe3582947e87274f7cb", size = 364868, upload-time = "2025-11-30T20:23:52.494Z" },
- { url = "https://files.pythonhosted.org/packages/83/69/8bbc8b07ec854d92a8b75668c24d2abcb1719ebf890f5604c61c9369a16f/rpds_py-0.30.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:a1d0bc22a7cdc173fedebb73ef81e07faef93692b8c1ad3733b67e31e1b6e1b8", size = 353747, upload-time = "2025-11-30T20:23:54.036Z" },
- { url = "https://files.pythonhosted.org/packages/ab/00/ba2e50183dbd9abcce9497fa5149c62b4ff3e22d338a30d690f9af970561/rpds_py-0.30.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0d08f00679177226c4cb8c5265012eea897c8ca3b93f429e546600c971bcbae7", size = 383795, upload-time = "2025-11-30T20:23:55.556Z" },
- { url = "https://files.pythonhosted.org/packages/05/6f/86f0272b84926bcb0e4c972262f54223e8ecc556b3224d281e6598fc9268/rpds_py-0.30.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5965af57d5848192c13534f90f9dd16464f3c37aaf166cc1da1cae1fd5a34898", size = 393330, upload-time = "2025-11-30T20:23:57.033Z" },
- { url = "https://files.pythonhosted.org/packages/cb/e9/0e02bb2e6dc63d212641da45df2b0bf29699d01715913e0d0f017ee29438/rpds_py-0.30.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9a4e86e34e9ab6b667c27f3211ca48f73dba7cd3d90f8d5b11be56e5dbc3fb4e", size = 518194, upload-time = "2025-11-30T20:23:58.637Z" },
- { url = "https://files.pythonhosted.org/packages/ee/ca/be7bca14cf21513bdf9c0606aba17d1f389ea2b6987035eb4f62bd923f25/rpds_py-0.30.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e5d3e6b26f2c785d65cc25ef1e5267ccbe1b069c5c21b8cc724efee290554419", size = 408340, upload-time = "2025-11-30T20:24:00.2Z" },
- { url = "https://files.pythonhosted.org/packages/c2/c7/736e00ebf39ed81d75544c0da6ef7b0998f8201b369acf842f9a90dc8fce/rpds_py-0.30.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:626a7433c34566535b6e56a1b39a7b17ba961e97ce3b80ec62e6f1312c025551", size = 383765, upload-time = "2025-11-30T20:24:01.759Z" },
- { url = "https://files.pythonhosted.org/packages/4a/3f/da50dfde9956aaf365c4adc9533b100008ed31aea635f2b8d7b627e25b49/rpds_py-0.30.0-cp314-cp314t-manylinux_2_31_riscv64.whl", hash = "sha256:acd7eb3f4471577b9b5a41baf02a978e8bdeb08b4b355273994f8b87032000a8", size = 396834, upload-time = "2025-11-30T20:24:03.687Z" },
- { url = "https://files.pythonhosted.org/packages/4e/00/34bcc2565b6020eab2623349efbdec810676ad571995911f1abdae62a3a0/rpds_py-0.30.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fe5fa731a1fa8a0a56b0977413f8cacac1768dad38d16b3a296712709476fbd5", size = 415470, upload-time = "2025-11-30T20:24:05.232Z" },
- { url = "https://files.pythonhosted.org/packages/8c/28/882e72b5b3e6f718d5453bd4d0d9cf8df36fddeb4ddbbab17869d5868616/rpds_py-0.30.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:74a3243a411126362712ee1524dfc90c650a503502f135d54d1b352bd01f2404", size = 565630, upload-time = "2025-11-30T20:24:06.878Z" },
- { url = "https://files.pythonhosted.org/packages/3b/97/04a65539c17692de5b85c6e293520fd01317fd878ea1995f0367d4532fb1/rpds_py-0.30.0-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:3e8eeb0544f2eb0d2581774be4c3410356eba189529a6b3e36bbbf9696175856", size = 591148, upload-time = "2025-11-30T20:24:08.445Z" },
- { url = "https://files.pythonhosted.org/packages/85/70/92482ccffb96f5441aab93e26c4d66489eb599efdcf96fad90c14bbfb976/rpds_py-0.30.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:dbd936cde57abfee19ab3213cf9c26be06d60750e60a8e4dd85d1ab12c8b1f40", size = 556030, upload-time = "2025-11-30T20:24:10.956Z" },
- { url = "https://files.pythonhosted.org/packages/20/53/7c7e784abfa500a2b6b583b147ee4bb5a2b3747a9166bab52fec4b5b5e7d/rpds_py-0.30.0-cp314-cp314t-win32.whl", hash = "sha256:dc824125c72246d924f7f796b4f63c1e9dc810c7d9e2355864b3c3a73d59ade0", size = 211570, upload-time = "2025-11-30T20:24:12.735Z" },
- { url = "https://files.pythonhosted.org/packages/d0/02/fa464cdfbe6b26e0600b62c528b72d8608f5cc49f96b8d6e38c95d60c676/rpds_py-0.30.0-cp314-cp314t-win_amd64.whl", hash = "sha256:27f4b0e92de5bfbc6f86e43959e6edd1425c33b5e69aab0984a72047f2bcf1e3", size = 226532, upload-time = "2025-11-30T20:24:14.634Z" },
- { url = "https://files.pythonhosted.org/packages/69/71/3f34339ee70521864411f8b6992e7ab13ac30d8e4e3309e07c7361767d91/rpds_py-0.30.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:c2262bdba0ad4fc6fb5545660673925c2d2a5d9e2e0fb603aad545427be0fc58", size = 372292, upload-time = "2025-11-30T20:24:16.537Z" },
- { url = "https://files.pythonhosted.org/packages/57/09/f183df9b8f2d66720d2ef71075c59f7e1b336bec7ee4c48f0a2b06857653/rpds_py-0.30.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:ee6af14263f25eedc3bb918a3c04245106a42dfd4f5c2285ea6f997b1fc3f89a", size = 362128, upload-time = "2025-11-30T20:24:18.086Z" },
- { url = "https://files.pythonhosted.org/packages/7a/68/5c2594e937253457342e078f0cc1ded3dd7b2ad59afdbf2d354869110a02/rpds_py-0.30.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3adbb8179ce342d235c31ab8ec511e66c73faa27a47e076ccc92421add53e2bb", size = 391542, upload-time = "2025-11-30T20:24:20.092Z" },
- { url = "https://files.pythonhosted.org/packages/49/5c/31ef1afd70b4b4fbdb2800249f34c57c64beb687495b10aec0365f53dfc4/rpds_py-0.30.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:250fa00e9543ac9b97ac258bd37367ff5256666122c2d0f2bc97577c60a1818c", size = 404004, upload-time = "2025-11-30T20:24:22.231Z" },
- { url = "https://files.pythonhosted.org/packages/e3/63/0cfbea38d05756f3440ce6534d51a491d26176ac045e2707adc99bb6e60a/rpds_py-0.30.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9854cf4f488b3d57b9aaeb105f06d78e5529d3145b1e4a41750167e8c213c6d3", size = 527063, upload-time = "2025-11-30T20:24:24.302Z" },
- { url = "https://files.pythonhosted.org/packages/42/e6/01e1f72a2456678b0f618fc9a1a13f882061690893c192fcad9f2926553a/rpds_py-0.30.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:993914b8e560023bc0a8bf742c5f303551992dcb85e247b1e5c7f4a7d145bda5", size = 413099, upload-time = "2025-11-30T20:24:25.916Z" },
- { url = "https://files.pythonhosted.org/packages/b8/25/8df56677f209003dcbb180765520c544525e3ef21ea72279c98b9aa7c7fb/rpds_py-0.30.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:58edca431fb9b29950807e301826586e5bbf24163677732429770a697ffe6738", size = 392177, upload-time = "2025-11-30T20:24:27.834Z" },
- { url = "https://files.pythonhosted.org/packages/4a/b4/0a771378c5f16f8115f796d1f437950158679bcd2a7c68cf251cfb00ed5b/rpds_py-0.30.0-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl", hash = "sha256:dea5b552272a944763b34394d04577cf0f9bd013207bc32323b5a89a53cf9c2f", size = 406015, upload-time = "2025-11-30T20:24:29.457Z" },
- { url = "https://files.pythonhosted.org/packages/36/d8/456dbba0af75049dc6f63ff295a2f92766b9d521fa00de67a2bd6427d57a/rpds_py-0.30.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ba3af48635eb83d03f6c9735dfb21785303e73d22ad03d489e88adae6eab8877", size = 423736, upload-time = "2025-11-30T20:24:31.22Z" },
- { url = "https://files.pythonhosted.org/packages/13/64/b4d76f227d5c45a7e0b796c674fd81b0a6c4fbd48dc29271857d8219571c/rpds_py-0.30.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:dff13836529b921e22f15cb099751209a60009731a68519630a24d61f0b1b30a", size = 573981, upload-time = "2025-11-30T20:24:32.934Z" },
- { url = "https://files.pythonhosted.org/packages/20/91/092bacadeda3edf92bf743cc96a7be133e13a39cdbfd7b5082e7ab638406/rpds_py-0.30.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl", hash = "sha256:1b151685b23929ab7beec71080a8889d4d6d9fa9a983d213f07121205d48e2c4", size = 599782, upload-time = "2025-11-30T20:24:35.169Z" },
- { url = "https://files.pythonhosted.org/packages/d1/b7/b95708304cd49b7b6f82fdd039f1748b66ec2b21d6a45180910802f1abf1/rpds_py-0.30.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:ac37f9f516c51e5753f27dfdef11a88330f04de2d564be3991384b2f3535d02e", size = 562191, upload-time = "2025-11-30T20:24:36.853Z" },
-]
-
-[[package]]
-name = "s3fs"
-version = "2025.3.0"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "aiobotocore" },
- { name = "aiohttp" },
- { name = "fsspec" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/e4/cd/5dde2fed1699ff48120336249d9857a574e39feb8afaff694568ab1499b3/s3fs-2025.3.0.tar.gz", hash = "sha256:446dd539eb0d0678209723cb7ad1bedbb172185b0d34675b09be1ad81843a644", size = 77153, upload-time = "2025-03-07T21:58:32.114Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/3a/3f/35f4041a82a68df89fe4af97c8bb44aa492dad924799cbb02078e9e303e6/s3fs-2025.3.0-py3-none-any.whl", hash = "sha256:88d803615baa04945156ca0e1498009b7acd3132c07198bd81b3e874846e0aa2", size = 30454, upload-time = "2025-03-07T21:58:30.998Z" },
-]
-
-[[package]]
-name = "scipy"
-version = "1.14.1"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "numpy" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/62/11/4d44a1f274e002784e4dbdb81e0ea96d2de2d1045b2132d5af62cc31fd28/scipy-1.14.1.tar.gz", hash = "sha256:5a275584e726026a5699459aa72f828a610821006228e841b94275c4a7c08417", size = 58620554, upload-time = "2024-08-21T00:09:20.662Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/b2/ab/070ccfabe870d9f105b04aee1e2860520460ef7ca0213172abfe871463b9/scipy-1.14.1-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:2da0469a4ef0ecd3693761acbdc20f2fdeafb69e6819cc081308cc978153c675", size = 39076999, upload-time = "2024-08-21T00:04:32.61Z" },
- { url = "https://files.pythonhosted.org/packages/a7/c5/02ac82f9bb8f70818099df7e86c3ad28dae64e1347b421d8e3adf26acab6/scipy-1.14.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:c0ee987efa6737242745f347835da2cc5bb9f1b42996a4d97d5c7ff7928cb6f2", size = 29894570, upload-time = "2024-08-21T00:04:37.938Z" },
- { url = "https://files.pythonhosted.org/packages/ed/05/7f03e680cc5249c4f96c9e4e845acde08eb1aee5bc216eff8a089baa4ddb/scipy-1.14.1-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:3a1b111fac6baec1c1d92f27e76511c9e7218f1695d61b59e05e0fe04dc59617", size = 23103567, upload-time = "2024-08-21T00:04:42.582Z" },
- { url = "https://files.pythonhosted.org/packages/5e/fc/9f1413bef53171f379d786aabc104d4abeea48ee84c553a3e3d8c9f96a9c/scipy-1.14.1-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:8475230e55549ab3f207bff11ebfc91c805dc3463ef62eda3ccf593254524ce8", size = 25499102, upload-time = "2024-08-21T00:04:47.467Z" },
- { url = "https://files.pythonhosted.org/packages/c2/4b/b44bee3c2ddc316b0159b3d87a3d467ef8d7edfd525e6f7364a62cd87d90/scipy-1.14.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:278266012eb69f4a720827bdd2dc54b2271c97d84255b2faaa8f161a158c3b37", size = 35586346, upload-time = "2024-08-21T00:04:53.872Z" },
- { url = "https://files.pythonhosted.org/packages/93/6b/701776d4bd6bdd9b629c387b5140f006185bd8ddea16788a44434376b98f/scipy-1.14.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fef8c87f8abfb884dac04e97824b61299880c43f4ce675dd2cbeadd3c9b466d2", size = 41165244, upload-time = "2024-08-21T00:05:00.489Z" },
- { url = "https://files.pythonhosted.org/packages/06/57/e6aa6f55729a8f245d8a6984f2855696c5992113a5dc789065020f8be753/scipy-1.14.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b05d43735bb2f07d689f56f7b474788a13ed8adc484a85aa65c0fd931cf9ccd2", size = 42817917, upload-time = "2024-08-21T00:05:07.533Z" },
- { url = "https://files.pythonhosted.org/packages/ea/c2/5ecadc5fcccefaece775feadcd795060adf5c3b29a883bff0e678cfe89af/scipy-1.14.1-cp311-cp311-win_amd64.whl", hash = "sha256:716e389b694c4bb564b4fc0c51bc84d381735e0d39d3f26ec1af2556ec6aad94", size = 44781033, upload-time = "2024-08-21T00:05:14.297Z" },
- { url = "https://files.pythonhosted.org/packages/c0/04/2bdacc8ac6387b15db6faa40295f8bd25eccf33f1f13e68a72dc3c60a99e/scipy-1.14.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:631f07b3734d34aced009aaf6fedfd0eb3498a97e581c3b1e5f14a04164a456d", size = 39128781, upload-time = "2024-08-21T04:08:04.15Z" },
- { url = "https://files.pythonhosted.org/packages/c8/53/35b4d41f5fd42f5781dbd0dd6c05d35ba8aa75c84ecddc7d44756cd8da2e/scipy-1.14.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:af29a935803cc707ab2ed7791c44288a682f9c8107bc00f0eccc4f92c08d6e07", size = 29939542, upload-time = "2024-08-21T00:05:25.758Z" },
- { url = "https://files.pythonhosted.org/packages/66/67/6ef192e0e4d77b20cc33a01e743b00bc9e68fb83b88e06e636d2619a8767/scipy-1.14.1-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:2843f2d527d9eebec9a43e6b406fb7266f3af25a751aa91d62ff416f54170bc5", size = 23148375, upload-time = "2024-08-21T00:05:30.359Z" },
- { url = "https://files.pythonhosted.org/packages/f6/32/3a6dedd51d68eb7b8e7dc7947d5d841bcb699f1bf4463639554986f4d782/scipy-1.14.1-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:eb58ca0abd96911932f688528977858681a59d61a7ce908ffd355957f7025cfc", size = 25578573, upload-time = "2024-08-21T00:05:35.274Z" },
- { url = "https://files.pythonhosted.org/packages/f0/5a/efa92a58dc3a2898705f1dc9dbaf390ca7d4fba26d6ab8cfffb0c72f656f/scipy-1.14.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:30ac8812c1d2aab7131a79ba62933a2a76f582d5dbbc695192453dae67ad6310", size = 35319299, upload-time = "2024-08-21T00:05:40.956Z" },
- { url = "https://files.pythonhosted.org/packages/8e/ee/8a26858ca517e9c64f84b4c7734b89bda8e63bec85c3d2f432d225bb1886/scipy-1.14.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f9ea80f2e65bdaa0b7627fb00cbeb2daf163caa015e59b7516395fe3bd1e066", size = 40849331, upload-time = "2024-08-21T00:05:47.53Z" },
- { url = "https://files.pythonhosted.org/packages/a5/cd/06f72bc9187840f1c99e1a8750aad4216fc7dfdd7df46e6280add14b4822/scipy-1.14.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:edaf02b82cd7639db00dbff629995ef185c8df4c3ffa71a5562a595765a06ce1", size = 42544049, upload-time = "2024-08-21T00:05:59.294Z" },
- { url = "https://files.pythonhosted.org/packages/aa/7d/43ab67228ef98c6b5dd42ab386eae2d7877036970a0d7e3dd3eb47a0d530/scipy-1.14.1-cp312-cp312-win_amd64.whl", hash = "sha256:2ff38e22128e6c03ff73b6bb0f85f897d2362f8c052e3b8ad00532198fbdae3f", size = 44521212, upload-time = "2024-08-21T00:06:06.521Z" },
- { url = "https://files.pythonhosted.org/packages/50/ef/ac98346db016ff18a6ad7626a35808f37074d25796fd0234c2bb0ed1e054/scipy-1.14.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:1729560c906963fc8389f6aac023739ff3983e727b1a4d87696b7bf108316a79", size = 39091068, upload-time = "2024-08-21T00:06:13.671Z" },
- { url = "https://files.pythonhosted.org/packages/b9/cc/70948fe9f393b911b4251e96b55bbdeaa8cca41f37c26fd1df0232933b9e/scipy-1.14.1-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:4079b90df244709e675cdc8b93bfd8a395d59af40b72e339c2287c91860deb8e", size = 29875417, upload-time = "2024-08-21T00:06:21.482Z" },
- { url = "https://files.pythonhosted.org/packages/3b/2e/35f549b7d231c1c9f9639f9ef49b815d816bf54dd050da5da1c11517a218/scipy-1.14.1-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:e0cf28db0f24a38b2a0ca33a85a54852586e43cf6fd876365c86e0657cfe7d73", size = 23084508, upload-time = "2024-08-21T00:06:28.064Z" },
- { url = "https://files.pythonhosted.org/packages/3f/d6/b028e3f3e59fae61fb8c0f450db732c43dd1d836223a589a8be9f6377203/scipy-1.14.1-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:0c2f95de3b04e26f5f3ad5bb05e74ba7f68b837133a4492414b3afd79dfe540e", size = 25503364, upload-time = "2024-08-21T00:06:35.25Z" },
- { url = "https://files.pythonhosted.org/packages/a7/2f/6c142b352ac15967744d62b165537a965e95d557085db4beab2a11f7943b/scipy-1.14.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b99722ea48b7ea25e8e015e8341ae74624f72e5f21fc2abd45f3a93266de4c5d", size = 35292639, upload-time = "2024-08-21T00:06:44.542Z" },
- { url = "https://files.pythonhosted.org/packages/56/46/2449e6e51e0d7c3575f289f6acb7f828938eaab8874dbccfeb0cd2b71a27/scipy-1.14.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5149e3fd2d686e42144a093b206aef01932a0059c2a33ddfa67f5f035bdfe13e", size = 40798288, upload-time = "2024-08-21T00:06:54.182Z" },
- { url = "https://files.pythonhosted.org/packages/32/cd/9d86f7ed7f4497c9fd3e39f8918dd93d9f647ba80d7e34e4946c0c2d1a7c/scipy-1.14.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e4f5a7c49323533f9103d4dacf4e4f07078f360743dec7f7596949149efeec06", size = 42524647, upload-time = "2024-08-21T00:07:04.649Z" },
- { url = "https://files.pythonhosted.org/packages/f5/1b/6ee032251bf4cdb0cc50059374e86a9f076308c1512b61c4e003e241efb7/scipy-1.14.1-cp313-cp313-win_amd64.whl", hash = "sha256:baff393942b550823bfce952bb62270ee17504d02a1801d7fd0719534dfb9c84", size = 44469524, upload-time = "2024-08-21T00:07:15.381Z" },
-]
-
-[[package]]
-name = "shellingham"
-version = "1.5.4"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/58/15/8b3609fd3830ef7b27b655beb4b4e9c62313a4e8da8c676e142cc210d58e/shellingham-1.5.4.tar.gz", hash = "sha256:8dbca0739d487e5bd35ab3ca4b36e11c4078f3a234bfce294b0a0291363404de", size = 10310, upload-time = "2023-10-24T04:13:40.426Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/e0/f9/0595336914c5619e5f28a1fb793285925a8cd4b432c9da0a987836c7f822/shellingham-1.5.4-py2.py3-none-any.whl", hash = "sha256:7ecfff8f2fd72616f7481040475a65b2bf8af90a56c89140852d1120324e8686", size = 9755, upload-time = "2023-10-24T04:13:38.866Z" },
-]
-
-[[package]]
-name = "six"
-version = "1.17.0"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/94/e7/b2c673351809dca68a0e064b6af791aa332cf192da575fd474ed7d6f16a2/six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81", size = 34031, upload-time = "2024-12-04T17:35:28.174Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274", size = 11050, upload-time = "2024-12-04T17:35:26.475Z" },
-]
-
-[[package]]
-name = "smmap"
-version = "5.0.2"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/44/cd/a040c4b3119bbe532e5b0732286f805445375489fceaec1f48306068ee3b/smmap-5.0.2.tar.gz", hash = "sha256:26ea65a03958fa0c8a1c7e8c7a58fdc77221b8910f6be2131affade476898ad5", size = 22329, upload-time = "2025-01-02T07:14:40.909Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/04/be/d09147ad1ec7934636ad912901c5fd7667e1c858e19d355237db0d0cd5e4/smmap-5.0.2-py3-none-any.whl", hash = "sha256:b30115f0def7d7531d22a0fb6502488d879e75b260a9db4d0819cfb25403af5e", size = 24303, upload-time = "2025-01-02T07:14:38.724Z" },
-]
-
-[[package]]
-name = "streamlit"
-version = "1.53.1"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "altair" },
- { name = "blinker" },
- { name = "cachetools" },
- { name = "click" },
- { name = "gitpython" },
- { name = "numpy" },
- { name = "packaging" },
- { name = "pandas" },
- { name = "pillow" },
- { name = "protobuf" },
- { name = "pyarrow" },
- { name = "pydeck" },
- { name = "requests" },
- { name = "tenacity" },
- { name = "toml" },
- { name = "tornado" },
- { name = "typing-extensions" },
- { name = "watchdog", marker = "sys_platform != 'darwin'" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/31/cc/347730d06e3950e426bf2ee06eaf9b281e18387bffa82bd69aa0f281eee3/streamlit-1.53.1.tar.gz", hash = "sha256:ae656af3b68b4bb2d669fa977606096f2021bcbaa14a454a290f8e0a37bab277", size = 8650843, upload-time = "2026-01-22T21:39:04.087Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/23/c3/5e6f6a9328d57436b658447b6f05969d435df8d31344e34ec75c3044657b/streamlit-1.53.1-py3-none-any.whl", hash = "sha256:9534d151feea485b69200dd36448f95f418c511e8c81186ceb57133bdf1443f7", size = 9111505, upload-time = "2026-01-22T21:39:01.344Z" },
-]
-
-[[package]]
-name = "tenacity"
-version = "9.1.2"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/0a/d4/2b0cd0fe285e14b36db076e78c93766ff1d529d70408bd1d2a5a84f1d929/tenacity-9.1.2.tar.gz", hash = "sha256:1169d376c297e7de388d18b4481760d478b0e99a777cad3a9c86e556f4b697cb", size = 48036, upload-time = "2025-04-02T08:25:09.966Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/e5/30/643397144bfbfec6f6ef821f36f33e57d35946c44a2352d3c9f0ae847619/tenacity-9.1.2-py3-none-any.whl", hash = "sha256:f77bf36710d8b73a50b2dd155c97b870017ad21afe6ab300326b0371b3b05138", size = 28248, upload-time = "2025-04-02T08:25:07.678Z" },
-]
-
-[[package]]
-name = "toml"
-version = "0.10.2"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/be/ba/1f744cdc819428fc6b5084ec34d9b30660f6f9daaf70eead706e3203ec3c/toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f", size = 22253, upload-time = "2020-11-01T01:40:22.204Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/44/6f/7120676b6d73228c96e17f1f794d8ab046fc910d781c8d151120c3f1569e/toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b", size = 16588, upload-time = "2020-11-01T01:40:20.672Z" },
-]
-
-[[package]]
-name = "tornado"
-version = "6.5.4"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/37/1d/0a336abf618272d53f62ebe274f712e213f5a03c0b2339575430b8362ef2/tornado-6.5.4.tar.gz", hash = "sha256:a22fa9047405d03260b483980635f0b041989d8bcc9a313f8fe18b411d84b1d7", size = 513632, upload-time = "2025-12-15T19:21:03.836Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/ab/a9/e94a9d5224107d7ce3cc1fab8d5dc97f5ea351ccc6322ee4fb661da94e35/tornado-6.5.4-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:d6241c1a16b1c9e4cc28148b1cda97dd1c6cb4fb7068ac1bedc610768dff0ba9", size = 443909, upload-time = "2025-12-15T19:20:48.382Z" },
- { url = "https://files.pythonhosted.org/packages/db/7e/f7b8d8c4453f305a51f80dbb49014257bb7d28ccb4bbb8dd328ea995ecad/tornado-6.5.4-cp39-abi3-macosx_10_9_x86_64.whl", hash = "sha256:2d50f63dda1d2cac3ae1fa23d254e16b5e38153758470e9956cbc3d813d40843", size = 442163, upload-time = "2025-12-15T19:20:49.791Z" },
- { url = "https://files.pythonhosted.org/packages/ba/b5/206f82d51e1bfa940ba366a8d2f83904b15942c45a78dd978b599870ab44/tornado-6.5.4-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d1cf66105dc6acb5af613c054955b8137e34a03698aa53272dbda4afe252be17", size = 445746, upload-time = "2025-12-15T19:20:51.491Z" },
- { url = "https://files.pythonhosted.org/packages/8e/9d/1a3338e0bd30ada6ad4356c13a0a6c35fbc859063fa7eddb309183364ac1/tornado-6.5.4-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:50ff0a58b0dc97939d29da29cd624da010e7f804746621c78d14b80238669335", size = 445083, upload-time = "2025-12-15T19:20:52.778Z" },
- { url = "https://files.pythonhosted.org/packages/50/d4/e51d52047e7eb9a582da59f32125d17c0482d065afd5d3bc435ff2120dc5/tornado-6.5.4-cp39-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e5fb5e04efa54cf0baabdd10061eb4148e0be137166146fff835745f59ab9f7f", size = 445315, upload-time = "2025-12-15T19:20:53.996Z" },
- { url = "https://files.pythonhosted.org/packages/27/07/2273972f69ca63dbc139694a3fc4684edec3ea3f9efabf77ed32483b875c/tornado-6.5.4-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:9c86b1643b33a4cd415f8d0fe53045f913bf07b4a3ef646b735a6a86047dda84", size = 446003, upload-time = "2025-12-15T19:20:56.101Z" },
- { url = "https://files.pythonhosted.org/packages/d1/83/41c52e47502bf7260044413b6770d1a48dda2f0246f95ee1384a3cd9c44a/tornado-6.5.4-cp39-abi3-musllinux_1_2_i686.whl", hash = "sha256:6eb82872335a53dd063a4f10917b3efd28270b56a33db69009606a0312660a6f", size = 445412, upload-time = "2025-12-15T19:20:57.398Z" },
- { url = "https://files.pythonhosted.org/packages/10/c7/bc96917f06cbee182d44735d4ecde9c432e25b84f4c2086143013e7b9e52/tornado-6.5.4-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:6076d5dda368c9328ff41ab5d9dd3608e695e8225d1cd0fd1e006f05da3635a8", size = 445392, upload-time = "2025-12-15T19:20:58.692Z" },
- { url = "https://files.pythonhosted.org/packages/0c/1a/d7592328d037d36f2d2462f4bc1fbb383eec9278bc786c1b111cbbd44cfa/tornado-6.5.4-cp39-abi3-win32.whl", hash = "sha256:1768110f2411d5cd281bac0a090f707223ce77fd110424361092859e089b38d1", size = 446481, upload-time = "2025-12-15T19:21:00.008Z" },
- { url = "https://files.pythonhosted.org/packages/d6/6d/c69be695a0a64fd37a97db12355a035a6d90f79067a3cf936ec2b1dc38cd/tornado-6.5.4-cp39-abi3-win_amd64.whl", hash = "sha256:fa07d31e0cd85c60713f2b995da613588aa03e1303d75705dca6af8babc18ddc", size = 446886, upload-time = "2025-12-15T19:21:01.287Z" },
- { url = "https://files.pythonhosted.org/packages/50/49/8dc3fd90902f70084bd2cd059d576ddb4f8bb44c2c7c0e33a11422acb17e/tornado-6.5.4-cp39-abi3-win_arm64.whl", hash = "sha256:053e6e16701eb6cbe641f308f4c1a9541f91b6261991160391bfc342e8a551a1", size = 445910, upload-time = "2025-12-15T19:21:02.571Z" },
-]
-
-[[package]]
-name = "tqdm"
-version = "4.67.2"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "colorama", marker = "sys_platform == 'win32'" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/27/89/4b0001b2dab8df0a5ee2787dcbe771de75ded01f18f1f8d53dedeea2882b/tqdm-4.67.2.tar.gz", hash = "sha256:649aac53964b2cb8dec76a14b405a4c0d13612cb8933aae547dd144eacc99653", size = 169514, upload-time = "2026-01-30T23:12:06.555Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/f5/e2/31eac96de2915cf20ccaed0225035db149dfb9165a9ed28d4b252ef3f7f7/tqdm-4.67.2-py3-none-any.whl", hash = "sha256:9a12abcbbff58b6036b2167d9d3853042b9d436fe7330f06ae047867f2f8e0a7", size = 78354, upload-time = "2026-01-30T23:12:04.368Z" },
-]
-
-[[package]]
-name = "typer-slim"
-version = "0.21.1"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "click" },
- { name = "typing-extensions" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/17/d4/064570dec6358aa9049d4708e4a10407d74c99258f8b2136bb8702303f1a/typer_slim-0.21.1.tar.gz", hash = "sha256:73495dd08c2d0940d611c5a8c04e91c2a0a98600cbd4ee19192255a233b6dbfd", size = 110478, upload-time = "2026-01-06T11:21:11.176Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/c8/0a/4aca634faf693e33004796b6cee0ae2e1dba375a800c16ab8d3eff4bb800/typer_slim-0.21.1-py3-none-any.whl", hash = "sha256:6e6c31047f171ac93cc5a973c9e617dbc5ab2bddc4d0a3135dc161b4e2020e0d", size = 47444, upload-time = "2026-01-06T11:21:12.441Z" },
-]
-
-[[package]]
-name = "typing-extensions"
-version = "4.15.0"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/72/94/1a15dd82efb362ac84269196e94cf00f187f7ed21c242792a923cdb1c61f/typing_extensions-4.15.0.tar.gz", hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466", size = 109391, upload-time = "2025-08-25T13:49:26.313Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548", size = 44614, upload-time = "2025-08-25T13:49:24.86Z" },
-]
-
-[[package]]
-name = "typing-inspection"
-version = "0.4.2"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "typing-extensions" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/55/e3/70399cb7dd41c10ac53367ae42139cf4b1ca5f36bb3dc6c9d33acdb43655/typing_inspection-0.4.2.tar.gz", hash = "sha256:ba561c48a67c5958007083d386c3295464928b01faa735ab8547c5692e87f464", size = 75949, upload-time = "2025-10-01T02:14:41.687Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/dc/9b/47798a6c91d8bdb567fe2698fe81e0c6b7cb7ef4d13da4114b41d239f65d/typing_inspection-0.4.2-py3-none-any.whl", hash = "sha256:4ed1cacbdc298c220f1bd249ed5287caa16f34d44ef4e9c3d0cbad5b521545e7", size = 14611, upload-time = "2025-10-01T02:14:40.154Z" },
-]
-
-[[package]]
-name = "tzdata"
-version = "2025.3"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/5e/a7/c202b344c5ca7daf398f3b8a477eeb205cf3b6f32e7ec3a6bac0629ca975/tzdata-2025.3.tar.gz", hash = "sha256:de39c2ca5dc7b0344f2eba86f49d614019d29f060fc4ebc8a417896a620b56a7", size = 196772, upload-time = "2025-12-13T17:45:35.667Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/c7/b0/003792df09decd6849a5e39c28b513c06e84436a54440380862b5aeff25d/tzdata-2025.3-py2.py3-none-any.whl", hash = "sha256:06a47e5700f3081aab02b2e513160914ff0694bce9947d6b76ebd6bf57cfc5d1", size = 348521, upload-time = "2025-12-13T17:45:33.889Z" },
-]
-
-[[package]]
-name = "urllib3"
-version = "2.6.3"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/c7/24/5f1b3bdffd70275f6661c76461e25f024d5a38a46f04aaca912426a2b1d3/urllib3-2.6.3.tar.gz", hash = "sha256:1b62b6884944a57dbe321509ab94fd4d3b307075e0c2eae991ac71ee15ad38ed", size = 435556, upload-time = "2026-01-07T16:24:43.925Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/39/08/aaaad47bc4e9dc8c725e68f9d04865dbcb2052843ff09c97b08904852d84/urllib3-2.6.3-py3-none-any.whl", hash = "sha256:bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4", size = 131584, upload-time = "2026-01-07T16:24:42.685Z" },
-]
-
-[[package]]
-name = "watchdog"
-version = "6.0.0"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/db/7d/7f3d619e951c88ed75c6037b246ddcf2d322812ee8ea189be89511721d54/watchdog-6.0.0.tar.gz", hash = "sha256:9ddf7c82fda3ae8e24decda1338ede66e1c99883db93711d8fb941eaa2d8c282", size = 131220, upload-time = "2024-11-01T14:07:13.037Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/a9/c7/ca4bf3e518cb57a686b2feb4f55a1892fd9a3dd13f470fca14e00f80ea36/watchdog-6.0.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:7607498efa04a3542ae3e05e64da8202e58159aa1fa4acddf7678d34a35d4f13", size = 79079, upload-time = "2024-11-01T14:06:59.472Z" },
- { url = "https://files.pythonhosted.org/packages/5c/51/d46dc9332f9a647593c947b4b88e2381c8dfc0942d15b8edc0310fa4abb1/watchdog-6.0.0-py3-none-manylinux2014_armv7l.whl", hash = "sha256:9041567ee8953024c83343288ccc458fd0a2d811d6a0fd68c4c22609e3490379", size = 79078, upload-time = "2024-11-01T14:07:01.431Z" },
- { url = "https://files.pythonhosted.org/packages/d4/57/04edbf5e169cd318d5f07b4766fee38e825d64b6913ca157ca32d1a42267/watchdog-6.0.0-py3-none-manylinux2014_i686.whl", hash = "sha256:82dc3e3143c7e38ec49d61af98d6558288c415eac98486a5c581726e0737c00e", size = 79076, upload-time = "2024-11-01T14:07:02.568Z" },
- { url = "https://files.pythonhosted.org/packages/ab/cc/da8422b300e13cb187d2203f20b9253e91058aaf7db65b74142013478e66/watchdog-6.0.0-py3-none-manylinux2014_ppc64.whl", hash = "sha256:212ac9b8bf1161dc91bd09c048048a95ca3a4c4f5e5d4a7d1b1a7d5752a7f96f", size = 79077, upload-time = "2024-11-01T14:07:03.893Z" },
- { url = "https://files.pythonhosted.org/packages/2c/3b/b8964e04ae1a025c44ba8e4291f86e97fac443bca31de8bd98d3263d2fcf/watchdog-6.0.0-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:e3df4cbb9a450c6d49318f6d14f4bbc80d763fa587ba46ec86f99f9e6876bb26", size = 79078, upload-time = "2024-11-01T14:07:05.189Z" },
- { url = "https://files.pythonhosted.org/packages/62/ae/a696eb424bedff7407801c257d4b1afda455fe40821a2be430e173660e81/watchdog-6.0.0-py3-none-manylinux2014_s390x.whl", hash = "sha256:2cce7cfc2008eb51feb6aab51251fd79b85d9894e98ba847408f662b3395ca3c", size = 79077, upload-time = "2024-11-01T14:07:06.376Z" },
- { url = "https://files.pythonhosted.org/packages/b5/e8/dbf020b4d98251a9860752a094d09a65e1b436ad181faf929983f697048f/watchdog-6.0.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:20ffe5b202af80ab4266dcd3e91aae72bf2da48c0d33bdb15c66658e685e94e2", size = 79078, upload-time = "2024-11-01T14:07:07.547Z" },
- { url = "https://files.pythonhosted.org/packages/07/f6/d0e5b343768e8bcb4cda79f0f2f55051bf26177ecd5651f84c07567461cf/watchdog-6.0.0-py3-none-win32.whl", hash = "sha256:07df1fdd701c5d4c8e55ef6cf55b8f0120fe1aef7ef39a1c6fc6bc2e606d517a", size = 79065, upload-time = "2024-11-01T14:07:09.525Z" },
- { url = "https://files.pythonhosted.org/packages/db/d9/c495884c6e548fce18a8f40568ff120bc3a4b7b99813081c8ac0c936fa64/watchdog-6.0.0-py3-none-win_amd64.whl", hash = "sha256:cbafb470cf848d93b5d013e2ecb245d4aa1c8fd0504e863ccefa32445359d680", size = 79070, upload-time = "2024-11-01T14:07:10.686Z" },
- { url = "https://files.pythonhosted.org/packages/33/e8/e40370e6d74ddba47f002a32919d91310d6074130fe4e17dabcafc15cbf1/watchdog-6.0.0-py3-none-win_ia64.whl", hash = "sha256:a1914259fa9e1454315171103c6a30961236f508b9b623eae470268bbcc6a22f", size = 79067, upload-time = "2024-11-01T14:07:11.845Z" },
-]
-
-[[package]]
-name = "wrapt"
-version = "1.17.3"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/95/8f/aeb76c5b46e273670962298c23e7ddde79916cb74db802131d49a85e4b7d/wrapt-1.17.3.tar.gz", hash = "sha256:f66eb08feaa410fe4eebd17f2a2c8e2e46d3476e9f8c783daa8e09e0faa666d0", size = 55547, upload-time = "2025-08-12T05:53:21.714Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/52/db/00e2a219213856074a213503fdac0511203dceefff26e1daa15250cc01a0/wrapt-1.17.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:273a736c4645e63ac582c60a56b0acb529ef07f78e08dc6bfadf6a46b19c0da7", size = 53482, upload-time = "2025-08-12T05:51:45.79Z" },
- { url = "https://files.pythonhosted.org/packages/5e/30/ca3c4a5eba478408572096fe9ce36e6e915994dd26a4e9e98b4f729c06d9/wrapt-1.17.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5531d911795e3f935a9c23eb1c8c03c211661a5060aab167065896bbf62a5f85", size = 38674, upload-time = "2025-08-12T05:51:34.629Z" },
- { url = "https://files.pythonhosted.org/packages/31/25/3e8cc2c46b5329c5957cec959cb76a10718e1a513309c31399a4dad07eb3/wrapt-1.17.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0610b46293c59a3adbae3dee552b648b984176f8562ee0dba099a56cfbe4df1f", size = 38959, upload-time = "2025-08-12T05:51:56.074Z" },
- { url = "https://files.pythonhosted.org/packages/5d/8f/a32a99fc03e4b37e31b57cb9cefc65050ea08147a8ce12f288616b05ef54/wrapt-1.17.3-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:b32888aad8b6e68f83a8fdccbf3165f5469702a7544472bdf41f582970ed3311", size = 82376, upload-time = "2025-08-12T05:52:32.134Z" },
- { url = "https://files.pythonhosted.org/packages/31/57/4930cb8d9d70d59c27ee1332a318c20291749b4fba31f113c2f8ac49a72e/wrapt-1.17.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8cccf4f81371f257440c88faed6b74f1053eef90807b77e31ca057b2db74edb1", size = 83604, upload-time = "2025-08-12T05:52:11.663Z" },
- { url = "https://files.pythonhosted.org/packages/a8/f3/1afd48de81d63dd66e01b263a6fbb86e1b5053b419b9b33d13e1f6d0f7d0/wrapt-1.17.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8a210b158a34164de8bb68b0e7780041a903d7b00c87e906fb69928bf7890d5", size = 82782, upload-time = "2025-08-12T05:52:12.626Z" },
- { url = "https://files.pythonhosted.org/packages/1e/d7/4ad5327612173b144998232f98a85bb24b60c352afb73bc48e3e0d2bdc4e/wrapt-1.17.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:79573c24a46ce11aab457b472efd8d125e5a51da2d1d24387666cd85f54c05b2", size = 82076, upload-time = "2025-08-12T05:52:33.168Z" },
- { url = "https://files.pythonhosted.org/packages/bb/59/e0adfc831674a65694f18ea6dc821f9fcb9ec82c2ce7e3d73a88ba2e8718/wrapt-1.17.3-cp311-cp311-win32.whl", hash = "sha256:c31eebe420a9a5d2887b13000b043ff6ca27c452a9a22fa71f35f118e8d4bf89", size = 36457, upload-time = "2025-08-12T05:53:03.936Z" },
- { url = "https://files.pythonhosted.org/packages/83/88/16b7231ba49861b6f75fc309b11012ede4d6b0a9c90969d9e0db8d991aeb/wrapt-1.17.3-cp311-cp311-win_amd64.whl", hash = "sha256:0b1831115c97f0663cb77aa27d381237e73ad4f721391a9bfb2fe8bc25fa6e77", size = 38745, upload-time = "2025-08-12T05:53:02.885Z" },
- { url = "https://files.pythonhosted.org/packages/9a/1e/c4d4f3398ec073012c51d1c8d87f715f56765444e1a4b11e5180577b7e6e/wrapt-1.17.3-cp311-cp311-win_arm64.whl", hash = "sha256:5a7b3c1ee8265eb4c8f1b7d29943f195c00673f5ab60c192eba2d4a7eae5f46a", size = 36806, upload-time = "2025-08-12T05:52:53.368Z" },
- { url = "https://files.pythonhosted.org/packages/9f/41/cad1aba93e752f1f9268c77270da3c469883d56e2798e7df6240dcb2287b/wrapt-1.17.3-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:ab232e7fdb44cdfbf55fc3afa31bcdb0d8980b9b95c38b6405df2acb672af0e0", size = 53998, upload-time = "2025-08-12T05:51:47.138Z" },
- { url = "https://files.pythonhosted.org/packages/60/f8/096a7cc13097a1869fe44efe68dace40d2a16ecb853141394047f0780b96/wrapt-1.17.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:9baa544e6acc91130e926e8c802a17f3b16fbea0fd441b5a60f5cf2cc5c3deba", size = 39020, upload-time = "2025-08-12T05:51:35.906Z" },
- { url = "https://files.pythonhosted.org/packages/33/df/bdf864b8997aab4febb96a9ae5c124f700a5abd9b5e13d2a3214ec4be705/wrapt-1.17.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6b538e31eca1a7ea4605e44f81a48aa24c4632a277431a6ed3f328835901f4fd", size = 39098, upload-time = "2025-08-12T05:51:57.474Z" },
- { url = "https://files.pythonhosted.org/packages/9f/81/5d931d78d0eb732b95dc3ddaeeb71c8bb572fb01356e9133916cd729ecdd/wrapt-1.17.3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:042ec3bb8f319c147b1301f2393bc19dba6e176b7da446853406d041c36c7828", size = 88036, upload-time = "2025-08-12T05:52:34.784Z" },
- { url = "https://files.pythonhosted.org/packages/ca/38/2e1785df03b3d72d34fc6252d91d9d12dc27a5c89caef3335a1bbb8908ca/wrapt-1.17.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3af60380ba0b7b5aeb329bc4e402acd25bd877e98b3727b0135cb5c2efdaefe9", size = 88156, upload-time = "2025-08-12T05:52:13.599Z" },
- { url = "https://files.pythonhosted.org/packages/b3/8b/48cdb60fe0603e34e05cffda0b2a4adab81fd43718e11111a4b0100fd7c1/wrapt-1.17.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:0b02e424deef65c9f7326d8c19220a2c9040c51dc165cddb732f16198c168396", size = 87102, upload-time = "2025-08-12T05:52:14.56Z" },
- { url = "https://files.pythonhosted.org/packages/3c/51/d81abca783b58f40a154f1b2c56db1d2d9e0d04fa2d4224e357529f57a57/wrapt-1.17.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:74afa28374a3c3a11b3b5e5fca0ae03bef8450d6aa3ab3a1e2c30e3a75d023dc", size = 87732, upload-time = "2025-08-12T05:52:36.165Z" },
- { url = "https://files.pythonhosted.org/packages/9e/b1/43b286ca1392a006d5336412d41663eeef1ad57485f3e52c767376ba7e5a/wrapt-1.17.3-cp312-cp312-win32.whl", hash = "sha256:4da9f45279fff3543c371d5ababc57a0384f70be244de7759c85a7f989cb4ebe", size = 36705, upload-time = "2025-08-12T05:53:07.123Z" },
- { url = "https://files.pythonhosted.org/packages/28/de/49493f962bd3c586ab4b88066e967aa2e0703d6ef2c43aa28cb83bf7b507/wrapt-1.17.3-cp312-cp312-win_amd64.whl", hash = "sha256:e71d5c6ebac14875668a1e90baf2ea0ef5b7ac7918355850c0908ae82bcb297c", size = 38877, upload-time = "2025-08-12T05:53:05.436Z" },
- { url = "https://files.pythonhosted.org/packages/f1/48/0f7102fe9cb1e8a5a77f80d4f0956d62d97034bbe88d33e94699f99d181d/wrapt-1.17.3-cp312-cp312-win_arm64.whl", hash = "sha256:604d076c55e2fdd4c1c03d06dc1a31b95130010517b5019db15365ec4a405fc6", size = 36885, upload-time = "2025-08-12T05:52:54.367Z" },
- { url = "https://files.pythonhosted.org/packages/fc/f6/759ece88472157acb55fc195e5b116e06730f1b651b5b314c66291729193/wrapt-1.17.3-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a47681378a0439215912ef542c45a783484d4dd82bac412b71e59cf9c0e1cea0", size = 54003, upload-time = "2025-08-12T05:51:48.627Z" },
- { url = "https://files.pythonhosted.org/packages/4f/a9/49940b9dc6d47027dc850c116d79b4155f15c08547d04db0f07121499347/wrapt-1.17.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:54a30837587c6ee3cd1a4d1c2ec5d24e77984d44e2f34547e2323ddb4e22eb77", size = 39025, upload-time = "2025-08-12T05:51:37.156Z" },
- { url = "https://files.pythonhosted.org/packages/45/35/6a08de0f2c96dcdd7fe464d7420ddb9a7655a6561150e5fc4da9356aeaab/wrapt-1.17.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:16ecf15d6af39246fe33e507105d67e4b81d8f8d2c6598ff7e3ca1b8a37213f7", size = 39108, upload-time = "2025-08-12T05:51:58.425Z" },
- { url = "https://files.pythonhosted.org/packages/0c/37/6faf15cfa41bf1f3dba80cd3f5ccc6622dfccb660ab26ed79f0178c7497f/wrapt-1.17.3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:6fd1ad24dc235e4ab88cda009e19bf347aabb975e44fd5c2fb22a3f6e4141277", size = 88072, upload-time = "2025-08-12T05:52:37.53Z" },
- { url = "https://files.pythonhosted.org/packages/78/f2/efe19ada4a38e4e15b6dff39c3e3f3f73f5decf901f66e6f72fe79623a06/wrapt-1.17.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0ed61b7c2d49cee3c027372df5809a59d60cf1b6c2f81ee980a091f3afed6a2d", size = 88214, upload-time = "2025-08-12T05:52:15.886Z" },
- { url = "https://files.pythonhosted.org/packages/40/90/ca86701e9de1622b16e09689fc24b76f69b06bb0150990f6f4e8b0eeb576/wrapt-1.17.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:423ed5420ad5f5529db9ce89eac09c8a2f97da18eb1c870237e84c5a5c2d60aa", size = 87105, upload-time = "2025-08-12T05:52:17.914Z" },
- { url = "https://files.pythonhosted.org/packages/fd/e0/d10bd257c9a3e15cbf5523025252cc14d77468e8ed644aafb2d6f54cb95d/wrapt-1.17.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e01375f275f010fcbf7f643b4279896d04e571889b8a5b3f848423d91bf07050", size = 87766, upload-time = "2025-08-12T05:52:39.243Z" },
- { url = "https://files.pythonhosted.org/packages/e8/cf/7d848740203c7b4b27eb55dbfede11aca974a51c3d894f6cc4b865f42f58/wrapt-1.17.3-cp313-cp313-win32.whl", hash = "sha256:53e5e39ff71b3fc484df8a522c933ea2b7cdd0d5d15ae82e5b23fde87d44cbd8", size = 36711, upload-time = "2025-08-12T05:53:10.074Z" },
- { url = "https://files.pythonhosted.org/packages/57/54/35a84d0a4d23ea675994104e667ceff49227ce473ba6a59ba2c84f250b74/wrapt-1.17.3-cp313-cp313-win_amd64.whl", hash = "sha256:1f0b2f40cf341ee8cc1a97d51ff50dddb9fcc73241b9143ec74b30fc4f44f6cb", size = 38885, upload-time = "2025-08-12T05:53:08.695Z" },
- { url = "https://files.pythonhosted.org/packages/01/77/66e54407c59d7b02a3c4e0af3783168fff8e5d61def52cda8728439d86bc/wrapt-1.17.3-cp313-cp313-win_arm64.whl", hash = "sha256:7425ac3c54430f5fc5e7b6f41d41e704db073309acfc09305816bc6a0b26bb16", size = 36896, upload-time = "2025-08-12T05:52:55.34Z" },
- { url = "https://files.pythonhosted.org/packages/02/a2/cd864b2a14f20d14f4c496fab97802001560f9f41554eef6df201cd7f76c/wrapt-1.17.3-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:cf30f6e3c077c8e6a9a7809c94551203c8843e74ba0c960f4a98cd80d4665d39", size = 54132, upload-time = "2025-08-12T05:51:49.864Z" },
- { url = "https://files.pythonhosted.org/packages/d5/46/d011725b0c89e853dc44cceb738a307cde5d240d023d6d40a82d1b4e1182/wrapt-1.17.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:e228514a06843cae89621384cfe3a80418f3c04aadf8a3b14e46a7be704e4235", size = 39091, upload-time = "2025-08-12T05:51:38.935Z" },
- { url = "https://files.pythonhosted.org/packages/2e/9e/3ad852d77c35aae7ddebdbc3b6d35ec8013af7d7dddad0ad911f3d891dae/wrapt-1.17.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:5ea5eb3c0c071862997d6f3e02af1d055f381b1d25b286b9d6644b79db77657c", size = 39172, upload-time = "2025-08-12T05:51:59.365Z" },
- { url = "https://files.pythonhosted.org/packages/c3/f7/c983d2762bcce2326c317c26a6a1e7016f7eb039c27cdf5c4e30f4160f31/wrapt-1.17.3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:281262213373b6d5e4bb4353bc36d1ba4084e6d6b5d242863721ef2bf2c2930b", size = 87163, upload-time = "2025-08-12T05:52:40.965Z" },
- { url = "https://files.pythonhosted.org/packages/e4/0f/f673f75d489c7f22d17fe0193e84b41540d962f75fce579cf6873167c29b/wrapt-1.17.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:dc4a8d2b25efb6681ecacad42fca8859f88092d8732b170de6a5dddd80a1c8fa", size = 87963, upload-time = "2025-08-12T05:52:20.326Z" },
- { url = "https://files.pythonhosted.org/packages/df/61/515ad6caca68995da2fac7a6af97faab8f78ebe3bf4f761e1b77efbc47b5/wrapt-1.17.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:373342dd05b1d07d752cecbec0c41817231f29f3a89aa8b8843f7b95992ed0c7", size = 86945, upload-time = "2025-08-12T05:52:21.581Z" },
- { url = "https://files.pythonhosted.org/packages/d3/bd/4e70162ce398462a467bc09e768bee112f1412e563620adc353de9055d33/wrapt-1.17.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:d40770d7c0fd5cbed9d84b2c3f2e156431a12c9a37dc6284060fb4bec0b7ffd4", size = 86857, upload-time = "2025-08-12T05:52:43.043Z" },
- { url = "https://files.pythonhosted.org/packages/2b/b8/da8560695e9284810b8d3df8a19396a6e40e7518059584a1a394a2b35e0a/wrapt-1.17.3-cp314-cp314-win32.whl", hash = "sha256:fbd3c8319de8e1dc79d346929cd71d523622da527cca14e0c1d257e31c2b8b10", size = 37178, upload-time = "2025-08-12T05:53:12.605Z" },
- { url = "https://files.pythonhosted.org/packages/db/c8/b71eeb192c440d67a5a0449aaee2310a1a1e8eca41676046f99ed2487e9f/wrapt-1.17.3-cp314-cp314-win_amd64.whl", hash = "sha256:e1a4120ae5705f673727d3253de3ed0e016f7cd78dc463db1b31e2463e1f3cf6", size = 39310, upload-time = "2025-08-12T05:53:11.106Z" },
- { url = "https://files.pythonhosted.org/packages/45/20/2cda20fd4865fa40f86f6c46ed37a2a8356a7a2fde0773269311f2af56c7/wrapt-1.17.3-cp314-cp314-win_arm64.whl", hash = "sha256:507553480670cab08a800b9463bdb881b2edeed77dc677b0a5915e6106e91a58", size = 37266, upload-time = "2025-08-12T05:52:56.531Z" },
- { url = "https://files.pythonhosted.org/packages/77/ed/dd5cf21aec36c80443c6f900449260b80e2a65cf963668eaef3b9accce36/wrapt-1.17.3-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:ed7c635ae45cfbc1a7371f708727bf74690daedc49b4dba310590ca0bd28aa8a", size = 56544, upload-time = "2025-08-12T05:51:51.109Z" },
- { url = "https://files.pythonhosted.org/packages/8d/96/450c651cc753877ad100c7949ab4d2e2ecc4d97157e00fa8f45df682456a/wrapt-1.17.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:249f88ed15503f6492a71f01442abddd73856a0032ae860de6d75ca62eed8067", size = 40283, upload-time = "2025-08-12T05:51:39.912Z" },
- { url = "https://files.pythonhosted.org/packages/d1/86/2fcad95994d9b572db57632acb6f900695a648c3e063f2cd344b3f5c5a37/wrapt-1.17.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:5a03a38adec8066d5a37bea22f2ba6bbf39fcdefbe2d91419ab864c3fb515454", size = 40366, upload-time = "2025-08-12T05:52:00.693Z" },
- { url = "https://files.pythonhosted.org/packages/64/0e/f4472f2fdde2d4617975144311f8800ef73677a159be7fe61fa50997d6c0/wrapt-1.17.3-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:5d4478d72eb61c36e5b446e375bbc49ed002430d17cdec3cecb36993398e1a9e", size = 108571, upload-time = "2025-08-12T05:52:44.521Z" },
- { url = "https://files.pythonhosted.org/packages/cc/01/9b85a99996b0a97c8a17484684f206cbb6ba73c1ce6890ac668bcf3838fb/wrapt-1.17.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:223db574bb38637e8230eb14b185565023ab624474df94d2af18f1cdb625216f", size = 113094, upload-time = "2025-08-12T05:52:22.618Z" },
- { url = "https://files.pythonhosted.org/packages/25/02/78926c1efddcc7b3aa0bc3d6b33a822f7d898059f7cd9ace8c8318e559ef/wrapt-1.17.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:e405adefb53a435f01efa7ccdec012c016b5a1d3f35459990afc39b6be4d5056", size = 110659, upload-time = "2025-08-12T05:52:24.057Z" },
- { url = "https://files.pythonhosted.org/packages/dc/ee/c414501ad518ac3e6fe184753632fe5e5ecacdcf0effc23f31c1e4f7bfcf/wrapt-1.17.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:88547535b787a6c9ce4086917b6e1d291aa8ed914fdd3a838b3539dc95c12804", size = 106946, upload-time = "2025-08-12T05:52:45.976Z" },
- { url = "https://files.pythonhosted.org/packages/be/44/a1bd64b723d13bb151d6cc91b986146a1952385e0392a78567e12149c7b4/wrapt-1.17.3-cp314-cp314t-win32.whl", hash = "sha256:41b1d2bc74c2cac6f9074df52b2efbef2b30bdfe5f40cb78f8ca22963bc62977", size = 38717, upload-time = "2025-08-12T05:53:15.214Z" },
- { url = "https://files.pythonhosted.org/packages/79/d9/7cfd5a312760ac4dd8bf0184a6ee9e43c33e47f3dadc303032ce012b8fa3/wrapt-1.17.3-cp314-cp314t-win_amd64.whl", hash = "sha256:73d496de46cd2cdbdbcce4ae4bcdb4afb6a11234a1df9c085249d55166b95116", size = 41334, upload-time = "2025-08-12T05:53:14.178Z" },
- { url = "https://files.pythonhosted.org/packages/46/78/10ad9781128ed2f99dbc474f43283b13fea8ba58723e98844367531c18e9/wrapt-1.17.3-cp314-cp314t-win_arm64.whl", hash = "sha256:f38e60678850c42461d4202739f9bf1e3a737c7ad283638251e79cc49effb6b6", size = 38471, upload-time = "2025-08-12T05:52:57.784Z" },
- { url = "https://files.pythonhosted.org/packages/1f/f6/a933bd70f98e9cf3e08167fc5cd7aaaca49147e48411c0bd5ae701bb2194/wrapt-1.17.3-py3-none-any.whl", hash = "sha256:7171ae35d2c33d326ac19dd8facb1e82e5fd04ef8c6c0e394d7af55a55051c22", size = 23591, upload-time = "2025-08-12T05:53:20.674Z" },
-]
-
-[[package]]
-name = "xxhash"
-version = "3.6.0"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/02/84/30869e01909fb37a6cc7e18688ee8bf1e42d57e7e0777636bd47524c43c7/xxhash-3.6.0.tar.gz", hash = "sha256:f0162a78b13a0d7617b2845b90c763339d1f1d82bb04a4b07f4ab535cc5e05d6", size = 85160, upload-time = "2025-10-02T14:37:08.097Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/17/d4/cc2f0400e9154df4b9964249da78ebd72f318e35ccc425e9f403c392f22a/xxhash-3.6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b47bbd8cf2d72797f3c2772eaaac0ded3d3af26481a26d7d7d41dc2d3c46b04a", size = 32844, upload-time = "2025-10-02T14:34:14.037Z" },
- { url = "https://files.pythonhosted.org/packages/5e/ec/1cc11cd13e26ea8bc3cb4af4eaadd8d46d5014aebb67be3f71fb0b68802a/xxhash-3.6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2b6821e94346f96db75abaa6e255706fb06ebd530899ed76d32cd99f20dc52fa", size = 30809, upload-time = "2025-10-02T14:34:15.484Z" },
- { url = "https://files.pythonhosted.org/packages/04/5f/19fe357ea348d98ca22f456f75a30ac0916b51c753e1f8b2e0e6fb884cce/xxhash-3.6.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:d0a9751f71a1a65ce3584e9cae4467651c7e70c9d31017fa57574583a4540248", size = 194665, upload-time = "2025-10-02T14:34:16.541Z" },
- { url = "https://files.pythonhosted.org/packages/90/3b/d1f1a8f5442a5fd8beedae110c5af7604dc37349a8e16519c13c19a9a2de/xxhash-3.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8b29ee68625ab37b04c0b40c3fafdf24d2f75ccd778333cfb698f65f6c463f62", size = 213550, upload-time = "2025-10-02T14:34:17.878Z" },
- { url = "https://files.pythonhosted.org/packages/c4/ef/3a9b05eb527457d5db13a135a2ae1a26c80fecd624d20f3e8dcc4cb170f3/xxhash-3.6.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:6812c25fe0d6c36a46ccb002f40f27ac903bf18af9f6dd8f9669cb4d176ab18f", size = 212384, upload-time = "2025-10-02T14:34:19.182Z" },
- { url = "https://files.pythonhosted.org/packages/0f/18/ccc194ee698c6c623acbf0f8c2969811a8a4b6185af5e824cd27b9e4fd3e/xxhash-3.6.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:4ccbff013972390b51a18ef1255ef5ac125c92dc9143b2d1909f59abc765540e", size = 445749, upload-time = "2025-10-02T14:34:20.659Z" },
- { url = "https://files.pythonhosted.org/packages/a5/86/cf2c0321dc3940a7aa73076f4fd677a0fb3e405cb297ead7d864fd90847e/xxhash-3.6.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:297b7fbf86c82c550e12e8fb71968b3f033d27b874276ba3624ea868c11165a8", size = 193880, upload-time = "2025-10-02T14:34:22.431Z" },
- { url = "https://files.pythonhosted.org/packages/82/fb/96213c8560e6f948a1ecc9a7613f8032b19ee45f747f4fca4eb31bb6d6ed/xxhash-3.6.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:dea26ae1eb293db089798d3973a5fc928a18fdd97cc8801226fae705b02b14b0", size = 210912, upload-time = "2025-10-02T14:34:23.937Z" },
- { url = "https://files.pythonhosted.org/packages/40/aa/4395e669b0606a096d6788f40dbdf2b819d6773aa290c19e6e83cbfc312f/xxhash-3.6.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7a0b169aafb98f4284f73635a8e93f0735f9cbde17bd5ec332480484241aaa77", size = 198654, upload-time = "2025-10-02T14:34:25.644Z" },
- { url = "https://files.pythonhosted.org/packages/67/74/b044fcd6b3d89e9b1b665924d85d3f400636c23590226feb1eb09e1176ce/xxhash-3.6.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:08d45aef063a4531b785cd72de4887766d01dc8f362a515693df349fdb825e0c", size = 210867, upload-time = "2025-10-02T14:34:27.203Z" },
- { url = "https://files.pythonhosted.org/packages/bc/fd/3ce73bf753b08cb19daee1eb14aa0d7fe331f8da9c02dd95316ddfe5275e/xxhash-3.6.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:929142361a48ee07f09121fe9e96a84950e8d4df3bb298ca5d88061969f34d7b", size = 414012, upload-time = "2025-10-02T14:34:28.409Z" },
- { url = "https://files.pythonhosted.org/packages/ba/b3/5a4241309217c5c876f156b10778f3ab3af7ba7e3259e6d5f5c7d0129eb2/xxhash-3.6.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:51312c768403d8540487dbbfb557454cfc55589bbde6424456951f7fcd4facb3", size = 191409, upload-time = "2025-10-02T14:34:29.696Z" },
- { url = "https://files.pythonhosted.org/packages/c0/01/99bfbc15fb9abb9a72b088c1d95219fc4782b7d01fc835bd5744d66dd0b8/xxhash-3.6.0-cp311-cp311-win32.whl", hash = "sha256:d1927a69feddc24c987b337ce81ac15c4720955b667fe9b588e02254b80446fd", size = 30574, upload-time = "2025-10-02T14:34:31.028Z" },
- { url = "https://files.pythonhosted.org/packages/65/79/9d24d7f53819fe301b231044ea362ce64e86c74f6e8c8e51320de248b3e5/xxhash-3.6.0-cp311-cp311-win_amd64.whl", hash = "sha256:26734cdc2d4ffe449b41d186bbeac416f704a482ed835d375a5c0cb02bc63fef", size = 31481, upload-time = "2025-10-02T14:34:32.062Z" },
- { url = "https://files.pythonhosted.org/packages/30/4e/15cd0e3e8772071344eab2961ce83f6e485111fed8beb491a3f1ce100270/xxhash-3.6.0-cp311-cp311-win_arm64.whl", hash = "sha256:d72f67ef8bf36e05f5b6c65e8524f265bd61071471cd4cf1d36743ebeeeb06b7", size = 27861, upload-time = "2025-10-02T14:34:33.555Z" },
- { url = "https://files.pythonhosted.org/packages/9a/07/d9412f3d7d462347e4511181dea65e47e0d0e16e26fbee2ea86a2aefb657/xxhash-3.6.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:01362c4331775398e7bb34e3ab403bc9ee9f7c497bc7dee6272114055277dd3c", size = 32744, upload-time = "2025-10-02T14:34:34.622Z" },
- { url = "https://files.pythonhosted.org/packages/79/35/0429ee11d035fc33abe32dca1b2b69e8c18d236547b9a9b72c1929189b9a/xxhash-3.6.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b7b2df81a23f8cb99656378e72501b2cb41b1827c0f5a86f87d6b06b69f9f204", size = 30816, upload-time = "2025-10-02T14:34:36.043Z" },
- { url = "https://files.pythonhosted.org/packages/b7/f2/57eb99aa0f7d98624c0932c5b9a170e1806406cdbcdb510546634a1359e0/xxhash-3.6.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:dc94790144e66b14f67b10ac8ed75b39ca47536bf8800eb7c24b50271ea0c490", size = 194035, upload-time = "2025-10-02T14:34:37.354Z" },
- { url = "https://files.pythonhosted.org/packages/4c/ed/6224ba353690d73af7a3f1c7cdb1fc1b002e38f783cb991ae338e1eb3d79/xxhash-3.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:93f107c673bccf0d592cdba077dedaf52fe7f42dcd7676eba1f6d6f0c3efffd2", size = 212914, upload-time = "2025-10-02T14:34:38.6Z" },
- { url = "https://files.pythonhosted.org/packages/38/86/fb6b6130d8dd6b8942cc17ab4d90e223653a89aa32ad2776f8af7064ed13/xxhash-3.6.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:2aa5ee3444c25b69813663c9f8067dcfaa2e126dc55e8dddf40f4d1c25d7effa", size = 212163, upload-time = "2025-10-02T14:34:39.872Z" },
- { url = "https://files.pythonhosted.org/packages/ee/dc/e84875682b0593e884ad73b2d40767b5790d417bde603cceb6878901d647/xxhash-3.6.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:f7f99123f0e1194fa59cc69ad46dbae2e07becec5df50a0509a808f90a0f03f0", size = 445411, upload-time = "2025-10-02T14:34:41.569Z" },
- { url = "https://files.pythonhosted.org/packages/11/4f/426f91b96701ec2f37bb2b8cec664eff4f658a11f3fa9d94f0a887ea6d2b/xxhash-3.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:49e03e6fe2cac4a1bc64952dd250cf0dbc5ef4ebb7b8d96bce82e2de163c82a2", size = 193883, upload-time = "2025-10-02T14:34:43.249Z" },
- { url = "https://files.pythonhosted.org/packages/53/5a/ddbb83eee8e28b778eacfc5a85c969673e4023cdeedcfcef61f36731610b/xxhash-3.6.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:bd17fede52a17a4f9a7bc4472a5867cb0b160deeb431795c0e4abe158bc784e9", size = 210392, upload-time = "2025-10-02T14:34:45.042Z" },
- { url = "https://files.pythonhosted.org/packages/1e/c2/ff69efd07c8c074ccdf0a4f36fcdd3d27363665bcdf4ba399abebe643465/xxhash-3.6.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:6fb5f5476bef678f69db04f2bd1efbed3030d2aba305b0fc1773645f187d6a4e", size = 197898, upload-time = "2025-10-02T14:34:46.302Z" },
- { url = "https://files.pythonhosted.org/packages/58/ca/faa05ac19b3b622c7c9317ac3e23954187516298a091eb02c976d0d3dd45/xxhash-3.6.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:843b52f6d88071f87eba1631b684fcb4b2068cd2180a0224122fe4ef011a9374", size = 210655, upload-time = "2025-10-02T14:34:47.571Z" },
- { url = "https://files.pythonhosted.org/packages/d4/7a/06aa7482345480cc0cb597f5c875b11a82c3953f534394f620b0be2f700c/xxhash-3.6.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:7d14a6cfaf03b1b6f5f9790f76880601ccc7896aff7ab9cd8978a939c1eb7e0d", size = 414001, upload-time = "2025-10-02T14:34:49.273Z" },
- { url = "https://files.pythonhosted.org/packages/23/07/63ffb386cd47029aa2916b3d2f454e6cc5b9f5c5ada3790377d5430084e7/xxhash-3.6.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:418daf3db71e1413cfe211c2f9a528456936645c17f46b5204705581a45390ae", size = 191431, upload-time = "2025-10-02T14:34:50.798Z" },
- { url = "https://files.pythonhosted.org/packages/0f/93/14fde614cadb4ddf5e7cebf8918b7e8fac5ae7861c1875964f17e678205c/xxhash-3.6.0-cp312-cp312-win32.whl", hash = "sha256:50fc255f39428a27299c20e280d6193d8b63b8ef8028995323bf834a026b4fbb", size = 30617, upload-time = "2025-10-02T14:34:51.954Z" },
- { url = "https://files.pythonhosted.org/packages/13/5d/0d125536cbe7565a83d06e43783389ecae0c0f2ed037b48ede185de477c0/xxhash-3.6.0-cp312-cp312-win_amd64.whl", hash = "sha256:c0f2ab8c715630565ab8991b536ecded9416d615538be8ecddce43ccf26cbc7c", size = 31534, upload-time = "2025-10-02T14:34:53.276Z" },
- { url = "https://files.pythonhosted.org/packages/54/85/6ec269b0952ec7e36ba019125982cf11d91256a778c7c3f98a4c5043d283/xxhash-3.6.0-cp312-cp312-win_arm64.whl", hash = "sha256:eae5c13f3bc455a3bbb68bdc513912dc7356de7e2280363ea235f71f54064829", size = 27876, upload-time = "2025-10-02T14:34:54.371Z" },
- { url = "https://files.pythonhosted.org/packages/33/76/35d05267ac82f53ae9b0e554da7c5e281ee61f3cad44c743f0fcd354f211/xxhash-3.6.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:599e64ba7f67472481ceb6ee80fa3bd828fd61ba59fb11475572cc5ee52b89ec", size = 32738, upload-time = "2025-10-02T14:34:55.839Z" },
- { url = "https://files.pythonhosted.org/packages/31/a8/3fbce1cd96534a95e35d5120637bf29b0d7f5d8fa2f6374e31b4156dd419/xxhash-3.6.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7d8b8aaa30fca4f16f0c84a5c8d7ddee0e25250ec2796c973775373257dde8f1", size = 30821, upload-time = "2025-10-02T14:34:57.219Z" },
- { url = "https://files.pythonhosted.org/packages/0c/ea/d387530ca7ecfa183cb358027f1833297c6ac6098223fd14f9782cd0015c/xxhash-3.6.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:d597acf8506d6e7101a4a44a5e428977a51c0fadbbfd3c39650cca9253f6e5a6", size = 194127, upload-time = "2025-10-02T14:34:59.21Z" },
- { url = "https://files.pythonhosted.org/packages/ba/0c/71435dcb99874b09a43b8d7c54071e600a7481e42b3e3ce1eb5226a5711a/xxhash-3.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:858dc935963a33bc33490128edc1c12b0c14d9c7ebaa4e387a7869ecc4f3e263", size = 212975, upload-time = "2025-10-02T14:35:00.816Z" },
- { url = "https://files.pythonhosted.org/packages/84/7a/c2b3d071e4bb4a90b7057228a99b10d51744878f4a8a6dd643c8bd897620/xxhash-3.6.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ba284920194615cb8edf73bf52236ce2e1664ccd4a38fdb543506413529cc546", size = 212241, upload-time = "2025-10-02T14:35:02.207Z" },
- { url = "https://files.pythonhosted.org/packages/81/5f/640b6eac0128e215f177df99eadcd0f1b7c42c274ab6a394a05059694c5a/xxhash-3.6.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:4b54219177f6c6674d5378bd862c6aedf64725f70dd29c472eaae154df1a2e89", size = 445471, upload-time = "2025-10-02T14:35:03.61Z" },
- { url = "https://files.pythonhosted.org/packages/5e/1e/3c3d3ef071b051cc3abbe3721ffb8365033a172613c04af2da89d5548a87/xxhash-3.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:42c36dd7dbad2f5238950c377fcbf6811b1cdb1c444fab447960030cea60504d", size = 193936, upload-time = "2025-10-02T14:35:05.013Z" },
- { url = "https://files.pythonhosted.org/packages/2c/bd/4a5f68381939219abfe1c22a9e3a5854a4f6f6f3c4983a87d255f21f2e5d/xxhash-3.6.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f22927652cba98c44639ffdc7aaf35828dccf679b10b31c4ad72a5b530a18eb7", size = 210440, upload-time = "2025-10-02T14:35:06.239Z" },
- { url = "https://files.pythonhosted.org/packages/eb/37/b80fe3d5cfb9faff01a02121a0f4d565eb7237e9e5fc66e73017e74dcd36/xxhash-3.6.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b45fad44d9c5c119e9c6fbf2e1c656a46dc68e280275007bbfd3d572b21426db", size = 197990, upload-time = "2025-10-02T14:35:07.735Z" },
- { url = "https://files.pythonhosted.org/packages/d7/fd/2c0a00c97b9e18f72e1f240ad4e8f8a90fd9d408289ba9c7c495ed7dc05c/xxhash-3.6.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:6f2580ffab1a8b68ef2b901cde7e55fa8da5e4be0977c68f78fc80f3c143de42", size = 210689, upload-time = "2025-10-02T14:35:09.438Z" },
- { url = "https://files.pythonhosted.org/packages/93/86/5dd8076a926b9a95db3206aba20d89a7fc14dd5aac16e5c4de4b56033140/xxhash-3.6.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:40c391dd3cd041ebc3ffe6f2c862f402e306eb571422e0aa918d8070ba31da11", size = 414068, upload-time = "2025-10-02T14:35:11.162Z" },
- { url = "https://files.pythonhosted.org/packages/af/3c/0bb129170ee8f3650f08e993baee550a09593462a5cddd8e44d0011102b1/xxhash-3.6.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f205badabde7aafd1a31e8ca2a3e5a763107a71c397c4481d6a804eb5063d8bd", size = 191495, upload-time = "2025-10-02T14:35:12.971Z" },
- { url = "https://files.pythonhosted.org/packages/e9/3a/6797e0114c21d1725e2577508e24006fd7ff1d8c0c502d3b52e45c1771d8/xxhash-3.6.0-cp313-cp313-win32.whl", hash = "sha256:2577b276e060b73b73a53042ea5bd5203d3e6347ce0d09f98500f418a9fcf799", size = 30620, upload-time = "2025-10-02T14:35:14.129Z" },
- { url = "https://files.pythonhosted.org/packages/86/15/9bc32671e9a38b413a76d24722a2bf8784a132c043063a8f5152d390b0f9/xxhash-3.6.0-cp313-cp313-win_amd64.whl", hash = "sha256:757320d45d2fbcce8f30c42a6b2f47862967aea7bf458b9625b4bbe7ee390392", size = 31542, upload-time = "2025-10-02T14:35:15.21Z" },
- { url = "https://files.pythonhosted.org/packages/39/c5/cc01e4f6188656e56112d6a8e0dfe298a16934b8c47a247236549a3f7695/xxhash-3.6.0-cp313-cp313-win_arm64.whl", hash = "sha256:457b8f85dec5825eed7b69c11ae86834a018b8e3df5e77783c999663da2f96d6", size = 27880, upload-time = "2025-10-02T14:35:16.315Z" },
- { url = "https://files.pythonhosted.org/packages/f3/30/25e5321c8732759e930c555176d37e24ab84365482d257c3b16362235212/xxhash-3.6.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:a42e633d75cdad6d625434e3468126c73f13f7584545a9cf34e883aa1710e702", size = 32956, upload-time = "2025-10-02T14:35:17.413Z" },
- { url = "https://files.pythonhosted.org/packages/9f/3c/0573299560d7d9f8ab1838f1efc021a280b5ae5ae2e849034ef3dee18810/xxhash-3.6.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:568a6d743219e717b07b4e03b0a828ce593833e498c3b64752e0f5df6bfe84db", size = 31072, upload-time = "2025-10-02T14:35:18.844Z" },
- { url = "https://files.pythonhosted.org/packages/7a/1c/52d83a06e417cd9d4137722693424885cc9878249beb3a7c829e74bf7ce9/xxhash-3.6.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:bec91b562d8012dae276af8025a55811b875baace6af510412a5e58e3121bc54", size = 196409, upload-time = "2025-10-02T14:35:20.31Z" },
- { url = "https://files.pythonhosted.org/packages/e3/8e/c6d158d12a79bbd0b878f8355432075fc82759e356ab5a111463422a239b/xxhash-3.6.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:78e7f2f4c521c30ad5e786fdd6bae89d47a32672a80195467b5de0480aa97b1f", size = 215736, upload-time = "2025-10-02T14:35:21.616Z" },
- { url = "https://files.pythonhosted.org/packages/bc/68/c4c80614716345d55071a396cf03d06e34b5f4917a467faf43083c995155/xxhash-3.6.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:3ed0df1b11a79856df5ffcab572cbd6b9627034c1c748c5566fa79df9048a7c5", size = 214833, upload-time = "2025-10-02T14:35:23.32Z" },
- { url = "https://files.pythonhosted.org/packages/7e/e9/ae27c8ffec8b953efa84c7c4a6c6802c263d587b9fc0d6e7cea64e08c3af/xxhash-3.6.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:0e4edbfc7d420925b0dd5e792478ed393d6e75ff8fc219a6546fb446b6a417b1", size = 448348, upload-time = "2025-10-02T14:35:25.111Z" },
- { url = "https://files.pythonhosted.org/packages/d7/6b/33e21afb1b5b3f46b74b6bd1913639066af218d704cc0941404ca717fc57/xxhash-3.6.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fba27a198363a7ef87f8c0f6b171ec36b674fe9053742c58dd7e3201c1ab30ee", size = 196070, upload-time = "2025-10-02T14:35:26.586Z" },
- { url = "https://files.pythonhosted.org/packages/96/b6/fcabd337bc5fa624e7203aa0fa7d0c49eed22f72e93229431752bddc83d9/xxhash-3.6.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:794fe9145fe60191c6532fa95063765529770edcdd67b3d537793e8004cabbfd", size = 212907, upload-time = "2025-10-02T14:35:28.087Z" },
- { url = "https://files.pythonhosted.org/packages/4b/d3/9ee6160e644d660fcf176c5825e61411c7f62648728f69c79ba237250143/xxhash-3.6.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:6105ef7e62b5ac73a837778efc331a591d8442f8ef5c7e102376506cb4ae2729", size = 200839, upload-time = "2025-10-02T14:35:29.857Z" },
- { url = "https://files.pythonhosted.org/packages/0d/98/e8de5baa5109394baf5118f5e72ab21a86387c4f89b0e77ef3e2f6b0327b/xxhash-3.6.0-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:f01375c0e55395b814a679b3eea205db7919ac2af213f4a6682e01220e5fe292", size = 213304, upload-time = "2025-10-02T14:35:31.222Z" },
- { url = "https://files.pythonhosted.org/packages/7b/1d/71056535dec5c3177eeb53e38e3d367dd1d16e024e63b1cee208d572a033/xxhash-3.6.0-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:d706dca2d24d834a4661619dcacf51a75c16d65985718d6a7d73c1eeeb903ddf", size = 416930, upload-time = "2025-10-02T14:35:32.517Z" },
- { url = "https://files.pythonhosted.org/packages/dc/6c/5cbde9de2cd967c322e651c65c543700b19e7ae3e0aae8ece3469bf9683d/xxhash-3.6.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:5f059d9faeacd49c0215d66f4056e1326c80503f51a1532ca336a385edadd033", size = 193787, upload-time = "2025-10-02T14:35:33.827Z" },
- { url = "https://files.pythonhosted.org/packages/19/fa/0172e350361d61febcea941b0cc541d6e6c8d65d153e85f850a7b256ff8a/xxhash-3.6.0-cp313-cp313t-win32.whl", hash = "sha256:1244460adc3a9be84731d72b8e80625788e5815b68da3da8b83f78115a40a7ec", size = 30916, upload-time = "2025-10-02T14:35:35.107Z" },
- { url = "https://files.pythonhosted.org/packages/ad/e6/e8cf858a2b19d6d45820f072eff1bea413910592ff17157cabc5f1227a16/xxhash-3.6.0-cp313-cp313t-win_amd64.whl", hash = "sha256:b1e420ef35c503869c4064f4a2f2b08ad6431ab7b229a05cce39d74268bca6b8", size = 31799, upload-time = "2025-10-02T14:35:36.165Z" },
- { url = "https://files.pythonhosted.org/packages/56/15/064b197e855bfb7b343210e82490ae672f8bc7cdf3ddb02e92f64304ee8a/xxhash-3.6.0-cp313-cp313t-win_arm64.whl", hash = "sha256:ec44b73a4220623235f67a996c862049f375df3b1052d9899f40a6382c32d746", size = 28044, upload-time = "2025-10-02T14:35:37.195Z" },
- { url = "https://files.pythonhosted.org/packages/7e/5e/0138bc4484ea9b897864d59fce9be9086030825bc778b76cb5a33a906d37/xxhash-3.6.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:a40a3d35b204b7cc7643cbcf8c9976d818cb47befcfac8bbefec8038ac363f3e", size = 32754, upload-time = "2025-10-02T14:35:38.245Z" },
- { url = "https://files.pythonhosted.org/packages/18/d7/5dac2eb2ec75fd771957a13e5dda560efb2176d5203f39502a5fc571f899/xxhash-3.6.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:a54844be970d3fc22630b32d515e79a90d0a3ddb2644d8d7402e3c4c8da61405", size = 30846, upload-time = "2025-10-02T14:35:39.6Z" },
- { url = "https://files.pythonhosted.org/packages/fe/71/8bc5be2bb00deb5682e92e8da955ebe5fa982da13a69da5a40a4c8db12fb/xxhash-3.6.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:016e9190af8f0a4e3741343777710e3d5717427f175adfdc3e72508f59e2a7f3", size = 194343, upload-time = "2025-10-02T14:35:40.69Z" },
- { url = "https://files.pythonhosted.org/packages/e7/3b/52badfb2aecec2c377ddf1ae75f55db3ba2d321c5e164f14461c90837ef3/xxhash-3.6.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4f6f72232f849eb9d0141e2ebe2677ece15adfd0fa599bc058aad83c714bb2c6", size = 213074, upload-time = "2025-10-02T14:35:42.29Z" },
- { url = "https://files.pythonhosted.org/packages/a2/2b/ae46b4e9b92e537fa30d03dbc19cdae57ed407e9c26d163895e968e3de85/xxhash-3.6.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:63275a8aba7865e44b1813d2177e0f5ea7eadad3dd063a21f7cf9afdc7054063", size = 212388, upload-time = "2025-10-02T14:35:43.929Z" },
- { url = "https://files.pythonhosted.org/packages/f5/80/49f88d3afc724b4ac7fbd664c8452d6db51b49915be48c6982659e0e7942/xxhash-3.6.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:3cd01fa2aa00d8b017c97eb46b9a794fbdca53fc14f845f5a328c71254b0abb7", size = 445614, upload-time = "2025-10-02T14:35:45.216Z" },
- { url = "https://files.pythonhosted.org/packages/ed/ba/603ce3961e339413543d8cd44f21f2c80e2a7c5cfe692a7b1f2cccf58f3c/xxhash-3.6.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0226aa89035b62b6a86d3c68df4d7c1f47a342b8683da2b60cedcddb46c4d95b", size = 194024, upload-time = "2025-10-02T14:35:46.959Z" },
- { url = "https://files.pythonhosted.org/packages/78/d1/8e225ff7113bf81545cfdcd79eef124a7b7064a0bba53605ff39590b95c2/xxhash-3.6.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:c6e193e9f56e4ca4923c61238cdaced324f0feac782544eb4c6d55ad5cc99ddd", size = 210541, upload-time = "2025-10-02T14:35:48.301Z" },
- { url = "https://files.pythonhosted.org/packages/6f/58/0f89d149f0bad89def1a8dd38feb50ccdeb643d9797ec84707091d4cb494/xxhash-3.6.0-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:9176dcaddf4ca963d4deb93866d739a343c01c969231dbe21680e13a5d1a5bf0", size = 198305, upload-time = "2025-10-02T14:35:49.584Z" },
- { url = "https://files.pythonhosted.org/packages/11/38/5eab81580703c4df93feb5f32ff8fa7fe1e2c51c1f183ee4e48d4bb9d3d7/xxhash-3.6.0-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:c1ce4009c97a752e682b897aa99aef84191077a9433eb237774689f14f8ec152", size = 210848, upload-time = "2025-10-02T14:35:50.877Z" },
- { url = "https://files.pythonhosted.org/packages/5e/6b/953dc4b05c3ce678abca756416e4c130d2382f877a9c30a20d08ee6a77c0/xxhash-3.6.0-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:8cb2f4f679b01513b7adbb9b1b2f0f9cdc31b70007eaf9d59d0878809f385b11", size = 414142, upload-time = "2025-10-02T14:35:52.15Z" },
- { url = "https://files.pythonhosted.org/packages/08/a9/238ec0d4e81a10eb5026d4a6972677cbc898ba6c8b9dbaec12ae001b1b35/xxhash-3.6.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:653a91d7c2ab54a92c19ccf43508b6a555440b9be1bc8be553376778be7f20b5", size = 191547, upload-time = "2025-10-02T14:35:53.547Z" },
- { url = "https://files.pythonhosted.org/packages/f1/ee/3cf8589e06c2164ac77c3bf0aa127012801128f1feebf2a079272da5737c/xxhash-3.6.0-cp314-cp314-win32.whl", hash = "sha256:a756fe893389483ee8c394d06b5ab765d96e68fbbfe6fde7aa17e11f5720559f", size = 31214, upload-time = "2025-10-02T14:35:54.746Z" },
- { url = "https://files.pythonhosted.org/packages/02/5d/a19552fbc6ad4cb54ff953c3908bbc095f4a921bc569433d791f755186f1/xxhash-3.6.0-cp314-cp314-win_amd64.whl", hash = "sha256:39be8e4e142550ef69629c9cd71b88c90e9a5db703fecbcf265546d9536ca4ad", size = 32290, upload-time = "2025-10-02T14:35:55.791Z" },
- { url = "https://files.pythonhosted.org/packages/b1/11/dafa0643bc30442c887b55baf8e73353a344ee89c1901b5a5c54a6c17d39/xxhash-3.6.0-cp314-cp314-win_arm64.whl", hash = "sha256:25915e6000338999236f1eb68a02a32c3275ac338628a7eaa5a269c401995679", size = 28795, upload-time = "2025-10-02T14:35:57.162Z" },
- { url = "https://files.pythonhosted.org/packages/2c/db/0e99732ed7f64182aef4a6fb145e1a295558deec2a746265dcdec12d191e/xxhash-3.6.0-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:c5294f596a9017ca5a3e3f8884c00b91ab2ad2933cf288f4923c3fd4346cf3d4", size = 32955, upload-time = "2025-10-02T14:35:58.267Z" },
- { url = "https://files.pythonhosted.org/packages/55/f4/2a7c3c68e564a099becfa44bb3d398810cc0ff6749b0d3cb8ccb93f23c14/xxhash-3.6.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:1cf9dcc4ab9cff01dfbba78544297a3a01dafd60f3bde4e2bfd016cf7e4ddc67", size = 31072, upload-time = "2025-10-02T14:35:59.382Z" },
- { url = "https://files.pythonhosted.org/packages/c6/d9/72a29cddc7250e8a5819dad5d466facb5dc4c802ce120645630149127e73/xxhash-3.6.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:01262da8798422d0685f7cef03b2bd3f4f46511b02830861df548d7def4402ad", size = 196579, upload-time = "2025-10-02T14:36:00.838Z" },
- { url = "https://files.pythonhosted.org/packages/63/93/b21590e1e381040e2ca305a884d89e1c345b347404f7780f07f2cdd47ef4/xxhash-3.6.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:51a73fb7cb3a3ead9f7a8b583ffd9b8038e277cdb8cb87cf890e88b3456afa0b", size = 215854, upload-time = "2025-10-02T14:36:02.207Z" },
- { url = "https://files.pythonhosted.org/packages/ce/b8/edab8a7d4fa14e924b29be877d54155dcbd8b80be85ea00d2be3413a9ed4/xxhash-3.6.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:b9c6df83594f7df8f7f708ce5ebeacfc69f72c9fbaaababf6cf4758eaada0c9b", size = 214965, upload-time = "2025-10-02T14:36:03.507Z" },
- { url = "https://files.pythonhosted.org/packages/27/67/dfa980ac7f0d509d54ea0d5a486d2bb4b80c3f1bb22b66e6a05d3efaf6c0/xxhash-3.6.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:627f0af069b0ea56f312fd5189001c24578868643203bca1abbc2c52d3a6f3ca", size = 448484, upload-time = "2025-10-02T14:36:04.828Z" },
- { url = "https://files.pythonhosted.org/packages/8c/63/8ffc2cc97e811c0ca5d00ab36604b3ea6f4254f20b7bc658ca825ce6c954/xxhash-3.6.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:aa912c62f842dfd013c5f21a642c9c10cd9f4c4e943e0af83618b4a404d9091a", size = 196162, upload-time = "2025-10-02T14:36:06.182Z" },
- { url = "https://files.pythonhosted.org/packages/4b/77/07f0e7a3edd11a6097e990f6e5b815b6592459cb16dae990d967693e6ea9/xxhash-3.6.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:b465afd7909db30168ab62afe40b2fcf79eedc0b89a6c0ab3123515dc0df8b99", size = 213007, upload-time = "2025-10-02T14:36:07.733Z" },
- { url = "https://files.pythonhosted.org/packages/ae/d8/bc5fa0d152837117eb0bef6f83f956c509332ce133c91c63ce07ee7c4873/xxhash-3.6.0-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:a881851cf38b0a70e7c4d3ce81fc7afd86fbc2a024f4cfb2a97cf49ce04b75d3", size = 200956, upload-time = "2025-10-02T14:36:09.106Z" },
- { url = "https://files.pythonhosted.org/packages/26/a5/d749334130de9411783873e9b98ecc46688dad5db64ca6e04b02acc8b473/xxhash-3.6.0-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:9b3222c686a919a0f3253cfc12bb118b8b103506612253b5baeaac10d8027cf6", size = 213401, upload-time = "2025-10-02T14:36:10.585Z" },
- { url = "https://files.pythonhosted.org/packages/89/72/abed959c956a4bfc72b58c0384bb7940663c678127538634d896b1195c10/xxhash-3.6.0-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:c5aa639bc113e9286137cec8fadc20e9cd732b2cc385c0b7fa673b84fc1f2a93", size = 417083, upload-time = "2025-10-02T14:36:12.276Z" },
- { url = "https://files.pythonhosted.org/packages/0c/b3/62fd2b586283b7d7d665fb98e266decadf31f058f1cf6c478741f68af0cb/xxhash-3.6.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:5c1343d49ac102799905e115aee590183c3921d475356cb24b4de29a4bc56518", size = 193913, upload-time = "2025-10-02T14:36:14.025Z" },
- { url = "https://files.pythonhosted.org/packages/9a/9a/c19c42c5b3f5a4aad748a6d5b4f23df3bed7ee5445accc65a0fb3ff03953/xxhash-3.6.0-cp314-cp314t-win32.whl", hash = "sha256:5851f033c3030dd95c086b4a36a2683c2ff4a799b23af60977188b057e467119", size = 31586, upload-time = "2025-10-02T14:36:15.603Z" },
- { url = "https://files.pythonhosted.org/packages/03/d6/4cc450345be9924fd5dc8c590ceda1db5b43a0a889587b0ae81a95511360/xxhash-3.6.0-cp314-cp314t-win_amd64.whl", hash = "sha256:0444e7967dac37569052d2409b00a8860c2135cff05502df4da80267d384849f", size = 32526, upload-time = "2025-10-02T14:36:16.708Z" },
- { url = "https://files.pythonhosted.org/packages/0f/c9/7243eb3f9eaabd1a88a5a5acadf06df2d83b100c62684b7425c6a11bcaa8/xxhash-3.6.0-cp314-cp314t-win_arm64.whl", hash = "sha256:bb79b1e63f6fd84ec778a4b1916dfe0a7c3fdb986c06addd5db3a0d413819d95", size = 28898, upload-time = "2025-10-02T14:36:17.843Z" },
- { url = "https://files.pythonhosted.org/packages/93/1e/8aec23647a34a249f62e2398c42955acd9b4c6ed5cf08cbea94dc46f78d2/xxhash-3.6.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:0f7b7e2ec26c1666ad5fc9dbfa426a6a3367ceaf79db5dd76264659d509d73b0", size = 30662, upload-time = "2025-10-02T14:37:01.743Z" },
- { url = "https://files.pythonhosted.org/packages/b8/0b/b14510b38ba91caf43006209db846a696ceea6a847a0c9ba0a5b1adc53d6/xxhash-3.6.0-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:5dc1e14d14fa0f5789ec29a7062004b5933964bb9b02aae6622b8f530dc40296", size = 41056, upload-time = "2025-10-02T14:37:02.879Z" },
- { url = "https://files.pythonhosted.org/packages/50/55/15a7b8a56590e66ccd374bbfa3f9ffc45b810886c8c3b614e3f90bd2367c/xxhash-3.6.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:881b47fc47e051b37d94d13e7455131054b56749b91b508b0907eb07900d1c13", size = 36251, upload-time = "2025-10-02T14:37:04.44Z" },
- { url = "https://files.pythonhosted.org/packages/62/b2/5ac99a041a29e58e95f907876b04f7067a0242cb85b5f39e726153981503/xxhash-3.6.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c6dc31591899f5e5666f04cc2e529e69b4072827085c1ef15294d91a004bc1bd", size = 32481, upload-time = "2025-10-02T14:37:05.869Z" },
- { url = "https://files.pythonhosted.org/packages/7b/d9/8d95e906764a386a3d3b596f3c68bb63687dfca806373509f51ce8eea81f/xxhash-3.6.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:15e0dac10eb9309508bfc41f7f9deaa7755c69e35af835db9cb10751adebc35d", size = 31565, upload-time = "2025-10-02T14:37:06.966Z" },
-]
-
-[[package]]
-name = "yarl"
-version = "1.22.0"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "idna" },
- { name = "multidict" },
- { name = "propcache" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/57/63/0c6ebca57330cd313f6102b16dd57ffaf3ec4c83403dcb45dbd15c6f3ea1/yarl-1.22.0.tar.gz", hash = "sha256:bebf8557577d4401ba8bd9ff33906f1376c877aa78d1fe216ad01b4d6745af71", size = 187169, upload-time = "2025-10-06T14:12:55.963Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/4d/27/5ab13fc84c76a0250afd3d26d5936349a35be56ce5785447d6c423b26d92/yarl-1.22.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:1ab72135b1f2db3fed3997d7e7dc1b80573c67138023852b6efb336a5eae6511", size = 141607, upload-time = "2025-10-06T14:09:16.298Z" },
- { url = "https://files.pythonhosted.org/packages/6a/a1/d065d51d02dc02ce81501d476b9ed2229d9a990818332242a882d5d60340/yarl-1.22.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:669930400e375570189492dc8d8341301578e8493aec04aebc20d4717f899dd6", size = 94027, upload-time = "2025-10-06T14:09:17.786Z" },
- { url = "https://files.pythonhosted.org/packages/c1/da/8da9f6a53f67b5106ffe902c6fa0164e10398d4e150d85838b82f424072a/yarl-1.22.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:792a2af6d58177ef7c19cbf0097aba92ca1b9cb3ffdd9c7470e156c8f9b5e028", size = 94963, upload-time = "2025-10-06T14:09:19.662Z" },
- { url = "https://files.pythonhosted.org/packages/68/fe/2c1f674960c376e29cb0bec1249b117d11738db92a6ccc4a530b972648db/yarl-1.22.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3ea66b1c11c9150f1372f69afb6b8116f2dd7286f38e14ea71a44eee9ec51b9d", size = 368406, upload-time = "2025-10-06T14:09:21.402Z" },
- { url = "https://files.pythonhosted.org/packages/95/26/812a540e1c3c6418fec60e9bbd38e871eaba9545e94fa5eff8f4a8e28e1e/yarl-1.22.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:3e2daa88dc91870215961e96a039ec73e4937da13cf77ce17f9cad0c18df3503", size = 336581, upload-time = "2025-10-06T14:09:22.98Z" },
- { url = "https://files.pythonhosted.org/packages/0b/f5/5777b19e26fdf98563985e481f8be3d8a39f8734147a6ebf459d0dab5a6b/yarl-1.22.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ba440ae430c00eee41509353628600212112cd5018d5def7e9b05ea7ac34eb65", size = 388924, upload-time = "2025-10-06T14:09:24.655Z" },
- { url = "https://files.pythonhosted.org/packages/86/08/24bd2477bd59c0bbd994fe1d93b126e0472e4e3df5a96a277b0a55309e89/yarl-1.22.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:e6438cc8f23a9c1478633d216b16104a586b9761db62bfacb6425bac0a36679e", size = 392890, upload-time = "2025-10-06T14:09:26.617Z" },
- { url = "https://files.pythonhosted.org/packages/46/00/71b90ed48e895667ecfb1eaab27c1523ee2fa217433ed77a73b13205ca4b/yarl-1.22.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4c52a6e78aef5cf47a98ef8e934755abf53953379b7d53e68b15ff4420e6683d", size = 365819, upload-time = "2025-10-06T14:09:28.544Z" },
- { url = "https://files.pythonhosted.org/packages/30/2d/f715501cae832651d3282387c6a9236cd26bd00d0ff1e404b3dc52447884/yarl-1.22.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:3b06bcadaac49c70f4c88af4ffcfbe3dc155aab3163e75777818092478bcbbe7", size = 363601, upload-time = "2025-10-06T14:09:30.568Z" },
- { url = "https://files.pythonhosted.org/packages/f8/f9/a678c992d78e394e7126ee0b0e4e71bd2775e4334d00a9278c06a6cce96a/yarl-1.22.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:6944b2dc72c4d7f7052683487e3677456050ff77fcf5e6204e98caf785ad1967", size = 358072, upload-time = "2025-10-06T14:09:32.528Z" },
- { url = "https://files.pythonhosted.org/packages/2c/d1/b49454411a60edb6fefdcad4f8e6dbba7d8019e3a508a1c5836cba6d0781/yarl-1.22.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:d5372ca1df0f91a86b047d1277c2aaf1edb32d78bbcefffc81b40ffd18f027ed", size = 385311, upload-time = "2025-10-06T14:09:34.634Z" },
- { url = "https://files.pythonhosted.org/packages/87/e5/40d7a94debb8448c7771a916d1861d6609dddf7958dc381117e7ba36d9e8/yarl-1.22.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:51af598701f5299012b8416486b40fceef8c26fc87dc6d7d1f6fc30609ea0aa6", size = 381094, upload-time = "2025-10-06T14:09:36.268Z" },
- { url = "https://files.pythonhosted.org/packages/35/d8/611cc282502381ad855448643e1ad0538957fc82ae83dfe7762c14069e14/yarl-1.22.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b266bd01fedeffeeac01a79ae181719ff848a5a13ce10075adbefc8f1daee70e", size = 370944, upload-time = "2025-10-06T14:09:37.872Z" },
- { url = "https://files.pythonhosted.org/packages/2d/df/fadd00fb1c90e1a5a8bd731fa3d3de2e165e5a3666a095b04e31b04d9cb6/yarl-1.22.0-cp311-cp311-win32.whl", hash = "sha256:a9b1ba5610a4e20f655258d5a1fdc7ebe3d837bb0e45b581398b99eb98b1f5ca", size = 81804, upload-time = "2025-10-06T14:09:39.359Z" },
- { url = "https://files.pythonhosted.org/packages/b5/f7/149bb6f45f267cb5c074ac40c01c6b3ea6d8a620d34b337f6321928a1b4d/yarl-1.22.0-cp311-cp311-win_amd64.whl", hash = "sha256:078278b9b0b11568937d9509b589ee83ef98ed6d561dfe2020e24a9fd08eaa2b", size = 86858, upload-time = "2025-10-06T14:09:41.068Z" },
- { url = "https://files.pythonhosted.org/packages/2b/13/88b78b93ad3f2f0b78e13bfaaa24d11cbc746e93fe76d8c06bf139615646/yarl-1.22.0-cp311-cp311-win_arm64.whl", hash = "sha256:b6a6f620cfe13ccec221fa312139135166e47ae169f8253f72a0abc0dae94376", size = 81637, upload-time = "2025-10-06T14:09:42.712Z" },
- { url = "https://files.pythonhosted.org/packages/75/ff/46736024fee3429b80a165a732e38e5d5a238721e634ab41b040d49f8738/yarl-1.22.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:e340382d1afa5d32b892b3ff062436d592ec3d692aeea3bef3a5cfe11bbf8c6f", size = 142000, upload-time = "2025-10-06T14:09:44.631Z" },
- { url = "https://files.pythonhosted.org/packages/5a/9a/b312ed670df903145598914770eb12de1bac44599549b3360acc96878df8/yarl-1.22.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:f1e09112a2c31ffe8d80be1b0988fa6a18c5d5cad92a9ffbb1c04c91bfe52ad2", size = 94338, upload-time = "2025-10-06T14:09:46.372Z" },
- { url = "https://files.pythonhosted.org/packages/ba/f5/0601483296f09c3c65e303d60c070a5c19fcdbc72daa061e96170785bc7d/yarl-1.22.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:939fe60db294c786f6b7c2d2e121576628468f65453d86b0fe36cb52f987bd74", size = 94909, upload-time = "2025-10-06T14:09:48.648Z" },
- { url = "https://files.pythonhosted.org/packages/60/41/9a1fe0b73dbcefce72e46cf149b0e0a67612d60bfc90fb59c2b2efdfbd86/yarl-1.22.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e1651bf8e0398574646744c1885a41198eba53dc8a9312b954073f845c90a8df", size = 372940, upload-time = "2025-10-06T14:09:50.089Z" },
- { url = "https://files.pythonhosted.org/packages/17/7a/795cb6dfee561961c30b800f0ed616b923a2ec6258b5def2a00bf8231334/yarl-1.22.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:b8a0588521a26bf92a57a1705b77b8b59044cdceccac7151bd8d229e66b8dedb", size = 345825, upload-time = "2025-10-06T14:09:52.142Z" },
- { url = "https://files.pythonhosted.org/packages/d7/93/a58f4d596d2be2ae7bab1a5846c4d270b894958845753b2c606d666744d3/yarl-1.22.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:42188e6a615c1a75bcaa6e150c3fe8f3e8680471a6b10150c5f7e83f47cc34d2", size = 386705, upload-time = "2025-10-06T14:09:54.128Z" },
- { url = "https://files.pythonhosted.org/packages/61/92/682279d0e099d0e14d7fd2e176bd04f48de1484f56546a3e1313cd6c8e7c/yarl-1.22.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:f6d2cb59377d99718913ad9a151030d6f83ef420a2b8f521d94609ecc106ee82", size = 396518, upload-time = "2025-10-06T14:09:55.762Z" },
- { url = "https://files.pythonhosted.org/packages/db/0f/0d52c98b8a885aeda831224b78f3be7ec2e1aa4a62091f9f9188c3c65b56/yarl-1.22.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:50678a3b71c751d58d7908edc96d332af328839eea883bb554a43f539101277a", size = 377267, upload-time = "2025-10-06T14:09:57.958Z" },
- { url = "https://files.pythonhosted.org/packages/22/42/d2685e35908cbeaa6532c1fc73e89e7f2efb5d8a7df3959ea8e37177c5a3/yarl-1.22.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1e8fbaa7cec507aa24ea27a01456e8dd4b6fab829059b69844bd348f2d467124", size = 365797, upload-time = "2025-10-06T14:09:59.527Z" },
- { url = "https://files.pythonhosted.org/packages/a2/83/cf8c7bcc6355631762f7d8bdab920ad09b82efa6b722999dfb05afa6cfac/yarl-1.22.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:433885ab5431bc3d3d4f2f9bd15bfa1614c522b0f1405d62c4f926ccd69d04fa", size = 365535, upload-time = "2025-10-06T14:10:01.139Z" },
- { url = "https://files.pythonhosted.org/packages/25/e1/5302ff9b28f0c59cac913b91fe3f16c59a033887e57ce9ca5d41a3a94737/yarl-1.22.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:b790b39c7e9a4192dc2e201a282109ed2985a1ddbd5ac08dc56d0e121400a8f7", size = 382324, upload-time = "2025-10-06T14:10:02.756Z" },
- { url = "https://files.pythonhosted.org/packages/bf/cd/4617eb60f032f19ae3a688dc990d8f0d89ee0ea378b61cac81ede3e52fae/yarl-1.22.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:31f0b53913220599446872d757257be5898019c85e7971599065bc55065dc99d", size = 383803, upload-time = "2025-10-06T14:10:04.552Z" },
- { url = "https://files.pythonhosted.org/packages/59/65/afc6e62bb506a319ea67b694551dab4a7e6fb7bf604e9bd9f3e11d575fec/yarl-1.22.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:a49370e8f711daec68d09b821a34e1167792ee2d24d405cbc2387be4f158b520", size = 374220, upload-time = "2025-10-06T14:10:06.489Z" },
- { url = "https://files.pythonhosted.org/packages/e7/3d/68bf18d50dc674b942daec86a9ba922d3113d8399b0e52b9897530442da2/yarl-1.22.0-cp312-cp312-win32.whl", hash = "sha256:70dfd4f241c04bd9239d53b17f11e6ab672b9f1420364af63e8531198e3f5fe8", size = 81589, upload-time = "2025-10-06T14:10:09.254Z" },
- { url = "https://files.pythonhosted.org/packages/c8/9a/6ad1a9b37c2f72874f93e691b2e7ecb6137fb2b899983125db4204e47575/yarl-1.22.0-cp312-cp312-win_amd64.whl", hash = "sha256:8884d8b332a5e9b88e23f60bb166890009429391864c685e17bd73a9eda9105c", size = 87213, upload-time = "2025-10-06T14:10:11.369Z" },
- { url = "https://files.pythonhosted.org/packages/44/c5/c21b562d1680a77634d748e30c653c3ca918beb35555cff24986fff54598/yarl-1.22.0-cp312-cp312-win_arm64.whl", hash = "sha256:ea70f61a47f3cc93bdf8b2f368ed359ef02a01ca6393916bc8ff877427181e74", size = 81330, upload-time = "2025-10-06T14:10:13.112Z" },
- { url = "https://files.pythonhosted.org/packages/ea/f3/d67de7260456ee105dc1d162d43a019ecad6b91e2f51809d6cddaa56690e/yarl-1.22.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8dee9c25c74997f6a750cd317b8ca63545169c098faee42c84aa5e506c819b53", size = 139980, upload-time = "2025-10-06T14:10:14.601Z" },
- { url = "https://files.pythonhosted.org/packages/01/88/04d98af0b47e0ef42597b9b28863b9060bb515524da0a65d5f4db160b2d5/yarl-1.22.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:01e73b85a5434f89fc4fe27dcda2aff08ddf35e4d47bbbea3bdcd25321af538a", size = 93424, upload-time = "2025-10-06T14:10:16.115Z" },
- { url = "https://files.pythonhosted.org/packages/18/91/3274b215fd8442a03975ce6bee5fe6aa57a8326b29b9d3d56234a1dca244/yarl-1.22.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:22965c2af250d20c873cdbee8ff958fb809940aeb2e74ba5f20aaf6b7ac8c70c", size = 93821, upload-time = "2025-10-06T14:10:17.993Z" },
- { url = "https://files.pythonhosted.org/packages/61/3a/caf4e25036db0f2da4ca22a353dfeb3c9d3c95d2761ebe9b14df8fc16eb0/yarl-1.22.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b4f15793aa49793ec8d1c708ab7f9eded1aa72edc5174cae703651555ed1b601", size = 373243, upload-time = "2025-10-06T14:10:19.44Z" },
- { url = "https://files.pythonhosted.org/packages/6e/9e/51a77ac7516e8e7803b06e01f74e78649c24ee1021eca3d6a739cb6ea49c/yarl-1.22.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:e5542339dcf2747135c5c85f68680353d5cb9ffd741c0f2e8d832d054d41f35a", size = 342361, upload-time = "2025-10-06T14:10:21.124Z" },
- { url = "https://files.pythonhosted.org/packages/d4/f8/33b92454789dde8407f156c00303e9a891f1f51a0330b0fad7c909f87692/yarl-1.22.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:5c401e05ad47a75869c3ab3e35137f8468b846770587e70d71e11de797d113df", size = 387036, upload-time = "2025-10-06T14:10:22.902Z" },
- { url = "https://files.pythonhosted.org/packages/d9/9a/c5db84ea024f76838220280f732970aa4ee154015d7f5c1bfb60a267af6f/yarl-1.22.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:243dda95d901c733f5b59214d28b0120893d91777cb8aa043e6ef059d3cddfe2", size = 397671, upload-time = "2025-10-06T14:10:24.523Z" },
- { url = "https://files.pythonhosted.org/packages/11/c9/cd8538dc2e7727095e0c1d867bad1e40c98f37763e6d995c1939f5fdc7b1/yarl-1.22.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bec03d0d388060058f5d291a813f21c011041938a441c593374da6077fe21b1b", size = 377059, upload-time = "2025-10-06T14:10:26.406Z" },
- { url = "https://files.pythonhosted.org/packages/a1/b9/ab437b261702ced75122ed78a876a6dec0a1b0f5e17a4ac7a9a2482d8abe/yarl-1.22.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:b0748275abb8c1e1e09301ee3cf90c8a99678a4e92e4373705f2a2570d581273", size = 365356, upload-time = "2025-10-06T14:10:28.461Z" },
- { url = "https://files.pythonhosted.org/packages/b2/9d/8e1ae6d1d008a9567877b08f0ce4077a29974c04c062dabdb923ed98e6fe/yarl-1.22.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:47fdb18187e2a4e18fda2c25c05d8251a9e4a521edaed757fef033e7d8498d9a", size = 361331, upload-time = "2025-10-06T14:10:30.541Z" },
- { url = "https://files.pythonhosted.org/packages/ca/5a/09b7be3905962f145b73beb468cdd53db8aa171cf18c80400a54c5b82846/yarl-1.22.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:c7044802eec4524fde550afc28edda0dd5784c4c45f0be151a2d3ba017daca7d", size = 382590, upload-time = "2025-10-06T14:10:33.352Z" },
- { url = "https://files.pythonhosted.org/packages/aa/7f/59ec509abf90eda5048b0bc3e2d7b5099dffdb3e6b127019895ab9d5ef44/yarl-1.22.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:139718f35149ff544caba20fce6e8a2f71f1e39b92c700d8438a0b1d2a631a02", size = 385316, upload-time = "2025-10-06T14:10:35.034Z" },
- { url = "https://files.pythonhosted.org/packages/e5/84/891158426bc8036bfdfd862fabd0e0fa25df4176ec793e447f4b85cf1be4/yarl-1.22.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e1b51bebd221006d3d2f95fbe124b22b247136647ae5dcc8c7acafba66e5ee67", size = 374431, upload-time = "2025-10-06T14:10:37.76Z" },
- { url = "https://files.pythonhosted.org/packages/bb/49/03da1580665baa8bef5e8ed34c6df2c2aca0a2f28bf397ed238cc1bbc6f2/yarl-1.22.0-cp313-cp313-win32.whl", hash = "sha256:d3e32536234a95f513bd374e93d717cf6b2231a791758de6c509e3653f234c95", size = 81555, upload-time = "2025-10-06T14:10:39.649Z" },
- { url = "https://files.pythonhosted.org/packages/9a/ee/450914ae11b419eadd067c6183ae08381cfdfcb9798b90b2b713bbebddda/yarl-1.22.0-cp313-cp313-win_amd64.whl", hash = "sha256:47743b82b76d89a1d20b83e60d5c20314cbd5ba2befc9cda8f28300c4a08ed4d", size = 86965, upload-time = "2025-10-06T14:10:41.313Z" },
- { url = "https://files.pythonhosted.org/packages/98/4d/264a01eae03b6cf629ad69bae94e3b0e5344741e929073678e84bf7a3e3b/yarl-1.22.0-cp313-cp313-win_arm64.whl", hash = "sha256:5d0fcda9608875f7d052eff120c7a5da474a6796fe4d83e152e0e4d42f6d1a9b", size = 81205, upload-time = "2025-10-06T14:10:43.167Z" },
- { url = "https://files.pythonhosted.org/packages/88/fc/6908f062a2f77b5f9f6d69cecb1747260831ff206adcbc5b510aff88df91/yarl-1.22.0-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:719ae08b6972befcba4310e49edb1161a88cdd331e3a694b84466bd938a6ab10", size = 146209, upload-time = "2025-10-06T14:10:44.643Z" },
- { url = "https://files.pythonhosted.org/packages/65/47/76594ae8eab26210b4867be6f49129861ad33da1f1ebdf7051e98492bf62/yarl-1.22.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:47d8a5c446df1c4db9d21b49619ffdba90e77c89ec6e283f453856c74b50b9e3", size = 95966, upload-time = "2025-10-06T14:10:46.554Z" },
- { url = "https://files.pythonhosted.org/packages/ab/ce/05e9828a49271ba6b5b038b15b3934e996980dd78abdfeb52a04cfb9467e/yarl-1.22.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:cfebc0ac8333520d2d0423cbbe43ae43c8838862ddb898f5ca68565e395516e9", size = 97312, upload-time = "2025-10-06T14:10:48.007Z" },
- { url = "https://files.pythonhosted.org/packages/d1/c5/7dffad5e4f2265b29c9d7ec869c369e4223166e4f9206fc2243ee9eea727/yarl-1.22.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4398557cbf484207df000309235979c79c4356518fd5c99158c7d38203c4da4f", size = 361967, upload-time = "2025-10-06T14:10:49.997Z" },
- { url = "https://files.pythonhosted.org/packages/50/b2/375b933c93a54bff7fc041e1a6ad2c0f6f733ffb0c6e642ce56ee3b39970/yarl-1.22.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:2ca6fd72a8cd803be290d42f2dec5cdcd5299eeb93c2d929bf060ad9efaf5de0", size = 323949, upload-time = "2025-10-06T14:10:52.004Z" },
- { url = "https://files.pythonhosted.org/packages/66/50/bfc2a29a1d78644c5a7220ce2f304f38248dc94124a326794e677634b6cf/yarl-1.22.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ca1f59c4e1ab6e72f0a23c13fca5430f889634166be85dbf1013683e49e3278e", size = 361818, upload-time = "2025-10-06T14:10:54.078Z" },
- { url = "https://files.pythonhosted.org/packages/46/96/f3941a46af7d5d0f0498f86d71275696800ddcdd20426298e572b19b91ff/yarl-1.22.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:6c5010a52015e7c70f86eb967db0f37f3c8bd503a695a49f8d45700144667708", size = 372626, upload-time = "2025-10-06T14:10:55.767Z" },
- { url = "https://files.pythonhosted.org/packages/c1/42/8b27c83bb875cd89448e42cd627e0fb971fa1675c9ec546393d18826cb50/yarl-1.22.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9d7672ecf7557476642c88497c2f8d8542f8e36596e928e9bcba0e42e1e7d71f", size = 341129, upload-time = "2025-10-06T14:10:57.985Z" },
- { url = "https://files.pythonhosted.org/packages/49/36/99ca3122201b382a3cf7cc937b95235b0ac944f7e9f2d5331d50821ed352/yarl-1.22.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:3b7c88eeef021579d600e50363e0b6ee4f7f6f728cd3486b9d0f3ee7b946398d", size = 346776, upload-time = "2025-10-06T14:10:59.633Z" },
- { url = "https://files.pythonhosted.org/packages/85/b4/47328bf996acd01a4c16ef9dcd2f59c969f495073616586f78cd5f2efb99/yarl-1.22.0-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:f4afb5c34f2c6fecdcc182dfcfc6af6cccf1aa923eed4d6a12e9d96904e1a0d8", size = 334879, upload-time = "2025-10-06T14:11:01.454Z" },
- { url = "https://files.pythonhosted.org/packages/c2/ad/b77d7b3f14a4283bffb8e92c6026496f6de49751c2f97d4352242bba3990/yarl-1.22.0-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:59c189e3e99a59cf8d83cbb31d4db02d66cda5a1a4374e8a012b51255341abf5", size = 350996, upload-time = "2025-10-06T14:11:03.452Z" },
- { url = "https://files.pythonhosted.org/packages/81/c8/06e1d69295792ba54d556f06686cbd6a7ce39c22307100e3fb4a2c0b0a1d/yarl-1.22.0-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:5a3bf7f62a289fa90f1990422dc8dff5a458469ea71d1624585ec3a4c8d6960f", size = 356047, upload-time = "2025-10-06T14:11:05.115Z" },
- { url = "https://files.pythonhosted.org/packages/4b/b8/4c0e9e9f597074b208d18cef227d83aac36184bfbc6eab204ea55783dbc5/yarl-1.22.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:de6b9a04c606978fdfe72666fa216ffcf2d1a9f6a381058d4378f8d7b1e5de62", size = 342947, upload-time = "2025-10-06T14:11:08.137Z" },
- { url = "https://files.pythonhosted.org/packages/e0/e5/11f140a58bf4c6ad7aca69a892bff0ee638c31bea4206748fc0df4ebcb3a/yarl-1.22.0-cp313-cp313t-win32.whl", hash = "sha256:1834bb90991cc2999f10f97f5f01317f99b143284766d197e43cd5b45eb18d03", size = 86943, upload-time = "2025-10-06T14:11:10.284Z" },
- { url = "https://files.pythonhosted.org/packages/31/74/8b74bae38ed7fe6793d0c15a0c8207bbb819cf287788459e5ed230996cdd/yarl-1.22.0-cp313-cp313t-win_amd64.whl", hash = "sha256:ff86011bd159a9d2dfc89c34cfd8aff12875980e3bd6a39ff097887520e60249", size = 93715, upload-time = "2025-10-06T14:11:11.739Z" },
- { url = "https://files.pythonhosted.org/packages/69/66/991858aa4b5892d57aef7ee1ba6b4d01ec3b7eb3060795d34090a3ca3278/yarl-1.22.0-cp313-cp313t-win_arm64.whl", hash = "sha256:7861058d0582b847bc4e3a4a4c46828a410bca738673f35a29ba3ca5db0b473b", size = 83857, upload-time = "2025-10-06T14:11:13.586Z" },
- { url = "https://files.pythonhosted.org/packages/46/b3/e20ef504049f1a1c54a814b4b9bed96d1ac0e0610c3b4da178f87209db05/yarl-1.22.0-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:34b36c2c57124530884d89d50ed2c1478697ad7473efd59cfd479945c95650e4", size = 140520, upload-time = "2025-10-06T14:11:15.465Z" },
- { url = "https://files.pythonhosted.org/packages/e4/04/3532d990fdbab02e5ede063676b5c4260e7f3abea2151099c2aa745acc4c/yarl-1.22.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:0dd9a702591ca2e543631c2a017e4a547e38a5c0f29eece37d9097e04a7ac683", size = 93504, upload-time = "2025-10-06T14:11:17.106Z" },
- { url = "https://files.pythonhosted.org/packages/11/63/ff458113c5c2dac9a9719ac68ee7c947cb621432bcf28c9972b1c0e83938/yarl-1.22.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:594fcab1032e2d2cc3321bb2e51271e7cd2b516c7d9aee780ece81b07ff8244b", size = 94282, upload-time = "2025-10-06T14:11:19.064Z" },
- { url = "https://files.pythonhosted.org/packages/a7/bc/315a56aca762d44a6aaaf7ad253f04d996cb6b27bad34410f82d76ea8038/yarl-1.22.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f3d7a87a78d46a2e3d5b72587ac14b4c16952dd0887dbb051451eceac774411e", size = 372080, upload-time = "2025-10-06T14:11:20.996Z" },
- { url = "https://files.pythonhosted.org/packages/3f/3f/08e9b826ec2e099ea6e7c69a61272f4f6da62cb5b1b63590bb80ca2e4a40/yarl-1.22.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:852863707010316c973162e703bddabec35e8757e67fcb8ad58829de1ebc8590", size = 338696, upload-time = "2025-10-06T14:11:22.847Z" },
- { url = "https://files.pythonhosted.org/packages/e3/9f/90360108e3b32bd76789088e99538febfea24a102380ae73827f62073543/yarl-1.22.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:131a085a53bfe839a477c0845acf21efc77457ba2bcf5899618136d64f3303a2", size = 387121, upload-time = "2025-10-06T14:11:24.889Z" },
- { url = "https://files.pythonhosted.org/packages/98/92/ab8d4657bd5b46a38094cfaea498f18bb70ce6b63508fd7e909bd1f93066/yarl-1.22.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:078a8aefd263f4d4f923a9677b942b445a2be970ca24548a8102689a3a8ab8da", size = 394080, upload-time = "2025-10-06T14:11:27.307Z" },
- { url = "https://files.pythonhosted.org/packages/f5/e7/d8c5a7752fef68205296201f8ec2bf718f5c805a7a7e9880576c67600658/yarl-1.22.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bca03b91c323036913993ff5c738d0842fc9c60c4648e5c8d98331526df89784", size = 372661, upload-time = "2025-10-06T14:11:29.387Z" },
- { url = "https://files.pythonhosted.org/packages/b6/2e/f4d26183c8db0bb82d491b072f3127fb8c381a6206a3a56332714b79b751/yarl-1.22.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:68986a61557d37bb90d3051a45b91fa3d5c516d177dfc6dd6f2f436a07ff2b6b", size = 364645, upload-time = "2025-10-06T14:11:31.423Z" },
- { url = "https://files.pythonhosted.org/packages/80/7c/428e5812e6b87cd00ee8e898328a62c95825bf37c7fa87f0b6bb2ad31304/yarl-1.22.0-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:4792b262d585ff0dff6bcb787f8492e40698443ec982a3568c2096433660c694", size = 355361, upload-time = "2025-10-06T14:11:33.055Z" },
- { url = "https://files.pythonhosted.org/packages/ec/2a/249405fd26776f8b13c067378ef4d7dd49c9098d1b6457cdd152a99e96a9/yarl-1.22.0-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:ebd4549b108d732dba1d4ace67614b9545b21ece30937a63a65dd34efa19732d", size = 381451, upload-time = "2025-10-06T14:11:35.136Z" },
- { url = "https://files.pythonhosted.org/packages/67/a8/fb6b1adbe98cf1e2dd9fad71003d3a63a1bc22459c6e15f5714eb9323b93/yarl-1.22.0-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:f87ac53513d22240c7d59203f25cc3beac1e574c6cd681bbfd321987b69f95fd", size = 383814, upload-time = "2025-10-06T14:11:37.094Z" },
- { url = "https://files.pythonhosted.org/packages/d9/f9/3aa2c0e480fb73e872ae2814c43bc1e734740bb0d54e8cb2a95925f98131/yarl-1.22.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:22b029f2881599e2f1b06f8f1db2ee63bd309e2293ba2d566e008ba12778b8da", size = 370799, upload-time = "2025-10-06T14:11:38.83Z" },
- { url = "https://files.pythonhosted.org/packages/50/3c/af9dba3b8b5eeb302f36f16f92791f3ea62e3f47763406abf6d5a4a3333b/yarl-1.22.0-cp314-cp314-win32.whl", hash = "sha256:6a635ea45ba4ea8238463b4f7d0e721bad669f80878b7bfd1f89266e2ae63da2", size = 82990, upload-time = "2025-10-06T14:11:40.624Z" },
- { url = "https://files.pythonhosted.org/packages/ac/30/ac3a0c5bdc1d6efd1b41fa24d4897a4329b3b1e98de9449679dd327af4f0/yarl-1.22.0-cp314-cp314-win_amd64.whl", hash = "sha256:0d6e6885777af0f110b0e5d7e5dda8b704efed3894da26220b7f3d887b839a79", size = 88292, upload-time = "2025-10-06T14:11:42.578Z" },
- { url = "https://files.pythonhosted.org/packages/df/0a/227ab4ff5b998a1b7410abc7b46c9b7a26b0ca9e86c34ba4b8d8bc7c63d5/yarl-1.22.0-cp314-cp314-win_arm64.whl", hash = "sha256:8218f4e98d3c10d683584cb40f0424f4b9fd6e95610232dd75e13743b070ee33", size = 82888, upload-time = "2025-10-06T14:11:44.863Z" },
- { url = "https://files.pythonhosted.org/packages/06/5e/a15eb13db90abd87dfbefb9760c0f3f257ac42a5cac7e75dbc23bed97a9f/yarl-1.22.0-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:45c2842ff0e0d1b35a6bf1cd6c690939dacb617a70827f715232b2e0494d55d1", size = 146223, upload-time = "2025-10-06T14:11:46.796Z" },
- { url = "https://files.pythonhosted.org/packages/18/82/9665c61910d4d84f41a5bf6837597c89e665fa88aa4941080704645932a9/yarl-1.22.0-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:d947071e6ebcf2e2bee8fce76e10faca8f7a14808ca36a910263acaacef08eca", size = 95981, upload-time = "2025-10-06T14:11:48.845Z" },
- { url = "https://files.pythonhosted.org/packages/5d/9a/2f65743589809af4d0a6d3aa749343c4b5f4c380cc24a8e94a3c6625a808/yarl-1.22.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:334b8721303e61b00019474cc103bdac3d7b1f65e91f0bfedeec2d56dfe74b53", size = 97303, upload-time = "2025-10-06T14:11:50.897Z" },
- { url = "https://files.pythonhosted.org/packages/b0/ab/5b13d3e157505c43c3b43b5a776cbf7b24a02bc4cccc40314771197e3508/yarl-1.22.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1e7ce67c34138a058fd092f67d07a72b8e31ff0c9236e751957465a24b28910c", size = 361820, upload-time = "2025-10-06T14:11:52.549Z" },
- { url = "https://files.pythonhosted.org/packages/fb/76/242a5ef4677615cf95330cfc1b4610e78184400699bdda0acb897ef5e49a/yarl-1.22.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:d77e1b2c6d04711478cb1c4ab90db07f1609ccf06a287d5607fcd90dc9863acf", size = 323203, upload-time = "2025-10-06T14:11:54.225Z" },
- { url = "https://files.pythonhosted.org/packages/8c/96/475509110d3f0153b43d06164cf4195c64d16999e0c7e2d8a099adcd6907/yarl-1.22.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c4647674b6150d2cae088fc07de2738a84b8bcedebef29802cf0b0a82ab6face", size = 363173, upload-time = "2025-10-06T14:11:56.069Z" },
- { url = "https://files.pythonhosted.org/packages/c9/66/59db471aecfbd559a1fd48aedd954435558cd98c7d0da8b03cc6c140a32c/yarl-1.22.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:efb07073be061c8f79d03d04139a80ba33cbd390ca8f0297aae9cce6411e4c6b", size = 373562, upload-time = "2025-10-06T14:11:58.783Z" },
- { url = "https://files.pythonhosted.org/packages/03/1f/c5d94abc91557384719da10ff166b916107c1b45e4d0423a88457071dd88/yarl-1.22.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e51ac5435758ba97ad69617e13233da53908beccc6cfcd6c34bbed8dcbede486", size = 339828, upload-time = "2025-10-06T14:12:00.686Z" },
- { url = "https://files.pythonhosted.org/packages/5f/97/aa6a143d3afba17b6465733681c70cf175af89f76ec8d9286e08437a7454/yarl-1.22.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:33e32a0dd0c8205efa8e83d04fc9f19313772b78522d1bdc7d9aed706bfd6138", size = 347551, upload-time = "2025-10-06T14:12:02.628Z" },
- { url = "https://files.pythonhosted.org/packages/43/3c/45a2b6d80195959239a7b2a8810506d4eea5487dce61c2a3393e7fc3c52e/yarl-1.22.0-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:bf4a21e58b9cde0e401e683ebd00f6ed30a06d14e93f7c8fd059f8b6e8f87b6a", size = 334512, upload-time = "2025-10-06T14:12:04.871Z" },
- { url = "https://files.pythonhosted.org/packages/86/a0/c2ab48d74599c7c84cb104ebd799c5813de252bea0f360ffc29d270c2caa/yarl-1.22.0-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:e4b582bab49ac33c8deb97e058cd67c2c50dac0dd134874106d9c774fd272529", size = 352400, upload-time = "2025-10-06T14:12:06.624Z" },
- { url = "https://files.pythonhosted.org/packages/32/75/f8919b2eafc929567d3d8411f72bdb1a2109c01caaab4ebfa5f8ffadc15b/yarl-1.22.0-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:0b5bcc1a9c4839e7e30b7b30dd47fe5e7e44fb7054ec29b5bb8d526aa1041093", size = 357140, upload-time = "2025-10-06T14:12:08.362Z" },
- { url = "https://files.pythonhosted.org/packages/cf/72/6a85bba382f22cf78add705d8c3731748397d986e197e53ecc7835e76de7/yarl-1.22.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:c0232bce2170103ec23c454e54a57008a9a72b5d1c3105dc2496750da8cfa47c", size = 341473, upload-time = "2025-10-06T14:12:10.994Z" },
- { url = "https://files.pythonhosted.org/packages/35/18/55e6011f7c044dc80b98893060773cefcfdbf60dfefb8cb2f58b9bacbd83/yarl-1.22.0-cp314-cp314t-win32.whl", hash = "sha256:8009b3173bcd637be650922ac455946197d858b3630b6d8787aa9e5c4564533e", size = 89056, upload-time = "2025-10-06T14:12:13.317Z" },
- { url = "https://files.pythonhosted.org/packages/f9/86/0f0dccb6e59a9e7f122c5afd43568b1d31b8ab7dda5f1b01fb5c7025c9a9/yarl-1.22.0-cp314-cp314t-win_amd64.whl", hash = "sha256:9fb17ea16e972c63d25d4a97f016d235c78dd2344820eb35bc034bc32012ee27", size = 96292, upload-time = "2025-10-06T14:12:15.398Z" },
- { url = "https://files.pythonhosted.org/packages/48/b7/503c98092fb3b344a179579f55814b613c1fbb1c23b3ec14a7b008a66a6e/yarl-1.22.0-cp314-cp314t-win_arm64.whl", hash = "sha256:9f6d73c1436b934e3f01df1e1b21ff765cd1d28c77dfb9ace207f746d4610ee1", size = 85171, upload-time = "2025-10-06T14:12:16.935Z" },
- { url = "https://files.pythonhosted.org/packages/73/ae/b48f95715333080afb75a4504487cbe142cae1268afc482d06692d605ae6/yarl-1.22.0-py3-none-any.whl", hash = "sha256:1380560bdba02b6b6c90de54133c81c9f2a453dee9912fe58c1dcced1edb7cff", size = 46814, upload-time = "2025-10-06T14:12:53.872Z" },
-]