Skip to main content

Evaluation framework for DataBench

Project description

DataBench

This repo contains a simple evaluation framework for the DataBench suite for QA over Tabular Data. It is intended to provide a common framework and language to train and evaluate approaches to the task.

Since the task is very open and a number of decisions need to be taken in order to standardize for in very different approaches, I've developed a simple framework so that only three decisions need to be taken:

  • How to build the prompt given a question and the dataset that contains the answer
  • The actual model call (with batch support)
  • The evaluation function since what constitutes a valid answer is very system-dependant.

We also streamline prompt generation and processing, so we have a good setup to iterate.

Installation

pip install databench-eval

Basic Usage

from databench_eval import Runner, Evaluator

def model_call(prompts: list[str]) -> list[str]:
    """ Call your model on a batch of prompts here. """
    return "'mock response'" * len(prompts)

responses = Runner(model_call).run(prompts)

acc = Evaluator().eval(responses)
acc_lite = Evaluator().eval(responses, lite=True)

For more complex usage making use of the features described below, please refer to the examples folder.

Runner

The runner is the class that calls the model.

QA

If no QA is provided, it will download the full QA English set from databench_eval. You can choose any QA subset you might like, for example:

from databench_eval import Runner, Evaluator
from databench_eval.utils import load_qa

qa = load_qa(name="semeval", split="dev")

Runner(model_call, qa=qa_dev).run()

In order to download the files for the PRESTA 2025 Iberlef competition:

from databench_eval import Runner, Evaluator
from databench_eval.utils import load_qa

qa_train = load_qa(lang="ES", name="iberlef", split="train")
qa_dev = load_qa(lang="ES", name="iberlef", split="dev")

Prompt Generation

Instead of prompts, you might pass a prompt_generator function to the Runner. This receives a row from the qa dataset and is expected to return a string containing the prompt.

This might be useful to quickly prototype or test out new prompts. For example, testing the effect of knowing (or not) the semantic beforehand in the function calls.

from databench_eval.utils import load_table
def example_generator(row: dict) -> str:

    df = load_table(row["dataset"])
    question = row["question"]
    semantic = row["type"]
    return f'''
    # You must complete the following function
    def answer(df: pd.DataFrame) -> {semantic}:
        """Returns the answer to {question}"""
        df.columns = {list(df.columns)}
        return'''
custom_runner = Runner(model_call, prompt_generator=prompt_generator)

To load a dataset in Spanish simply pass the lang="ES" to utils.load_table:

from databench_eval.utils import load_table
def example_generator(row: dict) -> str:

    df = load_table(row["dataset"], lang="ES")
    question = row["question"]
    semantic = row["type"]
    return f'''
    # You must complete the following function
    def answer(df: pd.DataFrame) -> {semantic}:
        """Returns the answer to {question}"""
        df.columns = {list(df.columns)}
        return'''
custom_runner = Runner(model_call, prompt_generator=prompt_generator)

Postprocessing Function

Similarly, you might implement a preprocess or postprocessing function for the model responses. For example, let's say we have a model with a tendency to just continue rambling after providing us with the answer, and we've observed the result is greatly enhanced by just taking the first line.

By default, no postprocessing is implemented.

from databench_eval import Runner

def custom_postp(response: str, dataset: str):
    return response.split("\n")[0]

custom_runner = Runner(model_call, postprocess=custom_postp)

The actual returns of the model_calls will be stored in Runner.raw_responses, while the post-processed are stored in Runner.responses.

Number of batches

By default, the Runner processes the dataset in batches of 10. You can change this by setting the batch_size parameter when initializing it.

Save to File

You can save the model responses to a txt file. The format will be that used during the SemEval 2025 and Iberlef 2025 competitions, one result per line.

Runner.run(..., save="/path/to/responses.txt")

Evaluator

In the end how accurate or useful a model is to you heavily depends on what you want to do with the model responses. For example, someone looking to implement a solution that couples to a wider automated system where output format is key might want their responses to have a picture perfect very specific format, while other applications like chatbots would get away with any kind of format as long as a human could understand it.

Our default evaluators are built with the competitions in mind, and so try to deal with specific edge-cases found in SemEval in order to be fair with all participants.

Compare Function

We have provided a basic evaluation function that is meant to serve as base evaluator, and can be found in Evaluator.default_compare:

  • Numbers are truncated to the second decimal 23.1234 == 23.12
  • Categories are compared as-is
  • The order within the lists is not taken into account

This will be the function used to evaluate results in the Task 8 of SemEval 2025.

The eval function of the evaluator can be overridden, either by monkey-patching or by using the compare argument in the Evaluator instantiation.

As a very simple example of the kind of behaviour that we could customize, let's say that we're looking for literal strict evaluations, but not taking into account order in lists. We would do something like the following:

from databench_eval import Evaluator

def custom_compare(value, truth, semantic=None):
    """ Custom evaluation function. """
    if "list" in semantic:
        return sorted(value) == sorted(truth)
    else:
        return str(value) == str(truth)

custom_evaluator = Evaluator(compare=custom_compare)

Read from file

You can also read from a file by passing the path to it. The format expected will be that used during the SemEval 2025 competition, one result per line.

Evaluator().eval(..., save="path/to/file.txt")

Number of batches

By default, the Evaluator processes the dataset in batches of 10. You can change this by setting the batch_size parameter when initializing it.

Utils

Although decoupled from the main classes, I've included a couple of useful functions in here.

  • load_qa: load the qa sets from HuggingFace
  • load_table: loads a data table from a given id (the "dataset" column of the QA table) from HuggingFace

Examples

Check out the examples folder for more complex showcases of this library. codellama7.py in particular carries out a full semeval 2025 task 8 submission, while iberlef_baseline_4o_mini.py creates a full submission for Iberlef 2025.

Contact

This benchmark is still in active development and at the early stages of usage. If you find any mistakes please let me know.

The easiest way to reach me is at jorgeosesgrijalba@gmail.com

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

databench_eval-4.0.1.tar.gz (12.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

databench_eval-4.0.1-py3-none-any.whl (8.4 kB view details)

Uploaded Python 3

File details

Details for the file databench_eval-4.0.1.tar.gz.

File metadata

  • Download URL: databench_eval-4.0.1.tar.gz
  • Upload date:
  • Size: 12.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for databench_eval-4.0.1.tar.gz
Algorithm Hash digest
SHA256 d9e9ef6538f00cdc712deb292649b9aa7d2bdfe6d5c6c3c2d98710e2a60d9248
MD5 5757b2d7a081d9991de15dfee6b5c837
BLAKE2b-256 f52ceeb574c93ce1ee2ef70dd77bd81de12772742c8ed4700deefa35e0048d54

See more details on using hashes here.

Provenance

The following attestation bundles were made for databench_eval-4.0.1.tar.gz:

Publisher: publish.yml on jorses/databench_eval

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file databench_eval-4.0.1-py3-none-any.whl.

File metadata

  • Download URL: databench_eval-4.0.1-py3-none-any.whl
  • Upload date:
  • Size: 8.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for databench_eval-4.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 473638b7e130e7e732d3f8c2dce246979b6ebeb57eac64394fef643055bfaeef
MD5 8eb1f186b0c0fca4a2b95d491a532a19
BLAKE2b-256 0b0ab4670c9ad20fe0d9ba95b63d08da1a2f904f262a2493cd62b35f1ac63bed

See more details on using hashes here.

Provenance

The following attestation bundles were made for databench_eval-4.0.1-py3-none-any.whl:

Publisher: publish.yml on jorses/databench_eval

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page