jenbenarye
commited on
Commit
·
2bad840
1
Parent(s):
4e67485
added kro dataset schema to README.md
Browse files
README.md
CHANGED
@@ -20,3 +20,20 @@ This repository hosts the development of an automated RLHF platform for Hugging
|
|
20 |
A community-driven project to enhance Vision-Language Models (VLMs) for student-focused tasks.
|
21 |
Leverages feedback from users and automated RLHF pipelines to continuously improve model performance and usability.
|
22 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
A community-driven project to enhance Vision-Language Models (VLMs) for student-focused tasks.
|
21 |
Leverages feedback from users and automated RLHF pipelines to continuously improve model performance and usability.
|
22 |
|
23 |
+
|
24 |
+
|
25 |
+
# Dataset Schema for Project
|
26 |
+
|
27 |
+
## KTO Dataset Structure
|
28 |
+
|
29 |
+
The dataset should be organized into two splits: `train` and `test`.
|
30 |
+
|
31 |
+
Each split contains the following features:
|
32 |
+
|
33 |
+
| **Feature** | **Type** | **Description** |
|
34 |
+
|---------------|-----------|--------------------------------------------------------------------------------------|
|
35 |
+
| `prompt` | `string` | The input text for the model. This should be a natural language query or input. |
|
36 |
+
| `completion` | `string` | The output text generated by the model in response to the `prompt`. |
|
37 |
+
| `label` | `bool` | A binary value (`True` or `False`) indicating whether the `completion` is desirable. |
|
38 |
+
|
39 |
+
|