Update README.md
Browse files
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
|
| 7 |
-
```bash
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
git clone https://github.com/autogluon/tabrepo.git
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 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.
|