Skip to content

Commit 8f17615

Browse files
add: fix for ag 1.5
1 parent 03ee8f5 commit 8f17615

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

tabarena/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ requires-python = ">=3.10"
1515
# uv pip install --prerelease=allow .
1616
dependencies = [
1717
# TODO: To use `uv`, you need to do `uv pip install --prerelease=allow .` so it recognizes pre-release AutoGluon
18-
"autogluon>=1.4.1b20250910,<1.5", # TODO: Remove after moving `benchmark` code elsewhere
18+
"autogluon>=1.4.1b20250910,<1.6", # TODO: Remove after moving `benchmark` code elsewhere
1919
"bencheval",
2020
"openml>=0.14.1", # consider making optional
2121
"pyyaml",

tabarena/tabarena/benchmark/models/ag/tabdpt/tabdpt_model.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313

1414

1515
class TabDPTModel(AbstractModel):
16-
ag_key = "TABDPT"
17-
ag_name = "TabDPT"
16+
ag_key = "TA-TABDPT"
17+
ag_name = "TA-TabDPT"
1818
seed_name = "seed"
1919
default_random_seed = 0
2020

tabarena/tabarena/benchmark/models/ag/tabpfnv2_5/tabpfnv2_5_model.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,8 +290,8 @@ class RealTabPFNv25Model(TabPFNModel):
290290
The extra checkpoints include models trained on only synthetic datasets as well.
291291
"""
292292

293-
ag_key = "REALTABPFN-V2.5"
294-
ag_name = "RealTabPFN-v2.5"
293+
ag_key = "TA-REALTABPFN-V2.5"
294+
ag_name = "TA-RealTabPFN-v2.5"
295295

296296
default_classification_model: str | None = (
297297
"tabpfn-v2.5-classifier-v2.5_default.ckpt"

tabflow_slurm/submit_template.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
#SBATCH --ntasks=1
33
#SBATCH --job-name=tabarena_run
4-
#SBATCH --export=ALL
4+
#SBATCH --export=ALL,TABPFN_DISABLE_TELEMETRY=1
55
#SBATCH --requeue
66
#SBATCH --propagate=NONE
77

0 commit comments

Comments
 (0)