JasperYOU's picture
Upload folder using huggingface_hub
9595c78 verified
Description
Large language models (LLMs) are rapidly entering our lives, but ensuring their responses resonate with users is critical for successful interaction. This competition presents a unique opportunity to tackle this challenge with real-world data and help us bridge the gap between LLM capability and human preference.
We utilized a large dataset collected from Chatbot Arena, where users chat with two anonymous LLMs and choose the answer they prefer. Your task in this competition is to predict which response a user will prefer in these head-to-head battles.
This challenge aligns with the concept of "reward models" or "preference models" in reinforcement learning from human feedback (RLHF). Previous research has identified limitations in directly prompting an existing LLM for preference predictions. These limitations often stem from biases such as favoring responses presented first (position bias), being overly verbose (verbosity bias), or exhibiting self-promotion (self-enhancement bias).
We encourage you to explore various machine-learning techniques to build a model that can effectively predict user preferences. Your work will be instrumental in developing LLMs that can tailor responses to individual user preferences, ultimately leading to more user-friendly and widely accepted AI-powered conversation systems.
Evaluation
Submissions are evaluated on the log loss between the predicted probabilities and the ground truth values (with "eps=auto").
Submission File
For each id in the test set, you must predict the probability for each target class. The file should contain a header and have the following format:
```
id,winner_model_a,winner_model_b,winner_tie
136060,0.33,0.33,0.33
211333,0.33,0.33,0.33
1233961,0.33,0.33,0.33
```
Dataset Description
The competition dataset consists of user interactions from the ChatBot Arena. In each user interaction, a judge provides one or more prompts to two different large language models and then indicates which of the models gave the more satisfactory response. The goal of the competition is to predict the preferences of the judges and determine the likelihood that a given prompt/response pair is selected as the winner.
Please note that this is a Code Competition. When your submission is scored, this example test data will be replaced with the full test set. There are 55K rows in the training data, and you can expect roughly 25,000 rows in the test set.
Files
train.csv
- id: A unique identifier for the row.
- model_[a/b]: The identity of model_[a/b]. Included in train.csv but not test.csv.
- prompt: The prompt that was given as an input (to both models).
- response_[a/b]: The response from model_[a/b] to the given prompt.
- winner_model_[a/b/tie]: Binary columns marking the judge's selection. The ground truth target column.
test.csv
- id
- prompt
- response_[a/b]
sample_submission.csv
A submission file in the correct format:
- id
- winner_model_[a/b/tie]: This is what is predicted from the test set.
Note: the dataset for this competition contains text that may be considered profane, vulgar, or offensive.