Datasets:
dataset card: add evals config
Browse files
README.md
CHANGED
|
@@ -21,6 +21,8 @@ configs:
|
|
| 21 |
data_files: data/train_ornith.jsonl
|
| 22 |
- config_name: train_blended
|
| 23 |
data_files: data/train_blended.jsonl
|
|
|
|
|
|
|
| 24 |
---
|
| 25 |
|
| 26 |
# Plumb
|
|
@@ -42,6 +44,17 @@ Leakprobe vs benchmark: exact signature overlap 0.
|
|
| 42 |
| Ornith-only | 58 | 0.241 [0.214, 0.268] | 0.111 [0.098, 0.124] | 0.084 |
|
| 43 |
| blend | 281 | 0.334 [0.306, 0.363] | 0.374 [0.342, 0.406] | 0.228 |
|
| 44 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 45 |
CIs: 10k bootstrap, seed 11. Adapters: [`handseeded`](https://huggingface.co/caiotheodoro/plumb-handseeded) · [`ornith`](https://huggingface.co/caiotheodoro/plumb-ornith) · [`blended`](https://huggingface.co/caiotheodoro/plumb-blended). N=18 mix/error and pow-* / leaked-anchor grows are not here.
|
| 46 |
|
| 47 |
```python
|
|
|
|
| 21 |
data_files: data/train_ornith.jsonl
|
| 22 |
- config_name: train_blended
|
| 23 |
data_files: data/train_blended.jsonl
|
| 24 |
+
- config_name: evals
|
| 25 |
+
data_files: data/evals/evals.jsonl
|
| 26 |
---
|
| 27 |
|
| 28 |
# Plumb
|
|
|
|
| 44 |
| Ornith-only | 58 | 0.241 [0.214, 0.268] | 0.111 [0.098, 0.124] | 0.084 |
|
| 45 |
| blend | 281 | 0.334 [0.306, 0.363] | 0.374 [0.342, 0.406] | 0.228 |
|
| 46 |
|
| 47 |
+
The `evals` config has all 15 published rows (full size, equal-N@58 random and stratified, clean equal-N@18) with their CIs, so the tables in the post are reproducible without rerunning anything:
|
| 48 |
+
|
| 49 |
+
```python
|
| 50 |
+
from datasets import load_dataset
|
| 51 |
+
|
| 52 |
+
evals = load_dataset("caiotheodoro/plumb", "evals", split="train")
|
| 53 |
+
[r for r in evals if r["group"] == "full_size"]
|
| 54 |
+
```
|
| 55 |
+
|
| 56 |
+
Raw per-prediction dumps live at `data/evals/eval-{handseeded,ornith,blended}.json` and `PATH_A_RESULTS.json`. Those are artifacts, not configs; fetch them with `hf_hub_download`.
|
| 57 |
+
|
| 58 |
CIs: 10k bootstrap, seed 11. Adapters: [`handseeded`](https://huggingface.co/caiotheodoro/plumb-handseeded) · [`ornith`](https://huggingface.co/caiotheodoro/plumb-ornith) · [`blended`](https://huggingface.co/caiotheodoro/plumb-blended). N=18 mix/error and pow-* / leaked-anchor grows are not here.
|
| 59 |
|
| 60 |
```python
|