Views
No views yet
Qwen/Qwen3.5-0.8B
as a full-weight OCPI operator field (not digests-only).| Item | Value |
|---|---|
| Base model | Qwen/Qwen3.5-0.8B |
| Packaging | OCPI schema ocpi.poc.qwen08b.v1 |
| Weights | float16 operator payload (488 tensors) |
| Projection | HOLO-style multi-view digests, 213419 blocks |
| corr_min | ≈ 0.999965 |
| corr_mean | ≈ 0.999981 |
| frac corr ≥ 0.9997 | 100% |
OCPI_FIELD in
adapter_config.json): full base weights re-encoded for carrier/runtime use
with projection ledger fidelity proofs. It is not a LoRA adapter.model.safetensors — full f16 weights (export from OCPI field)config.json, tokenizer files — inference configadapter_config.json — hub-facing finetune metadataocpi_field/ (binary lattice + events)ocpi-qwen is published for:1ocpi-qwen verify --field ocpi_field --lattice
2ocpi-qwen chat --field ocpi_field --prompt "Hello"
3ocpi-qwen export-hf --field ocpi_field --out ./1from transformers import AutoModelForImageTextToText, AutoTokenizer
2import torch
3
4tok = AutoTokenizer.from_pretrained(".", trust_remote_code=True)
5model = AutoModelForImageTextToText.from_pretrained(
6 ".", trust_remote_code=True, torch_dtype=torch.float16
7)
8messages = [{"role": "user", "content": "Hello! Who are you?"}]
9text = tok.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
10inputs = tok(text, return_tensors="pt")
11out = model.generate(**inputs, max_new_tokens=48)
12print(tok.decode(out[0][inputs["input_ids"].shape[-1]:], skip_special_tokens=True))ocpi.poc.qwen08b.v1).