Datasets:

Formats:
json
Languages:
English
Size:
< 1K
ArXiv:
Libraries:
Datasets
pandas
License:
MapEval-API / README.md
mahirlabibdihan's picture
Update README.md
00be17c verified
|
raw
history blame
1.18 kB
metadata
license: apache-2.0
task_categories:
  - question-answering
language:
  - en
size_categories:
  - n<1K
configs:
  - config_name: benchmark
    data_files:
      - split: test
        path: dataset.json
paperswithcode_id: mapeval-api

MapEval-API

MapEval-API is created using MapQaTor.

Usage

from datasets import load_dataset

# Load dataset
ds = load_dataset("MapEval/MapEval-API", name="benchmark")

# Generate better prompts
for item in ds["test"]:
    # Start with a clear task description
    prompt = (
        "You are a highly intelligent assistant. "
        "Answer the multiple-choice question by selecting the correct option.\n\n"
        "Question:\n" + item["question"] + "\n\n"
        "Options:\n"
    )
    
    # List the options more clearly
    for i, option in enumerate(item["options"], start=1):
        prompt += f"{i}. {option}\n"
    
    # Add a concluding sentence to encourage selection of the answer
    prompt += "\nSelect the best option by choosing its number."

    # Use the prompt as needed
    print(prompt)  # Replace with your processing logic