TabArena-WIP / src /about.py
geoalgo's picture
first version
0aedfd6
raw
history blame contribute delete
738 Bytes
from dataclasses import dataclass
from enum import Enum
NUM_FEWSHOT = 0 # Change with your few shot
# ---------------------------------------------------
# Your leaderboard name
TITLE = """<h1 align="center" id="space-title">TabArena: Public leaderboard for Tabular methods</h1>"""
# What does your leaderboard evaluate?
INTRODUCTION_TEXT = """
Describe TabArena HERE. TODO
"""
# Which evaluations are you running? how can people reproduce what you have?
LLM_BENCHMARKS_TEXT = f"""
How It Works
Describe workflow. TODO
```bash
git clone https://github.com/TODO
```
"""
EVALUATION_QUEUE_TEXT = """
"""
CITATION_BUTTON_LABEL = "Copy the following snippet to cite these results"
CITATION_BUTTON_TEXT = r"""
@article{
TODO,
}
"""