LennartPurucker commited on
Commit
dc93ce3
·
verified ·
1 Parent(s): 8f45411

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -16
README.md CHANGED
@@ -1,17 +1,19 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
4
-
5
- ### Submitting Results to the Leaderboard
6
- First, install teh TabArena dependencies:
7
- ```bash
8
- # Requires latest mainline AutoGluon (or AutoGluon 1.3+)
9
- git clone https://github.com/autogluon/autogluon
10
- ./autogluon/full_install.sh
11
-
12
- git clone https://github.com/autogluon/tabrepo.git
13
- pip install -e tabrepo/[benchmark]
14
-
15
- git clone https://huggingface.co/datasets/TabArena/benchmark_results
16
- ```
 
 
17
  Next, concatenate your model performance results to 'df_results.csv' and rerun 'get_leaderboard_csv.py' to obtain an updated leaderboard.
 
1
+ ---
2
+ license: cc-by-4.0
3
+ ---
4
+
5
+ ### Submitting Results to the Leaderboard
6
+ First, install the TabArena dependencies:
7
+ ```bash
8
+ pip install uv
9
+ uv venv --seed --python 3.11 ~/.venvs/tabarena
10
+ source ~/.venvs/tabarena
11
+
12
+ git clone --branch tabarena https://github.com/autogluon/tabrepo.git
13
+
14
+ # use GIT_LFS_SKIP_SMUDGE=1 in front of the command if installing TabDPT fails due to a broken LFS/pip setup.
15
+ GIT_LFS_SKIP_SMUDGE=1 uv pip install -e tabrepo/[benchmark]
16
+
17
+ git clone https://huggingface.co/datasets/TabArena/benchmark_results
18
+ ```
19
  Next, concatenate your model performance results to 'df_results.csv' and rerun 'get_leaderboard_csv.py' to obtain an updated leaderboard.