hf2q 0.1.7

Pure Rust CLI for converting HuggingFace models to hardware-optimized formats and serving them over an OpenAI-compatible API on Apple Silicon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
//! Opaque, bounded prediction plans derived from the verified Calibration split.

use sha2::{Digest, Sha256};

use super::render::validate_rendered_dataset;
use super::types::*;

mod verify;

use verify::prediction_plan_sha256;
pub(super) use verify::validate_prediction_plan_limits;
pub use verify::validate_teacher_prediction_plan;

fn prefix_token_sha256(tokens: &[u32]) -> Result<String, CalibrationInputError> {
    let count = u64::try_from(tokens.len()).map_err(|_| {
        CalibrationInputError::InvalidDataset("prediction prefix token count overflow".into())
    })?;
    let mut hasher = Sha256::new();
    hasher.update(b"hf2q-teacher-prefix-token-ids-v1");
    hasher.update(count.to_le_bytes());
    for token in tokens {
        hasher.update(token.to_le_bytes());
    }
    Ok(hex::encode(hasher.finalize()))
}

/// Reverify the three-way split, then derive every teacher-forced and
/// generation-next point from the opaque Calibration token stream.
/// Policy-validation and acceptance-holdout token ids are never retained in
/// the returned capability.
pub(crate) fn build_teacher_prediction_plan(
    expected_partition: &DatasetPartitionManifest,
    calibration_corpus: &VerifiedCalibrationCorpus,
    calibration: &RenderedDataset,
    policy_validation: &RenderedDataset,
    acceptance_holdout: &RenderedDataset,
    limits: TeacherPredictionPlanLimits,
) -> Result<VerifiedCalibrationPredictionPlan, CalibrationInputError> {
    validate_prediction_plan_limits(limits)?;
    let actual_partition = super::partition::verify_dataset_partition(
        calibration,
        policy_validation,
        acceptance_holdout,
    )?;
    if &actual_partition != expected_partition {
        return Err(CalibrationInputError::SplitMismatch);
    }
    let rendered_structured = serde_json::to_vec(&calibration.structured)
        .map_err(|error| CalibrationInputError::Serialization(error.to_string()))?;
    let corpus_structured = serde_json::to_vec(&calibration_corpus.manifest)
        .map_err(|error| CalibrationInputError::Serialization(error.to_string()))?;
    if rendered_structured != corpus_structured {
        return Err(CalibrationInputError::InvalidDataset(
            "rendered Calibration split differs from its owned corpus artifact".into(),
        ));
    }
    validate_rendered_dataset(calibration)?;
    if calibration.manifest.split != DatasetSplit::Calibration
        || calibration.manifest.examples.len() > limits.max_examples
    {
        return Err(CalibrationInputError::InvalidDataset(
            "teacher prediction plan admits only a bounded Calibration split".into(),
        ));
    }

    let mut total_token_count = 0usize;
    let mut total_rendered_utf8_bytes = 0u64;
    let mut points = Vec::new();
    let mut greedy_prompts = Vec::new();
    let mut example_receipts = Vec::with_capacity(calibration.manifest.examples.len());
    let mut retained = Vec::with_capacity(calibration.manifest.examples.len());
    for (receipt, structured) in calibration
        .manifest
        .examples
        .iter()
        .zip(&calibration.structured.examples)
    {
        let tokens = calibration
            .token_ids
            .get(&receipt.stable_id)
            .ok_or_else(|| {
                CalibrationInputError::InvalidDataset(format!(
                    "prediction plan is missing tokens for {}",
                    receipt.stable_id
                ))
            })?;
        if tokens.is_empty() || tokens.len() > limits.max_prefix_tokens {
            return Err(CalibrationInputError::InvalidDataset(format!(
                "prediction prefix for {} is empty or exceeds its bound",
                receipt.stable_id
            )));
        }
        total_token_count = total_token_count.checked_add(tokens.len()).ok_or_else(|| {
            CalibrationInputError::InvalidDataset(
                "teacher prediction total-token count overflow".into(),
            )
        })?;
        if total_token_count > limits.max_total_tokens {
            return Err(CalibrationInputError::InvalidDataset(
                "teacher prediction total-token bound exceeded".into(),
            ));
        }
        let rendered_len = calibration
            .rendered_utf8
            .get(&receipt.stable_id)
            .ok_or_else(|| {
                CalibrationInputError::InvalidDataset(format!(
                    "prediction plan is missing rendered bytes for {}",
                    receipt.stable_id
                ))
            })?
            .len();
        total_rendered_utf8_bytes = total_rendered_utf8_bytes
            .checked_add(u64::try_from(rendered_len).map_err(|_| {
                CalibrationInputError::InvalidDataset(
                    "rendered Calibration byte count is not representable".into(),
                )
            })?)
            .ok_or_else(|| {
                CalibrationInputError::InvalidDataset(
                    "rendered Calibration byte count overflow".into(),
                )
            })?;
        if total_rendered_utf8_bytes > limits.max_rendered_utf8_bytes {
            return Err(CalibrationInputError::InvalidDataset(
                "rendered Calibration byte bound exceeded".into(),
            ));
        }

        let mut point_ordinals = Vec::new();
        let mut greedy_prompt_ordinal = None;
        match structured.render_mode {
            RenderMode::CompletedAssistantTranscript => {
                for range in &receipt.scoring_ranges {
                    for target_token_index in range.start..range.end {
                        if target_token_index == 0 || target_token_index >= tokens.len() {
                            return Err(CalibrationInputError::InvalidDataset(format!(
                                "teacher-forced alignment is invalid for {}",
                                receipt.stable_id
                            )));
                        }
                        let point_ordinal = points.len();
                        if point_ordinal >= limits.max_prediction_points {
                            return Err(CalibrationInputError::InvalidDataset(
                                "teacher prediction point bound exceeded".into(),
                            ));
                        }
                        points.push(TeacherPredictionPointReceipt {
                            point_ordinal,
                            stable_id: receipt.stable_id.clone(),
                            kind: TeacherPredictionPointKind::TeacherForced {
                                target_token_index,
                                target_token_id: tokens[target_token_index],
                            },
                            prefix_token_count: target_token_index,
                            prefix_token_ids_sha256: prefix_token_sha256(
                                &tokens[..target_token_index],
                            )?,
                        });
                        point_ordinals.push(point_ordinal);
                    }
                }
            }
            RenderMode::GenerationPrompt => {
                let point_ordinal = points.len();
                if point_ordinal >= limits.max_prediction_points
                    || greedy_prompts.len() >= limits.max_generation_prompts
                {
                    return Err(CalibrationInputError::InvalidDataset(
                        "teacher prediction point or greedy-prompt bound exceeded".into(),
                    ));
                }
                let prefix_token_ids_sha256 = prefix_token_sha256(tokens)?;
                points.push(TeacherPredictionPointReceipt {
                    point_ordinal,
                    stable_id: receipt.stable_id.clone(),
                    kind: TeacherPredictionPointKind::GenerationNext,
                    prefix_token_count: tokens.len(),
                    prefix_token_ids_sha256: prefix_token_ids_sha256.clone(),
                });
                point_ordinals.push(point_ordinal);
                greedy_prompt_ordinal = Some(greedy_prompts.len());
                greedy_prompts.push(TeacherGreedyPromptReceipt {
                    stable_id: receipt.stable_id.clone(),
                    prefix_token_count: tokens.len(),
                    prefix_token_ids_sha256,
                });
            }
        }
        if points.len() > limits.max_prediction_points
            || greedy_prompts.len() > limits.max_generation_prompts
        {
            return Err(CalibrationInputError::InvalidDataset(
                "teacher prediction point or greedy-prompt bound exceeded".into(),
            ));
        }
        example_receipts.push(TeacherPredictionExampleReceipt {
            stable_id: receipt.stable_id.clone(),
            render_mode: structured.render_mode,
            token_count: tokens.len(),
            token_ids_sha256: receipt.token_ids_sha256.clone(),
        });
        retained.push(TeacherPredictionExample {
            token_ids: tokens.clone(),
            point_ordinals,
            greedy_prompt_ordinal,
        });
    }
    if points.is_empty() || greedy_prompts.is_empty() {
        return Err(CalibrationInputError::InvalidDataset(
            "teacher prediction plan requires scored transcript points and a generation prompt"
                .into(),
        ));
    }

    let mut manifest = TeacherPredictionPlanManifest {
        schema_version: TEACHER_PREDICTION_PLAN_SCHEMA_VERSION,
        source: calibration.manifest.source.clone(),
        verified_source_manifest_sha256: calibration
            .manifest
            .verified_source_manifest_sha256
            .clone(),
        dataset_partition_manifest_sha256: actual_partition.manifest_sha256,
        calibration_corpus_artifact_sha256: calibration_corpus.artifact.sha256.clone(),
        calibration_manifest_sha256: calibration.manifest.manifest_sha256.clone(),
        rendered_token_stream_sha256: calibration.manifest.token_id_stream_sha256.clone(),
        limits,
        total_example_count: retained.len(),
        total_token_count,
        total_rendered_utf8_bytes,
        examples: example_receipts,
        prediction_points: points,
        greedy_prompts,
        manifest_sha256: String::new(),
    };
    manifest.manifest_sha256 = prediction_plan_sha256(&manifest)?;
    validate_teacher_prediction_plan(&manifest)?;
    Ok(VerifiedCalibrationPredictionPlan {
        manifest,
        examples: retained,
    })
}

