CoffeeGitta commited on
Commit
2e6dab2
·
verified ·
1 Parent(s): 0df8129

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +36 -0
README.md ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Generations Dataset: MATH
2
+
3
+ LLM-generated solutions across train/validation/test splits for multiple models.
4
+
5
+ ## Columns
6
+
7
+ | Column | Type | Description |
8
+ |--------|------|-------------|
9
+ | `problem` | str | Problem statement |
10
+ | `generated_solutions` | list | Generated solutions with scores |
11
+ | `success_rate` | float | Fraction of correct generations |
12
+ | `majority_vote_is_correct` | int (0/1) | Whether majority vote is correct |
13
+ | `k` | int | Number of samples generated |
14
+ | `temperature` | float | Sampling temperature |
15
+ | `max_len` | int | Maximum generation length |
16
+ | `model_name` | str | Model used for generation |
17
+
18
+ ## Usage
19
+
20
+ ```python
21
+ from datasets import load_dataset
22
+
23
+ dataset = load_dataset("CoffeeGitta/difficulty-MATH-generations", name="<org--model>")
24
+ train = dataset["train"]
25
+ ```
26
+
27
+ ## Citation
28
+
29
+ ```bibtex
30
+ @article{lugoloobi_llms_2026,
31
+ title = {LLMs Encode Their Failures: Predicting Success from Pre-Generation Activations},
32
+ url = {http://arxiv.org/abs/2602.09924},
33
+ author = {Lugoloobi, William and Foster, Thomas and Bankes, William and Russell, Chris},
34
+ year = {2026},
35
+ }
36
+ ```