Datasets:
Point dataset configs at parquet shards (fix JobManagerCrashedError)
Browse files
README.md
CHANGED
|
@@ -23,15 +23,15 @@ configs:
|
|
| 23 |
- config_name: default
|
| 24 |
data_files:
|
| 25 |
- split: train
|
| 26 |
-
path: blind/train.
|
| 27 |
- split: test
|
| 28 |
-
path: blind/test.
|
| 29 |
- config_name: ground_truth
|
| 30 |
data_files:
|
| 31 |
- split: train
|
| 32 |
-
path: ground_truth/train.
|
| 33 |
- split: test
|
| 34 |
-
path: ground_truth/test.
|
| 35 |
---
|
| 36 |
|
| 37 |
# Enron Correspondence Deduplicated (Enriched GT, Agent-Blind Default)
|
|
@@ -70,6 +70,16 @@ tipped off; humans can still audit every label in the viewer by switching to
|
|
| 70 |
the `ground_truth` config. This is separation of concerns, NOT encryption —
|
| 71 |
the Hub is public and any deliberate download can fetch both configs.
|
| 72 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 73 |
## Ground-truth dimensions
|
| 74 |
|
| 75 |
1. **doc_type / subclass** (`expected`, `expected_subclass`,
|
|
|
|
| 23 |
- config_name: default
|
| 24 |
data_files:
|
| 25 |
- split: train
|
| 26 |
+
path: parquet/blind/train/train-*.parquet
|
| 27 |
- split: test
|
| 28 |
+
path: parquet/blind/test/test-*.parquet
|
| 29 |
- config_name: ground_truth
|
| 30 |
data_files:
|
| 31 |
- split: train
|
| 32 |
+
path: parquet/ground_truth/train/train-*.parquet
|
| 33 |
- split: test
|
| 34 |
+
path: parquet/ground_truth/test/test-*.parquet
|
| 35 |
---
|
| 36 |
|
| 37 |
# Enron Correspondence Deduplicated (Enriched GT, Agent-Blind Default)
|
|
|
|
| 70 |
the `ground_truth` config. This is separation of concerns, NOT encryption —
|
| 71 |
the Hub is public and any deliberate download can fetch both configs.
|
| 72 |
|
| 73 |
+
## File layout
|
| 74 |
+
|
| 75 |
+
Both configs point at pre-sharded **parquet** (`parquet/<config>/<split>/*.parquet`,
|
| 76 |
+
zstd). The original `blind/*.jsonl` and `ground_truth/*.jsonl` files remain in
|
| 77 |
+
the repo unchanged — row-for-row identical to the parquet shards (same order,
|
| 78 |
+
same schema; verified 2026-08-23) — for pipelines that prefer line-delimited
|
| 79 |
+
JSON. The single-file 548 MB `blind/train.jsonl` crashed the Dataset Viewer's
|
| 80 |
+
conversion worker (`JobManagerCrashedError`); serving parquet directly removes
|
| 81 |
+
that conversion step entirely.
|
| 82 |
+
|
| 83 |
## Ground-truth dimensions
|
| 84 |
|
| 85 |
1. **doc_type / subclass** (`expected`, `expected_subclass`,
|