Spaces:
Running
Running
File size: 738 Bytes
aada8de 409ae36 aada8de 0aedfd6 aada8de 0aedfd6 aada8de 409ae36 aada8de 0aedfd6 409ae36 0aedfd6 409ae36 aada8de 409ae36 aada8de 409ae36 aada8de 409ae36 0aedfd6 409ae36 aada8de |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
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,
}
"""
|