Add dataset card and release metadata
Browse filesAdd the reviewed English dataset card, CC BY 4.0 terms, citation metadata, manifest, and QA report for v1.0.0.
- CITATION.cff +23 -0
- DATA-DICTIONARY.md +59 -0
- LICENSE-DATA.txt +1 -0
- MANIFEST.json +252 -0
- QA.json +83 -0
- README.md +221 -0
CITATION.cff
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
cff-version: 1.2.0
|
| 2 |
+
message: "If you use this benchmark, cite the article, dataset release, frozen protocol, and archival record."
|
| 3 |
+
title: "DeepSeek 1M Context Benchmark: Retrieval Accuracy, Latency, and Cost"
|
| 4 |
+
type: dataset
|
| 5 |
+
authors:
|
| 6 |
+
- name: "Chat Deep AI"
|
| 7 |
+
website: "https://chat-deep.ai/"
|
| 8 |
+
version: 1.0.0
|
| 9 |
+
date-released: 2026-08-07
|
| 10 |
+
doi: 10.5281/zenodo.21838863
|
| 11 |
+
repository-code: "https://github.com/chatdeepai/deepseek-1m-context-benchmark"
|
| 12 |
+
url: "https://doi.org/10.5281/zenodo.21838863"
|
| 13 |
+
license: CC-BY-4.0
|
| 14 |
+
keywords:
|
| 15 |
+
- DeepSeek
|
| 16 |
+
- long context
|
| 17 |
+
- retrieval benchmark
|
| 18 |
+
- latency
|
| 19 |
+
- reproducibility
|
| 20 |
+
abstract: >-
|
| 21 |
+
A reproducible benchmark of DeepSeek V4 Flash and Pro across deterministic
|
| 22 |
+
long-context retrieval and synthesis tasks, with sanitized attempt-level
|
| 23 |
+
data, strict grading, and a frozen methodology.
|
DATA-DICTIONARY.md
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Public data dictionary
|
| 2 |
+
|
| 3 |
+
The case CSVs are reconstructed through an explicit allowlist. Empty cells mean the provider or adapter did not supply a value; they are not silently imputed.
|
| 4 |
+
|
| 5 |
+
| Field | Meaning |
|
| 6 |
+
|---|---|
|
| 7 |
+
| `protocol_id` | Frozen benchmark protocol identifier. |
|
| 8 |
+
| `protocol_version` | Frozen protocol semantic version. |
|
| 9 |
+
| `analysis_role` | pilot_excluded, primary_accuracy, or india_latency_validation. |
|
| 10 |
+
| `include_in_primary_accuracy_denominators` | True only for the 288 U.S. primary rows. |
|
| 11 |
+
| `region_vantage` | AWS client network vantage used to send the request; not provider hosting or user location. |
|
| 12 |
+
| `case_id` | Deterministic effective case identifier; not a provider request ID. |
|
| 13 |
+
| `public_case_uid` | Release-specific hash of protocol, role, region, and case_id; unique across all 344 public rows. |
|
| 14 |
+
| `model_id` | Exact requested DeepSeek API model ID. |
|
| 15 |
+
| `family_id` | Frozen objective task family. |
|
| 16 |
+
| `tier_id` | Frozen provider-counted prompt-token tier. |
|
| 17 |
+
| `position_id` | Frozen beginning, middle, or end target position label. |
|
| 18 |
+
| `repeat` | Deterministic fixture repeat number. |
|
| 19 |
+
| `started_at` | UTC request start timestamp. |
|
| 20 |
+
| `finished_at` | UTC terminal timestamp. |
|
| 21 |
+
| `http_status` | Observed HTTP status when available. |
|
| 22 |
+
| `transport_complete` | True only when the HTTP stream completed under the frozen adapter contract. |
|
| 23 |
+
| `finish_reason` | Provider-returned completion finish reason. |
|
| 24 |
+
| `returned_model` | Provider-returned model identifier. |
|
| 25 |
+
| `system_fingerprint` | Provider-returned backend fingerprint when supplied. |
|
| 26 |
+
| `time_to_first_sse_event_ms` | Milliseconds from request start to the first SSE event. |
|
| 27 |
+
| `time_to_first_reasoning_token_ms` | Milliseconds to the first reasoning token; normally blank because thinking was disabled. |
|
| 28 |
+
| `time_to_first_answer_token_ms` | Milliseconds from request start to the first answer token. |
|
| 29 |
+
| `time_to_end_ms` | Milliseconds from request start to stream termination. |
|
| 30 |
+
| `prompt_tokens` | Provider-returned prompt-token count. |
|
| 31 |
+
| `completion_tokens` | Provider-returned completion-token count. |
|
| 32 |
+
| `total_tokens` | Provider-returned total-token count. |
|
| 33 |
+
| `prompt_cache_hit_tokens` | Provider-returned prompt cache-hit tokens. |
|
| 34 |
+
| `prompt_cache_miss_tokens` | Provider-returned prompt cache-miss tokens. |
|
| 35 |
+
| `reasoning_tokens` | Provider-returned reasoning-token count when supplied. |
|
| 36 |
+
| `valid_json` | Whether the final answer was one parseable JSON object. |
|
| 37 |
+
| `exact_keys` | Whether the parsed object had exactly the family-specific key set. |
|
| 38 |
+
| `exact_match` | Frozen primary outcome: exact keys, types, and values with no surrounding prose. |
|
| 39 |
+
| `field_accuracy` | Matched required fields divided by total required fields for the case. |
|
| 40 |
+
| `matched_fields` | Number of exact required fields. |
|
| 41 |
+
| `total_fields` | Number of required fields for the case family. |
|
| 42 |
+
| `grader_errors` | Pipe-delimited public-safe grader error labels. |
|
| 43 |
+
| `prompt_tier_calibration_passed` | Whether provider-returned prompt_tokens fell inside the frozen accepted tier. |
|
| 44 |
+
| `thinking_disabled_violation` | True if reasoning content appeared despite the frozen non-thinking request. |
|
| 45 |
+
| `sse_event_count` | Count of captured SSE events. |
|
| 46 |
+
| `sse_parse_error_count` | Count of SSE parse errors. |
|
| 47 |
+
| `sse_done_received` | Whether the terminal SSE marker was captured. |
|
| 48 |
+
| `stream_error_class` | Public-safe stream error class, if any. |
|
| 49 |
+
| `error_class` | Public-safe adapter error class, if any. |
|
| 50 |
+
| `observed_provider_cost_usd_cache_miss_upper_bound` | Dated cache-miss upper-bound cost calculated from returned token counts. |
|
| 51 |
+
| `generator_bundle_sha256` | SHA-256 of the frozen generator bundle. |
|
| 52 |
+
| `base_fixture_sha256` | SHA-256 of the unsalted deterministic fixture. |
|
| 53 |
+
| `execution_salt_sha256` | SHA-256 of the role-and-region execution salt. |
|
| 54 |
+
| `salted_user_prompt_sha256` | SHA-256 of the sent salted user prompt. |
|
| 55 |
+
| `expected_sha256` | SHA-256 of the objective expected JSON value. |
|
| 56 |
+
| `request_sha256` | SHA-256 of the canonical sent request body. |
|
| 57 |
+
| `raw_response_sha256` | SHA-256 of the immutable raw provider response bytes; raw bytes are not public. |
|
| 58 |
+
|
| 59 |
+
The sanitized validator export exposes aggregate field counts but not per-field expected and observed values. No per-field row dataset is synthesized.
|
LICENSE-DATA.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
Dataset and original charts are licensed under CC BY 4.0: https://creativecommons.org/licenses/by/4.0/
|
MANIFEST.json
ADDED
|
@@ -0,0 +1,252 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"schema_version": "1.0.0",
|
| 3 |
+
"bundle_name": "deepseek-1m-context-benchmark-huggingface-dataset-v1.0.0",
|
| 4 |
+
"created_on": "2026-08-07",
|
| 5 |
+
"status": "local_ready_not_uploaded",
|
| 6 |
+
"external_upload_performed": false,
|
| 7 |
+
"source": {
|
| 8 |
+
"repository": "https://github.com/chatdeepai/deepseek-1m-context-benchmark",
|
| 9 |
+
"release": "https://github.com/chatdeepai/deepseek-1m-context-benchmark/releases/tag/v1.0.0",
|
| 10 |
+
"release_version": "1.0.0",
|
| 11 |
+
"release_tag": "v1.0.0",
|
| 12 |
+
"release_commit": "06162a211ad9929646d53d60b97c31b758192d09",
|
| 13 |
+
"protocol_id": "deepseek-v4-long-context-retrieval-v1.1.0",
|
| 14 |
+
"article": "https://chat-deep.ai/research/deepseek-1m-context-benchmark/",
|
| 15 |
+
"trusted_source_archive_sha256": "38337e1213e2cf7ba7de8f21703e11772eddb71326361a66f27f7a8d0c114dcb"
|
| 16 |
+
},
|
| 17 |
+
"doi": "10.5281/zenodo.21838863",
|
| 18 |
+
"doi_url": "https://doi.org/10.5281/zenodo.21838863",
|
| 19 |
+
"manifest_scope": "Every bundle file except MANIFEST.json itself.",
|
| 20 |
+
"file_count_in_manifest": 25,
|
| 21 |
+
"expected_bundle_file_count_including_manifest": 26,
|
| 22 |
+
"byte_preserved_source_files": 22,
|
| 23 |
+
"authored_files_in_manifest_scope": 3,
|
| 24 |
+
"authored_bundle_files_including_manifest": 4,
|
| 25 |
+
"files": [
|
| 26 |
+
{
|
| 27 |
+
"path": "data/all-attempts.csv",
|
| 28 |
+
"bytes": 332682,
|
| 29 |
+
"sha256": "eaed4c7f3d10a1ec975cb4e0e6fb230aa78919f619e64284adceec9adb0e567f",
|
| 30 |
+
"media_type": "text/csv",
|
| 31 |
+
"role": "dataset",
|
| 32 |
+
"source_release_path": "release/all-attempts.csv",
|
| 33 |
+
"byte_preserved_from_source": true
|
| 34 |
+
},
|
| 35 |
+
{
|
| 36 |
+
"path": "data/all-attempts.jsonl",
|
| 37 |
+
"bytes": 718077,
|
| 38 |
+
"sha256": "0da584f9e98ea8c4a3791c0d5482d5ecd65ed59917daab8ba4e701be8b838860",
|
| 39 |
+
"media_type": "application/x-ndjson",
|
| 40 |
+
"role": "dataset",
|
| 41 |
+
"source_release_path": "release/all-attempts.jsonl",
|
| 42 |
+
"byte_preserved_from_source": true
|
| 43 |
+
},
|
| 44 |
+
{
|
| 45 |
+
"path": "data/failures.csv",
|
| 46 |
+
"bytes": 50657,
|
| 47 |
+
"sha256": "d43f8d45885af48161c3c8fb4de8011c67f9ff85c5324e95e1f67942c54e8061",
|
| 48 |
+
"media_type": "text/csv",
|
| 49 |
+
"role": "dataset",
|
| 50 |
+
"source_release_path": "release/failures.csv",
|
| 51 |
+
"byte_preserved_from_source": true
|
| 52 |
+
},
|
| 53 |
+
{
|
| 54 |
+
"path": "data/india-latency-cases.csv",
|
| 55 |
+
"bytes": 35122,
|
| 56 |
+
"sha256": "0046db3c972e085075bd109921d0439a6944ca5fe9e9532abc91670d118f0891",
|
| 57 |
+
"media_type": "text/csv",
|
| 58 |
+
"role": "dataset",
|
| 59 |
+
"source_release_path": "release/india-latency-cases.csv",
|
| 60 |
+
"byte_preserved_from_source": true
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"path": "data/india-matched-pairs.csv",
|
| 64 |
+
"bytes": 3708,
|
| 65 |
+
"sha256": "51c51e3cef225fef00117519a16742dbabb296721829a2e710a1b1896dddc0a5",
|
| 66 |
+
"media_type": "text/csv",
|
| 67 |
+
"role": "dataset",
|
| 68 |
+
"source_release_path": "release/india-matched-pairs.csv",
|
| 69 |
+
"byte_preserved_from_source": true
|
| 70 |
+
},
|
| 71 |
+
{
|
| 72 |
+
"path": "data/model-fingerprints.csv",
|
| 73 |
+
"bytes": 1439,
|
| 74 |
+
"sha256": "5309cfd67f7d0fe930a02f57a32a4f0a5ab293fbaae1cfd0a4e4045c3618c527",
|
| 75 |
+
"media_type": "text/csv",
|
| 76 |
+
"role": "dataset",
|
| 77 |
+
"source_release_path": "release/model-fingerprints.csv",
|
| 78 |
+
"byte_preserved_from_source": true
|
| 79 |
+
},
|
| 80 |
+
{
|
| 81 |
+
"path": "data/pilot-excluded-cases.csv",
|
| 82 |
+
"bytes": 20851,
|
| 83 |
+
"sha256": "ba4785785b734cc3c8ba0124617e54982f36bf3a8a13a5bd8299eb820f4a9721",
|
| 84 |
+
"media_type": "text/csv",
|
| 85 |
+
"role": "dataset",
|
| 86 |
+
"source_release_path": "release/pilot-excluded-cases.csv",
|
| 87 |
+
"byte_preserved_from_source": true
|
| 88 |
+
},
|
| 89 |
+
{
|
| 90 |
+
"path": "data/primary-cases.csv",
|
| 91 |
+
"bytes": 278543,
|
| 92 |
+
"sha256": "c8c252b795cacd504eb360108e0ff71038eef195b87428cc753cb5c33d9df617",
|
| 93 |
+
"media_type": "text/csv",
|
| 94 |
+
"role": "dataset",
|
| 95 |
+
"source_release_path": "release/primary-cases.csv",
|
| 96 |
+
"byte_preserved_from_source": true
|
| 97 |
+
},
|
| 98 |
+
{
|
| 99 |
+
"path": "data/release-case-inventory.csv",
|
| 100 |
+
"bytes": 61514,
|
| 101 |
+
"sha256": "642fa8c113da75d652e9ef961ef991aa898d03eaf361478bb18aae7402bf985c",
|
| 102 |
+
"media_type": "text/csv",
|
| 103 |
+
"role": "dataset",
|
| 104 |
+
"source_release_path": "release/release-case-inventory.csv",
|
| 105 |
+
"byte_preserved_from_source": true
|
| 106 |
+
},
|
| 107 |
+
{
|
| 108 |
+
"path": "DATA-DICTIONARY.md",
|
| 109 |
+
"bytes": 4306,
|
| 110 |
+
"sha256": "20edca9b378257ef0c15ed39d52c8b72a30f5e81a106b0607ede03ebd2b42702",
|
| 111 |
+
"media_type": "text/markdown",
|
| 112 |
+
"role": "documentation",
|
| 113 |
+
"source_release_path": "release/DATA-DICTIONARY.md",
|
| 114 |
+
"byte_preserved_from_source": true
|
| 115 |
+
},
|
| 116 |
+
{
|
| 117 |
+
"path": "LICENSE-DATA.txt",
|
| 118 |
+
"bytes": 103,
|
| 119 |
+
"sha256": "ef3418854f642053d285ea91f29121c23c95f1b672960da9ddb74f9c87a8fe28",
|
| 120 |
+
"media_type": "text/plain",
|
| 121 |
+
"role": "license",
|
| 122 |
+
"source_release_path": "release/LICENSE-DATA.txt",
|
| 123 |
+
"byte_preserved_from_source": true
|
| 124 |
+
},
|
| 125 |
+
{
|
| 126 |
+
"path": "provenance/calibration.json",
|
| 127 |
+
"bytes": 93886,
|
| 128 |
+
"sha256": "0d8265a9f74bb39d9b1947e90e041dc330dcdb9b445d2d82a27da378f3bd88b2",
|
| 129 |
+
"media_type": "application/json",
|
| 130 |
+
"role": "provenance",
|
| 131 |
+
"source_release_path": "release/calibration.json",
|
| 132 |
+
"byte_preserved_from_source": true
|
| 133 |
+
},
|
| 134 |
+
{
|
| 135 |
+
"path": "provenance/methodology.json",
|
| 136 |
+
"bytes": 6541,
|
| 137 |
+
"sha256": "5b9edaf7898e95ad0d48a86d539c529d6be24ac816d625915fd80a52452987b0",
|
| 138 |
+
"media_type": "application/json",
|
| 139 |
+
"role": "provenance",
|
| 140 |
+
"source_release_path": "release/methodology.json",
|
| 141 |
+
"byte_preserved_from_source": true
|
| 142 |
+
},
|
| 143 |
+
{
|
| 144 |
+
"path": "provenance/pilot-evidence-summary.json",
|
| 145 |
+
"bytes": 591,
|
| 146 |
+
"sha256": "3284bf21cba423b516522ac1aca967334bfe185b4bb101d19c615498e954093c",
|
| 147 |
+
"media_type": "application/json",
|
| 148 |
+
"role": "provenance",
|
| 149 |
+
"source_release_path": "release/pilot-evidence-summary.json",
|
| 150 |
+
"byte_preserved_from_source": true
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"path": "provenance/prices.json",
|
| 154 |
+
"bytes": 575,
|
| 155 |
+
"sha256": "3b36528039a263989c71369984415032e50f3e3bedfdb2778cf05ce53a770289",
|
| 156 |
+
"media_type": "application/json",
|
| 157 |
+
"role": "provenance",
|
| 158 |
+
"source_release_path": "release/prices.json",
|
| 159 |
+
"byte_preserved_from_source": true
|
| 160 |
+
},
|
| 161 |
+
{
|
| 162 |
+
"path": "provenance/protocol.json",
|
| 163 |
+
"bytes": 5017,
|
| 164 |
+
"sha256": "39c68bfc607157011012dc47d59524dcf3d5d7155071e6862c5038410d642c16",
|
| 165 |
+
"media_type": "application/json",
|
| 166 |
+
"role": "provenance",
|
| 167 |
+
"source_release_path": "release/protocol.json",
|
| 168 |
+
"byte_preserved_from_source": true
|
| 169 |
+
},
|
| 170 |
+
{
|
| 171 |
+
"path": "provenance/run-manifest.json",
|
| 172 |
+
"bytes": 1074,
|
| 173 |
+
"sha256": "e2c9b43ab2f70698f07a3147ff68f09befc94467925de6654ebddfc09c5592ad",
|
| 174 |
+
"media_type": "application/json",
|
| 175 |
+
"role": "provenance",
|
| 176 |
+
"source_release_path": "release/run-manifest.json",
|
| 177 |
+
"byte_preserved_from_source": true
|
| 178 |
+
},
|
| 179 |
+
{
|
| 180 |
+
"path": "provenance/summary.json",
|
| 181 |
+
"bytes": 82664,
|
| 182 |
+
"sha256": "c9b4b8576bec4827a36c0560f470174a600447695b5ac243006b16dd1f81d046",
|
| 183 |
+
"media_type": "application/json",
|
| 184 |
+
"role": "provenance",
|
| 185 |
+
"source_release_path": "release/summary.json",
|
| 186 |
+
"byte_preserved_from_source": true
|
| 187 |
+
},
|
| 188 |
+
{
|
| 189 |
+
"path": "provenance/upstream-checksums.sha256",
|
| 190 |
+
"bytes": 7410,
|
| 191 |
+
"sha256": "20436a28c19cf56839d7709c3e25d2a3d6e165d58738bfebf9df966c39b83b76",
|
| 192 |
+
"media_type": "text/plain",
|
| 193 |
+
"role": "provenance",
|
| 194 |
+
"source_release_path": "release/checksums.sha256",
|
| 195 |
+
"byte_preserved_from_source": true
|
| 196 |
+
},
|
| 197 |
+
{
|
| 198 |
+
"path": "provenance/upstream-manifest.json",
|
| 199 |
+
"bytes": 13365,
|
| 200 |
+
"sha256": "5a20178b01c92c4cf6297750026da0677c2d6425364e649df34dd1692dfbcca4",
|
| 201 |
+
"media_type": "application/json",
|
| 202 |
+
"role": "provenance",
|
| 203 |
+
"source_release_path": "release/manifest.json",
|
| 204 |
+
"byte_preserved_from_source": true
|
| 205 |
+
},
|
| 206 |
+
{
|
| 207 |
+
"path": "provenance/upstream-qa-report.json",
|
| 208 |
+
"bytes": 1246,
|
| 209 |
+
"sha256": "753f351382093bea057599866be7665fc2246d0d59dd3075e55315359e3ae9b1",
|
| 210 |
+
"media_type": "application/json",
|
| 211 |
+
"role": "provenance",
|
| 212 |
+
"source_release_path": "release/qa-report.json",
|
| 213 |
+
"byte_preserved_from_source": true
|
| 214 |
+
},
|
| 215 |
+
{
|
| 216 |
+
"path": "provenance/validator-export-manifest.json",
|
| 217 |
+
"bytes": 905,
|
| 218 |
+
"sha256": "adc2f364e269ce63785cbca399a2329a25bba9c938e2b38f476b5ccaa3cb55f7",
|
| 219 |
+
"media_type": "application/json",
|
| 220 |
+
"role": "provenance",
|
| 221 |
+
"source_release_path": "release/validator-export-manifest.json",
|
| 222 |
+
"byte_preserved_from_source": true
|
| 223 |
+
},
|
| 224 |
+
{
|
| 225 |
+
"path": "CITATION.cff",
|
| 226 |
+
"bytes": 819,
|
| 227 |
+
"sha256": "39f0bfe8cca1c41e5fb2a4702cdf68289bfcfcc55135aca68ed21c7deec251f2",
|
| 228 |
+
"media_type": "text/yaml",
|
| 229 |
+
"role": "citation",
|
| 230 |
+
"source_release_path": null,
|
| 231 |
+
"byte_preserved_from_source": false
|
| 232 |
+
},
|
| 233 |
+
{
|
| 234 |
+
"path": "QA.json",
|
| 235 |
+
"bytes": 2760,
|
| 236 |
+
"sha256": "dfa046911fd7778e8288a47483bc5ac4179ee4601743e61706f586ea73ae39f3",
|
| 237 |
+
"media_type": "application/json",
|
| 238 |
+
"role": "bundle_qa",
|
| 239 |
+
"source_release_path": null,
|
| 240 |
+
"byte_preserved_from_source": false
|
| 241 |
+
},
|
| 242 |
+
{
|
| 243 |
+
"path": "README.md",
|
| 244 |
+
"bytes": 12157,
|
| 245 |
+
"sha256": "c16fcbda2a08a472c9df6b74e13dc985dfc118e303ea65761ae900fe20cae68c",
|
| 246 |
+
"media_type": "text/markdown",
|
| 247 |
+
"role": "dataset_card",
|
| 248 |
+
"source_release_path": null,
|
| 249 |
+
"byte_preserved_from_source": false
|
| 250 |
+
}
|
| 251 |
+
]
|
| 252 |
+
}
|
QA.json
ADDED
|
@@ -0,0 +1,83 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"schema_version": "1.0.0",
|
| 3 |
+
"status": "PASS_LOCAL_READY_FOR_UPLOAD",
|
| 4 |
+
"checked_on": "2026-08-07",
|
| 5 |
+
"external_upload_performed": false,
|
| 6 |
+
"source_release_version": "1.0.0",
|
| 7 |
+
"source_release_tag": "v1.0.0",
|
| 8 |
+
"source_release_commit": "06162a211ad9929646d53d60b97c31b758192d09",
|
| 9 |
+
"protocol_id": "deepseek-v4-long-context-retrieval-v1.1.0",
|
| 10 |
+
"doi": "10.5281/zenodo.21838863",
|
| 11 |
+
"doi_url": "https://doi.org/10.5281/zenodo.21838863",
|
| 12 |
+
"trusted_source_archive_sha256": "38337e1213e2cf7ba7de8f21703e11772eddb71326361a66f27f7a8d0c114dcb",
|
| 13 |
+
"expected_final_bundle_file_count": 26,
|
| 14 |
+
"manifest_scope_file_count": 25,
|
| 15 |
+
"checks": {
|
| 16 |
+
"source_files_selected": 22,
|
| 17 |
+
"source_files_byte_identical": 22,
|
| 18 |
+
"source_file_byte_mismatches": 0,
|
| 19 |
+
"readme_utf8_decodes_strictly": true,
|
| 20 |
+
"readme_has_yaml_frontmatter": true,
|
| 21 |
+
"yaml_top_level_fields": [
|
| 22 |
+
"license",
|
| 23 |
+
"language",
|
| 24 |
+
"pretty_name",
|
| 25 |
+
"size_categories",
|
| 26 |
+
"tags",
|
| 27 |
+
"configs"
|
| 28 |
+
],
|
| 29 |
+
"yaml_known_top_level_fields_only": true,
|
| 30 |
+
"yaml_tab_characters": 0,
|
| 31 |
+
"yaml_configs_follow_hugging_face_data_files_shape": true,
|
| 32 |
+
"yaml_license_cc_by_4_0": true,
|
| 33 |
+
"yaml_language_en": true,
|
| 34 |
+
"config_count": 9,
|
| 35 |
+
"default_config": "primary",
|
| 36 |
+
"default_config_count": 1,
|
| 37 |
+
"config_paths_exist": 9,
|
| 38 |
+
"config_paths_missing": 0,
|
| 39 |
+
"config_row_counts_match": true,
|
| 40 |
+
"all_attempts_csv_rows": 344,
|
| 41 |
+
"all_attempts_jsonl_rows": 344,
|
| 42 |
+
"all_attempts_csv_jsonl_row_and_field_parity": true,
|
| 43 |
+
"all_attempts_csv_jsonl_mismatch_rows": 0,
|
| 44 |
+
"primary_rows": 288,
|
| 45 |
+
"pilot_excluded_rows": 20,
|
| 46 |
+
"india_latency_rows": 36,
|
| 47 |
+
"india_matched_pair_rows": 36,
|
| 48 |
+
"failure_rows": 154,
|
| 49 |
+
"model_fingerprint_rows": 8,
|
| 50 |
+
"case_inventory_rows": 344,
|
| 51 |
+
"doi_bound_in_readme": true,
|
| 52 |
+
"doi_url_bound_in_readme": true,
|
| 53 |
+
"doi_bound_in_citation_cff": true,
|
| 54 |
+
"doi_url_bound_in_citation_cff": true,
|
| 55 |
+
"doi_bound_in_manifest_metadata": true,
|
| 56 |
+
"doi_placeholder_occurrences": 0,
|
| 57 |
+
"unexpected_double_underscore_placeholders": 0,
|
| 58 |
+
"private_absolute_path_matches": 0,
|
| 59 |
+
"email_matches": 0,
|
| 60 |
+
"aws_arn_matches": 0,
|
| 61 |
+
"aws_access_key_matches": 0,
|
| 62 |
+
"bearer_token_matches": 0,
|
| 63 |
+
"private_chat_url_matches": 0,
|
| 64 |
+
"wordpress_admin_or_preview_url_matches": 0,
|
| 65 |
+
"arabic_script_matches": 0,
|
| 66 |
+
"manifest_excluded_from_its_own_entries": true
|
| 67 |
+
},
|
| 68 |
+
"config_rows": {
|
| 69 |
+
"primary": 288,
|
| 70 |
+
"all_attempts_csv": 344,
|
| 71 |
+
"all_attempts_jsonl": 344,
|
| 72 |
+
"pilot_excluded": 20,
|
| 73 |
+
"india_latency": 36,
|
| 74 |
+
"india_matched_pairs": 36,
|
| 75 |
+
"failures": 154,
|
| 76 |
+
"model_fingerprints": 8,
|
| 77 |
+
"case_inventory": 344
|
| 78 |
+
},
|
| 79 |
+
"maintenance_requirements": [
|
| 80 |
+
"Recompute MANIFEST.json and rerun the same QA checks after any byte change."
|
| 81 |
+
],
|
| 82 |
+
"blockers": []
|
| 83 |
+
}
|
README.md
CHANGED
|
@@ -1,3 +1,224 @@
|
|
| 1 |
---
|
| 2 |
license: cc-by-4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: cc-by-4.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
pretty_name: DeepSeek 1M Context Benchmark v1.0.0
|
| 6 |
+
size_categories:
|
| 7 |
+
- n<1K
|
| 8 |
+
tags:
|
| 9 |
+
- deepseek
|
| 10 |
+
- long-context
|
| 11 |
+
- model-evaluation
|
| 12 |
+
- api-benchmark
|
| 13 |
+
- reproducibility
|
| 14 |
+
- synthetic-data
|
| 15 |
+
configs:
|
| 16 |
+
- config_name: primary
|
| 17 |
+
default: true
|
| 18 |
+
data_files:
|
| 19 |
+
- split: test
|
| 20 |
+
path: data/primary-cases.csv
|
| 21 |
+
- config_name: all_attempts_csv
|
| 22 |
+
data_files:
|
| 23 |
+
- split: test
|
| 24 |
+
path: data/all-attempts.csv
|
| 25 |
+
- config_name: all_attempts_jsonl
|
| 26 |
+
data_files:
|
| 27 |
+
- split: test
|
| 28 |
+
path: data/all-attempts.jsonl
|
| 29 |
+
- config_name: pilot_excluded
|
| 30 |
+
data_files:
|
| 31 |
+
- split: test
|
| 32 |
+
path: data/pilot-excluded-cases.csv
|
| 33 |
+
- config_name: india_latency
|
| 34 |
+
data_files:
|
| 35 |
+
- split: test
|
| 36 |
+
path: data/india-latency-cases.csv
|
| 37 |
+
- config_name: india_matched_pairs
|
| 38 |
+
data_files:
|
| 39 |
+
- split: test
|
| 40 |
+
path: data/india-matched-pairs.csv
|
| 41 |
+
- config_name: failures
|
| 42 |
+
data_files:
|
| 43 |
+
- split: test
|
| 44 |
+
path: data/failures.csv
|
| 45 |
+
- config_name: model_fingerprints
|
| 46 |
+
data_files:
|
| 47 |
+
- split: test
|
| 48 |
+
path: data/model-fingerprints.csv
|
| 49 |
+
- config_name: case_inventory
|
| 50 |
+
data_files:
|
| 51 |
+
- split: test
|
| 52 |
+
path: data/release-case-inventory.csv
|
| 53 |
---
|
| 54 |
+
|
| 55 |
+
# DeepSeek 1M Context Benchmark
|
| 56 |
+
|
| 57 |
+
This dataset is the publication-safe measurement release for **DeepSeek 1M Context Benchmark: Retrieval Accuracy, Latency, and Cost**, version `v1.0.0`. It contains 344 sanitized terminal API records produced by the frozen protocol `deepseek-v4-long-context-retrieval-v1.1.0` during a bounded run from `2026-08-06T20:17:02.706Z` through `2026-08-07T00:07:44.737Z`.
|
| 58 |
+
|
| 59 |
+
The study compared `deepseek-v4-flash` and `deepseek-v4-pro` on deterministic synthetic English retrieval and synthesis tasks. Provider-counted prompt tiers covered 32K, 128K, 512K, and approximately 950K tokens. The primary matrix varied model, prompt tier, objective task family, target position, and repeat while holding the request and grader contracts fixed.
|
| 60 |
+
|
| 61 |
+
- **Versioned source:** [GitHub release v1.0.0](https://github.com/chatdeepai/deepseek-1m-context-benchmark/releases/tag/v1.0.0)
|
| 62 |
+
- **Reproducible repository:** [chatdeepai/deepseek-1m-context-benchmark](https://github.com/chatdeepai/deepseek-1m-context-benchmark)
|
| 63 |
+
- **Research article:** [DeepSeek 1M Context Benchmark](https://chat-deep.ai/research/deepseek-1m-context-benchmark/)
|
| 64 |
+
- **Archival DOI:** [10.5281/zenodo.21838863](https://doi.org/10.5281/zenodo.21838863)
|
| 65 |
+
|
| 66 |
+
## What is included
|
| 67 |
+
|
| 68 |
+
The 344 terminal rows are divided into three analysis roles that must not be combined indiscriminately:
|
| 69 |
+
|
| 70 |
+
| Role | Rows | Network vantage | Use in primary accuracy |
|
| 71 |
+
|---|---:|---|---|
|
| 72 |
+
| `primary_accuracy` | 288 | AWS `us-east-1` client vantage | Yes |
|
| 73 |
+
| `pilot_excluded` | 20 | Two disclosed pilot vantages | No |
|
| 74 |
+
| `india_latency_validation` | 36 | AWS `ap-south-1` client vantage | No |
|
| 75 |
+
|
| 76 |
+
Only the 288 rows with `analysis_role=primary_accuracy` enter the published primary accuracy denominator. The pilot and India-vantage records are retained for auditability and separate bounded analyses.
|
| 77 |
+
|
| 78 |
+
The release contains sanitized measurements and hashes. It does **not** publish raw prompts, raw request bodies, raw responses, raw SSE payloads, credentials, authorization material, cloud resource identifiers, account data, or private URLs.
|
| 79 |
+
|
| 80 |
+
## Configurations
|
| 81 |
+
|
| 82 |
+
Every configuration uses the Hugging Face `test` split because these are measured benchmark outcomes, not training examples.
|
| 83 |
+
|
| 84 |
+
| Config | File | Rows | Columns | Purpose |
|
| 85 |
+
|---|---|---:|---:|---|
|
| 86 |
+
| `primary` | `data/primary-cases.csv` | 288 | 51 | Default config and only primary accuracy denominator. |
|
| 87 |
+
| `all_attempts_csv` | `data/all-attempts.csv` | 344 | 51 | All sanitized terminal rows in CSV format. |
|
| 88 |
+
| `all_attempts_jsonl` | `data/all-attempts.jsonl` | 344 | 51 | The same 344 terminal rows in JSON Lines format. |
|
| 89 |
+
| `pilot_excluded` | `data/pilot-excluded-cases.csv` | 20 | 51 | Paid pilot calls, excluded from primary accuracy. |
|
| 90 |
+
| `india_latency` | `data/india-latency-cases.csv` | 36 | 51 | Bounded India client-network-vantage validation rows. |
|
| 91 |
+
| `india_matched_pairs` | `data/india-matched-pairs.csv` | 36 | 15 | Matched U.S.-versus-India timing comparisons. |
|
| 92 |
+
| `failures` | `data/failures.csv` | 154 | 15 | Non-exact terminal states across all analysis roles. |
|
| 93 |
+
| `model_fingerprints` | `data/model-fingerprints.csv` | 8 | 8 | Requested/returned model and fingerprint group counts. |
|
| 94 |
+
| `case_inventory` | `data/release-case-inventory.csv` | 344 | 11 | Presentation-sorted inventory of released cases. |
|
| 95 |
+
|
| 96 |
+
`all_attempts_csv` and `all_attempts_jsonl` are alternate serializations of the same records. Do not concatenate them. Empty fields mean that the provider or adapter did not supply a value; no missing values were silently imputed. See [DATA-DICTIONARY.md](DATA-DICTIONARY.md) for the 51-field case schema.
|
| 97 |
+
|
| 98 |
+
## Loading the dataset
|
| 99 |
+
|
| 100 |
+
After publication, replace the example repository identifier with the final Hugging Face dataset ID:
|
| 101 |
+
|
| 102 |
+
```python
|
| 103 |
+
from datasets import load_dataset
|
| 104 |
+
|
| 105 |
+
dataset_id = "replace-with-the-final-hugging-face-dataset-id"
|
| 106 |
+
|
| 107 |
+
# The 288-case primary benchmark matrix.
|
| 108 |
+
primary = load_dataset(dataset_id, "primary", split="test")
|
| 109 |
+
|
| 110 |
+
# All 344 terminal rows in CSV form.
|
| 111 |
+
all_attempts = load_dataset(dataset_id, "all_attempts_csv", split="test")
|
| 112 |
+
|
| 113 |
+
# The bounded India client-network-vantage subset.
|
| 114 |
+
india = load_dataset(dataset_id, "india_latency", split="test")
|
| 115 |
+
```
|
| 116 |
+
|
| 117 |
+
For a local checkout, the underlying files can also be loaded directly with the `csv` or `json` builders.
|
| 118 |
+
|
| 119 |
+
## Benchmark design
|
| 120 |
+
|
| 121 |
+
The frozen 288-case primary matrix is:
|
| 122 |
+
|
| 123 |
+
- 2 exact API model IDs: `deepseek-v4-flash` and `deepseek-v4-pro`;
|
| 124 |
+
- 4 provider-counted prompt tiers: 32K, 128K, 512K, and approximately 950K;
|
| 125 |
+
- 4 objective task families: single-record retrieval, two-record join, latest-version conflict resolution, and scattered event ordering;
|
| 126 |
+
- 3 target-position labels: beginning, middle, and end;
|
| 127 |
+
- 3 deterministic fixture repeats.
|
| 128 |
+
|
| 129 |
+
The benchmark used streaming Chat Completions, non-thinking mode, temperature `0`, JSON Output, a 256-token study output cap, and a strict family-specific grader. Exact match required the expected key set, types, and values with no surrounding prose. The 256-token value is this study's generation cap, not a claim about the provider's maximum supported output.
|
| 130 |
+
|
| 131 |
+
The 20 pilot calls are excluded from all primary denominators. The 36 India-vantage calls form a separate matched client-network-vantage check at the 32K and approximately 950K edges; they do not represent Indian users or identify provider hosting locations.
|
| 132 |
+
|
| 133 |
+
## Selected versioned results
|
| 134 |
+
|
| 135 |
+
These figures describe release `v1.0.0` only:
|
| 136 |
+
|
| 137 |
+
- Primary strict exact match: **152/288 (52.78%)**.
|
| 138 |
+
- V4 Flash strict exact match: **71/144 (49.31%)**.
|
| 139 |
+
- V4 Pro strict exact match: **81/144 (56.25%)**.
|
| 140 |
+
- Primary valid JSON and exact key-set rates: **288/288 (100%)** each.
|
| 141 |
+
- Primary end-to-end stream time: **12,748 ms p50** and **162,295 ms p95** across the complete primary matrix.
|
| 142 |
+
- Dated primary cache-miss cost upper bound: **USD 33.589136**, using the official price snapshot frozen on 2026-08-06 and complete returned usage for 288/288 rows.
|
| 143 |
+
|
| 144 |
+
These results are task-specific. They do not establish a universal model winner, and the dated cost figures are not current price quotes.
|
| 145 |
+
|
| 146 |
+
## Provenance and integrity
|
| 147 |
+
|
| 148 |
+
The public release was built through an explicit allowlist from a validator export that reconciled all 344 planned terminal rows. The trusted publication-safe source archive has SHA-256:
|
| 149 |
+
|
| 150 |
+
```text
|
| 151 |
+
38337e1213e2cf7ba7de8f21703e11772eddb71326361a66f27f7a8d0c114dcb
|
| 152 |
+
```
|
| 153 |
+
|
| 154 |
+
The following files preserve the versioned methodology and release evidence:
|
| 155 |
+
|
| 156 |
+
- [`provenance/protocol.json`](provenance/protocol.json): frozen experimental contract.
|
| 157 |
+
- [`provenance/calibration.json`](provenance/calibration.json): deterministic prompt-tier calibration.
|
| 158 |
+
- [`provenance/methodology.json`](provenance/methodology.json): publication methodology and analysis boundaries.
|
| 159 |
+
- [`provenance/summary.json`](provenance/summary.json): canonical versioned aggregate metrics.
|
| 160 |
+
- [`provenance/prices.json`](provenance/prices.json): dated price snapshot used for reported estimates.
|
| 161 |
+
- [`provenance/pilot-evidence-summary.json`](provenance/pilot-evidence-summary.json): public-safe pilot and preflight disclosure.
|
| 162 |
+
- [`provenance/run-manifest.json`](provenance/run-manifest.json) and [`provenance/validator-export-manifest.json`](provenance/validator-export-manifest.json): frozen run and export evidence.
|
| 163 |
+
- [`provenance/upstream-manifest.json`](provenance/upstream-manifest.json), [`provenance/upstream-qa-report.json`](provenance/upstream-qa-report.json), and [`provenance/upstream-checksums.sha256`](provenance/upstream-checksums.sha256): integrity records for the complete GitHub release. The upstream checksum list also names charts and tables that are intentionally not duplicated in this compact Hugging Face bundle.
|
| 164 |
+
- [`CITATION.cff`](CITATION.cff): machine-readable citation metadata bound to the versioned Zenodo DOI.
|
| 165 |
+
- [`MANIFEST.json`](MANIFEST.json) and [`QA.json`](QA.json): integrity and safety checks for this Hugging Face upload bundle itself.
|
| 166 |
+
|
| 167 |
+
The full fixture generator, grader, publication code, charts, and release tables remain in the versioned GitHub repository.
|
| 168 |
+
|
| 169 |
+
## Intended uses
|
| 170 |
+
|
| 171 |
+
This dataset is suitable for:
|
| 172 |
+
|
| 173 |
+
- auditing the published primary accuracy calculation;
|
| 174 |
+
- reanalyzing accuracy by model, prompt tier, task family, and target position;
|
| 175 |
+
- inspecting transport, streaming, token, cache, and dated cost telemetry;
|
| 176 |
+
- reproducing published tables or creating new visualizations;
|
| 177 |
+
- studying matched outcomes and bounded client-network-vantage latency differences;
|
| 178 |
+
- teaching reproducible benchmark reporting, denominator separation, and release provenance.
|
| 179 |
+
|
| 180 |
+
## Out-of-scope uses
|
| 181 |
+
|
| 182 |
+
This dataset should not be treated as:
|
| 183 |
+
|
| 184 |
+
- a training or fine-tuning corpus;
|
| 185 |
+
- a general intelligence, coding, factuality, safety, multilingual, agent, or web-search benchmark;
|
| 186 |
+
- a representative sample of real user prompts;
|
| 187 |
+
- evidence of provider server location;
|
| 188 |
+
- a recurring reliability or availability monitor;
|
| 189 |
+
- a current pricing source;
|
| 190 |
+
- a source of raw prompts or raw model outputs.
|
| 191 |
+
|
| 192 |
+
## Limitations and potential sources of bias
|
| 193 |
+
|
| 194 |
+
- All benchmark records are deterministic synthetic English data.
|
| 195 |
+
- The strict JSON grader measures narrow exact retrieval and synthesis behavior, not open-ended response quality.
|
| 196 |
+
- The run covers one bounded execution window and two exact model IDs as routed during that window.
|
| 197 |
+
- Target-position semantics differ by task family, so aggregate position comparisons require the detailed methodology.
|
| 198 |
+
- Latency includes the disclosed client network vantage and workload; it should not be generalized to every user, region, or date.
|
| 199 |
+
- The India subset is intentionally small and limited to matched single-record cases at two prompt tiers.
|
| 200 |
+
- Provider pricing, model aliases, routing, and fingerprints can change after this release.
|
| 201 |
+
- Hashes of withheld raw artifacts support provenance but do not make the raw content public.
|
| 202 |
+
|
| 203 |
+
## Licensing and attribution
|
| 204 |
+
|
| 205 |
+
The dataset is licensed under [Creative Commons Attribution 4.0 International](https://creativecommons.org/licenses/by/4.0/). See [LICENSE-DATA.txt](LICENSE-DATA.txt). Attribute **Chat Deep AI**, identify version `v1.0.0`, link the versioned release, and retain material methodology and limitation notices when redistributing or adapting the data.
|
| 206 |
+
|
| 207 |
+
Provider names and trademarks belong to their respective owners. This is an independent benchmark and is not an official DeepSeek dataset.
|
| 208 |
+
|
| 209 |
+
## Citation
|
| 210 |
+
|
| 211 |
+
Use the versioned archival DOI `10.5281/zenodo.21838863`:
|
| 212 |
+
|
| 213 |
+
```bibtex
|
| 214 |
+
@dataset{chat_deep_ai_2026_deepseek_1m_context,
|
| 215 |
+
author = {Chat Deep AI},
|
| 216 |
+
title = {DeepSeek 1M Context Benchmark: Retrieval Accuracy, Latency, and Cost},
|
| 217 |
+
year = {2026},
|
| 218 |
+
version = {1.0.0},
|
| 219 |
+
doi = {10.5281/zenodo.21838863},
|
| 220 |
+
url = {https://github.com/chatdeepai/deepseek-1m-context-benchmark/releases/tag/v1.0.0}
|
| 221 |
+
}
|
| 222 |
+
```
|
| 223 |
+
|
| 224 |
+
The archival record resolves at [https://doi.org/10.5281/zenodo.21838863](https://doi.org/10.5281/zenodo.21838863).
|