Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
tags:
|
| 4 |
+
- math
|
| 5 |
+
- reasoning
|
| 6 |
+
- dynamic-analysis
|
| 7 |
+
- bode-plot
|
| 8 |
+
- llm-evaluation
|
| 9 |
+
- exponential-functions
|
| 10 |
+
pretty_name: "MathBode-ExponentialInterest"
|
| 11 |
+
size_categories:
|
| 12 |
+
- "1K<n<10K"
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
# MathBode-ExponentialInterest: Exponential Functions Domain
|
| 16 |
+
|
| 17 |
+
Compound interest and exponential growth problems from the MathBode benchmark.
|
| 18 |
+
|
| 19 |
+
This dataset is part of the **MathBode** benchmark, which evaluates the dynamic reasoning capabilities of large language models (LLMs) by treating parametric math problems as dynamic systems. Instead of testing static accuracy on fixed problems, MathBode sinusoidally varies a parameter and measures the model's response in terms of **gain** (amplitude tracking) and **phase** (reasoning lag), analogous to a Bode plot in control theory.
|
| 20 |
+
|
| 21 |
+
## About This Domain
|
| 22 |
+
|
| 23 |
+
This dataset contains **Exponential Functions** problems specifically, with approximately 9,408 prompts covering:
|
| 24 |
+
|
| 25 |
+
- **3 question variants** with different constants
|
| 26 |
+
- **Sinusoidal parameter sweeps** at 5 frequencies (1, 2, 4, 8, 16 cycles)
|
| 27 |
+
- **3 phase offsets** (0°, 120°, 240°) for statistical robustness
|
| 28 |
+
- **3 amplitude scales** (0.5x, 1.0x, 2.5x) for non-linearity testing
|
| 29 |
+
- **Chirp signal validation** with continuous frequency sweeps
|
| 30 |
+
|
| 31 |
+
## Dataset Structure
|
| 32 |
+
|
| 33 |
+
| Column | Description |
|
| 34 |
+
|--------|-------------|
|
| 35 |
+
| `family` | Problem family name (always `exponential_interest` for this dataset) |
|
| 36 |
+
| `question_id` | Question variant ID (0, 1, or 2) |
|
| 37 |
+
| `signal_type` | Type of parameter variation (`sinusoid` or `chirp`) |
|
| 38 |
+
| `amplitude_scale` | Scaling factor for parameter variation amplitude |
|
| 39 |
+
| `frequency_cycles` | Frequency of parameter variation in cycles per sweep |
|
| 40 |
+
| `phase_deg` | Starting phase of sinusoidal signal in degrees |
|
| 41 |
+
| `time_step` | Step index within the sweep |
|
| 42 |
+
| `p_value` | The dynamic parameter value for this time step |
|
| 43 |
+
| `prompt` | The complete prompt text for the model |
|
| 44 |
+
| `ground_truth` | The correct numerical answer |
|
| 45 |
+
| `symbolic_baseline_answer` | Answer from perfect symbolic solver |
|
| 46 |
+
|
| 47 |
+
## Usage
|
| 48 |
+
|
| 49 |
+
```python
|
| 50 |
+
from datasets import load_dataset
|
| 51 |
+
|
| 52 |
+
# Load this specific domain
|
| 53 |
+
dataset = load_dataset("cognitive-metrology-lab/MathBode-ExponentialInterest")
|
| 54 |
+
|
| 55 |
+
# Access the data
|
| 56 |
+
print(dataset['train'][0])
|
| 57 |
+
```
|
| 58 |
+
|
| 59 |
+
## Related Datasets
|
| 60 |
+
|
| 61 |
+
- [MathBode](https://huggingface.co/datasets/cognitive-metrology-lab/MathBode) - Complete benchmark with all families
|
| 62 |
+
- [MathBode-LinearSolve](https://huggingface.co/datasets/cognitive-metrology-lab/MathBode-LinearSolve)
|
| 63 |
+
- [MathBode-RatioSaturation](https://huggingface.co/datasets/cognitive-metrology-lab/MathBode-RatioSaturation)
|
| 64 |
+
- [MathBode-ExponentialInterest](https://huggingface.co/datasets/cognitive-metrology-lab/MathBode-ExponentialInterest)
|
| 65 |
+
- [MathBode-LinearSystem](https://huggingface.co/datasets/cognitive-metrology-lab/MathBode-LinearSystem)
|
| 66 |
+
- [MathBode-SimilarTriangles](https://huggingface.co/datasets/cognitive-metrology-lab/MathBode-SimilarTriangles)
|
| 67 |
+
|
| 68 |
+
## Citation
|
| 69 |
+
|
| 70 |
+
If you use this dataset, please cite our work (citation to be added).
|