CARE-OPD QZBC 4B
CARE-OPD QZBC 4B is a text-only Qwen3.5-4B checkpoint adapted for
evidence-bound structured response generation. The LoRA training adapters have
already been merged, so this repository contains a standalone Transformers
checkpoint.
What the model does
The model accepts chat messages containing an Evidence Packet and produces a
structured GeneratedResponse. CARE-OPD training uses verifier-identified
semantic repair regions, teacher supervision on those regions, retention on
unaffected regions, and repeated recollection of failures from the updated
student. The verifier, teacher, retrieval system, and host Agent are training or
application-side components and are not embedded in this checkpoint.
Intended use
- Research on evidence-grounded and structured response generation.
- Reproduction of the QZBC evaluation contract with the matching prompt,
schema validator, source-boundary checks, and human review.
- Controlled study of model behavior under missing, conflicting, or unreliable
evidence states.
Out-of-scope and safety notice
This model is not a medical device and must not be used as an autonomous
diagnostic, prescribing, dosing, triage, or emergency-response system. It does
not replace qualified professionals. The checkpoint alone does not provide the
host verifier, retrieval policy, source validation, or clinical safeguards.
Outputs can be incorrect, unsupported, incomplete, or overly confident.
The strongest evaluations concern the QZBC contract and controlled evidence
perturbations. They do not establish clinical validity, patient benefit,
general out-of-domain robustness, or end-to-end Agent/tool-routing safety.
Loading
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3repo_id = "YOUR_NAMESPACE/care-opd-qzbc-4b-final"
4tokenizer = AutoTokenizer.from_pretrained(repo_id)
5model = AutoModelForCausalLM.from_pretrained(
6 repo_id,
7 torch_dtype="auto",
8 device_map="auto",
9)
10
11messages = [
12 {"role": "user", "content": "请仅依据给定 Evidence Packet 作答。"},
13]
14prompt = tokenizer.apply_chat_template(
15 messages,
16 tokenize=False,
17 add_generation_prompt=True,
18)
19inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
20outputs = model.generate(**inputs, do_sample=False, max_new_tokens=512)
21print(tokenizer.decode(outputs[0][inputs.input_ids.shape[1]:], skip_special_tokens=True))
The exported configuration records Transformers 5.14.1. Use a Transformers
release that supports the qwen3_5_text architecture.
Technical details
- Architecture:
Qwen3_5ForCausalLM
- Parameters: approximately 4.206B
- Weight dtype: bfloat16
- Upstream model:
Qwen/Qwen3.5-4B
- Adaptation: merged CARE-OPD LoRA checkpoint
- Serialization: sharded safetensors with a standard
model.safetensors.index.json
- Original monolithic weight SHA-256:
87670f85af0db2abf466623ef5fcc2e4f1ac727aa07a2e58c2b15ff246a09fc4
- Formal evaluation model fingerprint:
4cf77e31795163f32fa4e6715d42d06fec88ff98801b154934795b98281ecdcd
The exact immutable revision of the upstream base model was not retained in the
export metadata and is therefore reported as unknown rather than guessed.
Training data and privacy
The checkpoint was trained on QZBC-formatted data and controlled evidence-state
variants. Before making this repository public, the publisher must independently
confirm that all training data are synthetic or properly de-identified, contain
no PHI/PII or secrets, and are authorized for redistribution through model
weights. No raw training examples are included in this release directory.
Evaluation summary
On the family-clean QZBC perturbed track, the formal CARE-OPD checkpoint reached
80.51% task success (2,355/2,925). Public benchmark results primarily support
competitive capability retention rather than universal superiority. These
figures are task-specific and should not be interpreted as clinical accuracy.
Known limitations
- The largest QZBC gain is concentrated in the source-outage condition;
evidence-conflict handling remains a major limitation.
- Host-side verification and source-boundary enforcement remain necessary.
- Evidence is strongest in-domain; broad OOD, multilingual, demographic, and
clinical validation are incomplete.
- The tokenizer includes upstream multimodal special tokens, but this release is
a text checkpoint and does not include a vision/audio encoder or processor.
License and attribution
This derivative checkpoint is distributed under the included Apache License
2.0 text, subject to the publisher's confirmation of all upstream and training
data rights. It is based on Qwen/Qwen3.5-4B and has been modified through
CARE-OPD fine-tuning and adapter merging.