LennartPurucker commited on
Commit
95d1cf3
·
1 Parent(s): cb35049

add paper link/ref

Browse files
Files changed (2) hide show
  1. main.py +1 -1
  2. website_texts.py +8 -4
main.py CHANGED
@@ -426,7 +426,7 @@ def main():
426
  gr.Textbox(
427
  value=CITATION_BUTTON_TEXT,
428
  label=CITATION_BUTTON_LABEL,
429
- lines=5,
430
  elem_id="citation-button",
431
  show_copy_button=True,
432
  )
 
426
  gr.Textbox(
427
  value=CITATION_BUTTON_TEXT,
428
  label=CITATION_BUTTON_LABEL,
429
+ lines=7,
430
  elem_id="citation-button",
431
  show_copy_button=True,
432
  )
website_texts.py CHANGED
@@ -42,7 +42,7 @@ types and thus provides a reference for model-specific pipelines.
42
 
43
  ABOUT_TEXT = r"""
44
  ### Extended Overview of TabArena (References / Papers)
45
- We introduce TabArena and provide an overview of TabArena-v0.1 in our paper: TBA.
46
 
47
  ### Using TabArena for Benchmarking
48
  To compare your own methods to the pre-computed results for all models on the leaderboard,
@@ -51,7 +51,7 @@ please see https://tabarena.ai/code-examples
51
 
52
  ### Contributing to the Leaderboard; Contributing Models
53
  For guidelines on how to contribute your model to TabArena, or the result of your model
54
- to the official leaderboard, please see the appendix of our paper: TBA.
55
 
56
  ### Contributing Data
57
  For anything related to the datasets used in TabArena, please see https://tabarena.ai/data-tabular-ml-iid-study
@@ -114,8 +114,12 @@ The current core maintainers of TabArena are:
114
  CITATION_BUTTON_LABEL = (
115
  "If you use TabArena or the leaderboard in your research please cite the following:"
116
  )
117
- CITATION_BUTTON_TEXT = r"""@article{
118
- TBA,
 
 
 
 
119
  }
120
  """
121
 
 
42
 
43
  ABOUT_TEXT = r"""
44
  ### Extended Overview of TabArena (References / Papers)
45
+ We introduce TabArena and provide an overview of TabArena-v0.1 in our paper: https://tabarena.ai/paper-tabular-ml-iid-study.
46
 
47
  ### Using TabArena for Benchmarking
48
  To compare your own methods to the pre-computed results for all models on the leaderboard,
 
51
 
52
  ### Contributing to the Leaderboard; Contributing Models
53
  For guidelines on how to contribute your model to TabArena, or the result of your model
54
+ to the official leaderboard, please see the appendix of our paper: https://tabarena.ai/paper-tabular-ml-iid-study.
55
 
56
  ### Contributing Data
57
  For anything related to the datasets used in TabArena, please see https://tabarena.ai/data-tabular-ml-iid-study
 
114
  CITATION_BUTTON_LABEL = (
115
  "If you use TabArena or the leaderboard in your research please cite the following:"
116
  )
117
+ CITATION_BUTTON_TEXT = r"""@article{erickson2025tabarena,
118
+ title={TabArena: A Living Benchmark for Machine Learning on Tabular Data},
119
+ author={Nick Erickson and Lennart Purucker and Andrej Tschalzev and David Holzmüller and Prateek Mutalik Desai and and David Salinas and Frank Hutter},
120
+ year={2025},
121
+ journal={arXiv preprint arXiv:2506.16791},
122
+ url={https://arxiv.org/abs/2506.16791},
123
  }
124
  """
125