#[cfg(test)]
pub(super) fn prefix_token_sha256_for_test(tokens: &[u32]) -> String {
    prefix_token_sha256(tokens).expect("small token prefix is representable")
}

#[cfg(test)]
pub(super) fn resign_prediction_plan_for_test(manifest: &mut TeacherPredictionPlanManifest) {
    manifest.manifest_sha256 = prediction_plan_sha256(manifest).unwrap();
}

#[cfg(test)]
pub(crate) fn prediction_plan_for_test() -> VerifiedCalibrationPredictionPlan {
    let limits = TeacherPredictionPlanLimits {
        max_examples: 2,
        max_total_tokens: 64,
        max_rendered_utf8_bytes: 1_024,
        max_prediction_points: 3,
        max_prefix_tokens: 32,
        max_generation_prompts: 1,
    };
    let transcript_tokens = (0..18).map(|token| token % 4).collect::<Vec<_>>();
    let prompt_tokens = (0..16).map(|token| (token + 2) % 4).collect::<Vec<_>>();
    let points = vec![
        TeacherPredictionPointReceipt {
            point_ordinal: 0,
            stable_id: "completed".into(),
            kind: TeacherPredictionPointKind::TeacherForced {
                target_token_index: 16,
                target_token_id: transcript_tokens[16],
            },
            prefix_token_count: 16,
            prefix_token_ids_sha256: prefix_token_sha256(&transcript_tokens[..16]).unwrap(),
        },
        TeacherPredictionPointReceipt {
            point_ordinal: 1,
            stable_id: "completed".into(),
            kind: TeacherPredictionPointKind::TeacherForced {
                target_token_index: 17,
                target_token_id: transcript_tokens[17],
            },
            prefix_token_count: 17,
            prefix_token_ids_sha256: prefix_token_sha256(&transcript_tokens[..17]).unwrap(),
        },
        TeacherPredictionPointReceipt {
            point_ordinal: 2,
            stable_id: "generation".into(),
            kind: TeacherPredictionPointKind::GenerationNext,
            prefix_token_count: prompt_tokens.len(),
            prefix_token_ids_sha256: prefix_token_sha256(&prompt_tokens).unwrap(),
        },
    ];
    let greedy_prompts = vec![TeacherGreedyPromptReceipt {
        stable_id: "generation".into(),
        prefix_token_count: prompt_tokens.len(),
        prefix_token_ids_sha256: prefix_token_sha256(&prompt_tokens).unwrap(),
    }];
    let examples = vec![
        TeacherPredictionExampleReceipt {
            stable_id: "completed".into(),
            render_mode: RenderMode::CompletedAssistantTranscript,
            token_count: transcript_tokens.len(),
            token_ids_sha256: hex::encode(Sha256::digest(
                super::render::framed_token_bytes_for_test("completed", &transcript_tokens),
            )),
        },
        TeacherPredictionExampleReceipt {
            stable_id: "generation".into(),
            render_mode: RenderMode::GenerationPrompt,
            token_count: prompt_tokens.len(),
            token_ids_sha256: hex::encode(Sha256::digest(
                super::render::framed_token_bytes_for_test("generation", &prompt_tokens),
            )),
        },
    ];
    let mut manifest = TeacherPredictionPlanManifest {
        schema_version: TEACHER_PREDICTION_PLAN_SCHEMA_VERSION,
        source: crate::intelligence::measured_auto_quant::SourceIdentity {
            model_id: "Qwen/Qwen3.8-27B".into(),
            revision: "test-revision".into(),
            config_sha256: "1".repeat(64),
            tensor_bundle_sha256: "2".repeat(64),
            tokenizer_bundle_sha256: "3".repeat(64),
            chat_template_sha256: "4".repeat(64),
        },
        verified_source_manifest_sha256: "5".repeat(64),
        dataset_partition_manifest_sha256: "a".repeat(64),
        calibration_corpus_artifact_sha256: "f".repeat(64),
        calibration_manifest_sha256: "b".repeat(64),
        rendered_token_stream_sha256: "c".repeat(64),
        limits,
        total_example_count: 2,
        total_token_count: transcript_tokens.len() + prompt_tokens.len(),
        total_rendered_utf8_bytes: 32,
        examples,
        prediction_points: points,
        greedy_prompts,
        manifest_sha256: String::new(),
    };
    manifest.manifest_sha256 = prediction_plan_sha256(&manifest).unwrap();
    validate_teacher_prediction_plan(&manifest).unwrap();
    VerifiedCalibrationPredictionPlan {
        manifest,
        examples: vec![
            TeacherPredictionExample {
                token_ids: transcript_tokens,
                point_ordinals: vec![0, 1],
                greedy_prompt_ordinal: None,
            },
            TeacherPredictionExample {
                token_ids: prompt_tokens,
                point_ordinals: vec![2],
                greedy_prompt_ordinal: Some(0),
            },
        ],
    }
}

