Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,27 +1,39 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
-
|
| 10 |
-
|
| 11 |
-
- name: input_ids_prompt
|
| 12 |
-
list: int64
|
| 13 |
-
- name: input_ids_completion
|
| 14 |
-
list: int64
|
| 15 |
-
- name: teacher_indices
|
| 16 |
-
list:
|
| 17 |
-
list: int64
|
| 18 |
-
- name: teacher_logits
|
| 19 |
-
list:
|
| 20 |
-
list: float64
|
| 21 |
-
splits:
|
| 22 |
-
- name: train
|
| 23 |
-
num_bytes: 521080882576
|
| 24 |
-
num_examples: 169948
|
| 25 |
-
download_size: 107764042770
|
| 26 |
-
dataset_size: 521080882576
|
| 27 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- text-generation
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
tags:
|
| 8 |
+
- distillation
|
| 9 |
+
- olmo
|
| 10 |
+
- instruction-tuning
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
---
|
| 12 |
+
|
| 13 |
+
# Dolci Instruct RL Completions
|
| 14 |
+
|
| 15 |
+
Instruction-following completions sampled from OLMo-3-7B-Instruct with teacher logits for knowledge distillation.
|
| 16 |
+
|
| 17 |
+
## Description
|
| 18 |
+
|
| 19 |
+
This dataset contains instruction-completion pairs with pre-computed teacher logits from OLMo-3-7B-Instruct. Designed for training smaller student models via KL-divergence distillation.
|
| 20 |
+
|
| 21 |
+
## Generation
|
| 22 |
+
|
| 23 |
+
Completions were sampled from **allenai/OLMo-3-7B-Instruct** on instruction prompts. For each token position, we store the top-128 token indices and their corresponding logits.
|
| 24 |
+
|
| 25 |
+
## Format
|
| 26 |
+
|
| 27 |
+
Each example contains:
|
| 28 |
+
- `input_ids_prompt`: tokenized instruction/prompt
|
| 29 |
+
- `input_ids_completion`: tokenized model completion
|
| 30 |
+
- `teacher_indices`: [seq_len, 128] top-128 token indices per position
|
| 31 |
+
- `teacher_logits`: [seq_len, 128] corresponding logits
|
| 32 |
+
|
| 33 |
+
## Usage
|
| 34 |
+
|
| 35 |
+
|
| 36 |
+
|
| 37 |
+
## Pre-packed Version
|
| 38 |
+
|
| 39 |
+
For ready-to-train packed batches, see [hbfreed/dolci-distill-packed](https://huggingface.co/datasets/hbfreed/dolci-distill-packed).
|