|
from dataclasses import dataclass |
|
from enum import Enum |
|
|
|
|
|
|
|
NUM_FEWSHOT = 0 |
|
|
|
|
|
TITLE = """<h1 align="center" id="space-title">Multimodal Hallucination Leaderboard</h1>""" |
|
|
|
INTRODUCTION_TEXT = """ |
|
""" |
|
|
|
LLM_BENCHMARKS_TEXT = f""" |
|
TODO write about page here |
|
""" |
|
|
|
EVALUATION_QUEUE_TEXT = """ |
|
TODO Write this |
|
""" |
|
|
|
CITATION_BUTTON_LABEL = "Copy the following snippet to cite these results" |
|
CITATION_BUTTON_TEXT = r"""@misc{sun2024crosscheckgpt, |
|
title={CrossCheckGPT: Universal Hallucination Ranking for Multimodal Foundation Models}, |
|
author={Guangzhi Sun and Potsawee Manakul and Adian Liusie and Kunat Pipatanakul and Chao Zhang and Phil Woodland and Mark Gales}, |
|
year={2024}, |
|
eprint={2405.13684}, |
|
archivePrefix={arXiv}, |
|
primaryClass={cs.CL} |
|
}""" |
|
|