#[cfg(test)]
pub(crate) fn prediction_plan_for_test_bound(
    source: crate::intelligence::measured_auto_quant::SourceIdentity,
    verified_source_manifest_sha256: String,
) -> VerifiedCalibrationPredictionPlan {
    let mut plan = prediction_plan_for_test();
    plan.manifest.source = source;
    plan.manifest.verified_source_manifest_sha256 = verified_source_manifest_sha256;
    plan.manifest.manifest_sha256 = prediction_plan_sha256(&plan.manifest).unwrap();
    validate_teacher_prediction_plan(&plan.manifest).unwrap();
    plan
}

#[cfg(test)]
pub(crate) fn prediction_plan_for_test_bound_with_first_prefix(
    source: crate::intelligence::measured_auto_quant::SourceIdentity,
    verified_source_manifest_sha256: String,
    first_prefix_token_count: usize,
) -> VerifiedCalibrationPredictionPlan {
    let mut plan = prediction_plan_for_test_bound(source, verified_source_manifest_sha256);
    let tokens = &plan.examples[0].token_ids;
    plan.manifest.prediction_points[0].kind = TeacherPredictionPointKind::TeacherForced {
        target_token_index: first_prefix_token_count,
        target_token_id: tokens[first_prefix_token_count],
    };
    plan.manifest.prediction_points[0].prefix_token_count = first_prefix_token_count;
    plan.manifest.prediction_points[0].prefix_token_ids_sha256 =
        prefix_token_sha256(&tokens[..first_prefix_token_count]).unwrap();
    plan.manifest.manifest_sha256 = prediction_plan_sha256(&plan.manifest).unwrap();
    validate_teacher_prediction_plan(&plan.manifest).unwrap();
    plan
}

#[cfg(test)]
pub(crate) fn prediction_plan_for_test_bound_with_gap(
    source: crate::intelligence::measured_auto_quant::SourceIdentity,
    verified_source_manifest_sha256: String,
) -> VerifiedCalibrationPredictionPlan {
    let mut plan = prediction_plan_for_test_bound(source, verified_source_manifest_sha256);
    let tokens = &mut plan.examples[0].token_ids;
    tokens.push(2);
    let last_index = tokens.len() - 1;
    plan.manifest.examples[0].token_count = tokens.len();
    plan.manifest.total_token_count += 1;
    plan.manifest.prediction_points[1].kind = TeacherPredictionPointKind::TeacherForced {
        target_token_index: last_index,
        target_token_id: tokens[last_index],
    };
    plan.manifest.prediction_points[1].prefix_token_count = last_index;
    plan.manifest.prediction_points[1].prefix_token_ids_sha256 =
        prefix_token_sha256(&tokens[..last_index]).unwrap();
    plan.manifest.manifest_sha256 = prediction_plan_sha256(&plan.manifest).unwrap();
    validate_teacher_prediction_plan(&plan.manifest).unwrap();
    plan
}