Model page

jhangmez/CHATPRG-v1.2-Phi-3.5-mini-instruct-GGUF warn

Weights only ship in a format that can run code when loaded; Chat template ends turns with <|end|>, which is not a configured stop token; its license differs from its base model's. Plus 3 more issues.

downloads 237likes 3license apache-2.0arch llamaupdated 2024-09-01

claims base: unsloth/phi-3.5-mini-instruct-bnb-4bit · chat template: present · view on Hugging Face ↗

Scan coverageStatic battery2026-08-26Weights battery2026-08-26Behavioral batterynot rundetails
BatteryLooks atStatus
Static batteryMetadata & packagingcomplete 2026-08-26
Weights batteryWeights forensics — no GPU, no downloadcomplete 2026-08-2632,064-token embedding scanned · 558 undertrained · lineage consistent · pickle audit clean
Behavioral batteryLive-inference differentialsnot run

Ingot runs three batteries against a model. What each one checks →

Findings

Scanned 2026-08-26 · published from a community scan.

medium Pickle-serialized weights, no safetensors

Weights ship only as pickle-based files (pytorch_model-00001-of-00002.bin, pytorch_model-00002-of-00002.bin). Loading pickle executes arbitrary code from the file — prefer a safetensors release or load in a sandbox.

How to fix

Convert the weights to safetensors before loading them anywhere that matters.

  1. Do not load the pickle files in-process — pickle deserialization executes arbitrary code from the file.
  2. Convert locally in a sandbox: `pip install safetensors` and use `safetensors.torch.save_file` on a state dict loaded with `torch.load(..., weights_only=True)` (refuses most code-execution payloads), or use Hugging Face's `convert.py` space/script.
  3. Pin the exact revision hash you converted from, and load only your converted safetensors artifact from then on.

low Padding token is the EOS token

The pad token and the (only) EOS token are the same. Fine-tuning frameworks mask pad positions out of the loss, so training on this checkpoint teaches the model to never emit EOS — the Phi-4 / Qwen 2.5 / DeepSeek R1 infinite-generation bug. Safe to serve, hazardous to fine-tune; repoint pad_token at a dedicated token first.

How to fixingot patch

Align the stop-token declarations — a pure metadata fix to `generation_config.json` (and `config.json`).

  1. Identify the token the chat template actually ends assistant turns with (e.g. `<|eot_id|>`, `<end_of_turn>`, `<|im_end|>`) and make sure its id is in `generation_config.json`'s `eos_token_id` list.
  2. Keep `config.json`'s `eos_token_id` consistent with (or a subset of) `generation_config.json`'s — runtimes differ in which file they read.
  3. For the pad-equals-EOS hazard: repoint `pad_token` at a dedicated padding token before fine-tuning; serving is unaffected.
  4. Until the repo is fixed, pass explicit stop tokens to your serving stack (e.g. vLLM `stop_token_ids`, llama.cpp `--override-kv tokenizer.ggml.eos_token_id`).

medium Chat template ends turns with <|end|>, which is not a configured stop token

The chat template terminates assistant turns with <|end|>, but the effective EOS set (config.json ∪ generation_config.json = [32000] → ["<|endoftext|>"]) never stops on it. Config-honoring runtimes generate past the terminator until the token budget is exhausted — runaway cost and self-continuing fake turns. Add <|end|>'s id to generation_config.json's eos_token_id.

How to fixingot patch

Align the stop-token declarations — a pure metadata fix to `generation_config.json` (and `config.json`).

  1. Identify the token the chat template actually ends assistant turns with (e.g. `<|eot_id|>`, `<end_of_turn>`, `<|im_end|>`) and make sure its id is in `generation_config.json`'s `eos_token_id` list.
  2. Keep `config.json`'s `eos_token_id` consistent with (or a subset of) `generation_config.json`'s — runtimes differ in which file they read.
  3. For the pad-equals-EOS hazard: repoint `pad_token` at a dedicated padding token before fine-tuning; serving is unaffected.
  4. Until the repo is fixed, pass explicit stop tokens to your serving stack (e.g. vLLM `stop_token_ids`, llama.cpp `--override-kv tokenizer.ggml.eos_token_id`).

medium License differs from claimed parent (apache-2.0 vs mit)

This model declares apache-2.0 while its claimed base unsloth/phi-3.5-mini-instruct-bnb-4bit declares mit. Verify the re-license is permitted before commercial use.

How to fix

Verify the re-license is actually permitted before relying on it.

  1. Read the parent's license for derivative-work and re-licensing terms — many open-weight licenses (e.g. Llama-family) do not permit arbitrary re-licensing.
  2. If the re-license is not permitted, the parent's terms govern your use regardless of what this repo declares.

medium Chat template differs from claimed parent

The chat template does not match unsloth/phi-3.5-mini-instruct-bnb-4bit's. Template drift silently changes model behavior even when weights are identical — 37% of drifted derivatives in our census left it undisclosed. Diff the templates before deploying.

How to fixingot patch

Restore the parent's chat template in `tokenizer_config.json` — a pure metadata fix.

  1. Run `ingot patch <owner/model>` — the patch manifest carries the parent's template and applies it to a local copy's `tokenizer_config.json`.
  2. Or fix by hand: copy the `chat_template` value from the parent repo's `tokenizer_config.json` into this model's, and pin your serving stack to that file.
  3. If the drift was intentional (the author retrained on a new template), confirm that in the model card before "fixing" it — restoring the parent template on retrained weights changes behavior too.

medium Undertrained (glitch) token surface in vocabulary

Embedding-norm scan flagged 558 undertrained tokens (norm < 0.3× the vocabulary median of 2.152), including 95 plain-ASCII strings that can appear in ordinary input as identifiers — e.g. "<0xFC>", "<0xFB>", "<0xFF>", "<0xFD>", "<0xFA>", "<0xFE>", "Mediabestanden", "autorytatywna". In models where this class was tested behaviorally, such tokens silently rewrote user input into confident, schema-valid, wrong output. These are candidates from the weights alone; behavioral confirmation requires the behavioral battery.

How to fixruntime guardweight-level

Keep the affected token strings out of the model's input — the scan-derived runtime guard carries this model's exact blocklist.

  1. Fetch this model's guard artifact (`/api/v1/guard/<owner>/<model>`): the confirmed corrupting tokens and the low-norm candidate list, derived from the published scan.
  2. Screen inbound text with it (the `@ingotai/guard` package is a reference implementation) and route flagged records to a different model or human review — verbatim-copy tasks on flagged strings are the failure mode.
  3. The underlying cause is undertrained embeddings in the weights; a true fix is weight-level (continued pretraining on the affected tokens) — that is not a patch, it's a training job.

info Pickle static analysis clean

Opcode-level parse of pytorch_model-00001-of-00002.bin, pytorch_model-00002-of-00002.bin (no code executed) found only standard serialization globals (3 distinct, all torch/collections/numpy). Pickle remains an executable format — this verifies the current bytes, not future uploads; prefer a safetensors release.

info Weights consistent with claimed parent unsloth/phi-3.5-mini-instruct-bnb-4bit

Mean cosine similarity of 64 sampled token-embedding rows against unsloth/phi-3.5-mini-instruct-bnb-4bit is 1.000 — the weights plausibly descend from the declared base (relation: unspecified).

How to fix

Fix or verify the `base_model` declaration so lineage checks can run.

  1. If you own the repo: correct the `base_model` field in the model card metadata to the real, public parent.
  2. If you don't: identify the true parent (config architecture + weight shapes narrow it fast) and re-scan with that lineage in mind.

medium GGUF template ends turns with <|end|> but the file stops on <|endoftext|>

The embedded chat template terminates assistant turns with <|end|>, while tokenizer.ggml.eos_token_id points at <|endoftext|> (32000). llama.cpp-family runtimes stop on the metadata EOS, so generation runs past the terminator until the token budget is exhausted. Fix the eos_token_id in the GGUF metadata (gguf-py, no requant needed).

How to fixingot patch

Fix the GGUF's embedded metadata in place with gguf-py — template, EOS id, and pre-tokenizer are all metadata-editable; no requant needed.

  1. Template or EOS drift: copy the current values from the source repo and write them into the GGUF (`gguf_set_metadata.py` / gguf-py) — the tensor data is untouched.
  2. Missing pre-tokenizer type: reconvert with a current `convert_hf_to_gguf.py`, or set the correct `tokenizer.ggml.pre` for the architecture.
  3. Until the file is fixed, override at load time: llama.cpp `--override-kv tokenizer.ggml.eos_token_id=int:<id>` and `--chat-template-file <fixed.jinja>`.
  4. Prefer a re-upload from the quantizer once the source repo's fix lands — already-downloaded GGUFs never pick up upstream fixes on their own.

low GGUF chat template differs from the source repo's

The template embedded at conversion time (782 chars) no longer matches the source repo's current template (430 chars). Source-repo template fixes never propagate into converted GGUFs — 43% of popular GGUF repos drift this way, including quants that resurrect already-fixed launch bugs. Diff the two before deploying; re-embed with gguf-py if the source's fix matters.

How to fixingot patch

Fix the GGUF's embedded metadata in place with gguf-py — template, EOS id, and pre-tokenizer are all metadata-editable; no requant needed.

  1. Template or EOS drift: copy the current values from the source repo and write them into the GGUF (`gguf_set_metadata.py` / gguf-py) — the tensor data is untouched.
  2. Missing pre-tokenizer type: reconvert with a current `convert_hf_to_gguf.py`, or set the correct `tokenizer.ggml.pre` for the architecture.
  3. Until the file is fixed, override at load time: llama.cpp `--override-kv tokenizer.ggml.eos_token_id=int:<id>` and `--chat-template-file <fixed.jinja>`.
  4. Prefer a re-upload from the quantizer once the source repo's fix lands — already-downloaded GGUFs never pick up upstream fixes on their own.

Fix it

Some findings are metadata-level and patchable — apply the fixes to your local copy (your weights never leave your machine):

npx @ingotai/scan patch jhangmez/CHATPRG-v1.2-Phi-3.5-mini-instruct-GGUF

Remediation guidance addresses the documented findings only. It is evidence-driven repair, not a safety certification of the model.

Fingerprint

The durable profile of this model: measured weights-and-metadata facts, rebuilt on every scan and battery run. Updated 2026-08-26.

architecturellama
vocabulary32,064 tokens
licenseapache-2.0
serializationgguf pickle
chat templatepresent · sha256:e8cc907d81c64b59
claimed lineageunsloth/phi-3.5-mini-instruct-bnb-4bit
lineage verifiedconsistent vs unsloth/phi-3.5-mini-instruct-bnb-4bit — embedding-row cosine 1.000
glitch-token surface558 undertrained candidates, 95 plain-ASCII
Full measured fingerprint
librarytransformers
pipelinetext-generation
repo files17 — pickle: pytorch_model-00001-of-00002.bin, pytorch_model-00002-of-00002.bin
revision951ff8315c1d
HF snapshot237 downloads · 3 likes · updated 2024-09-01 · captured 2026-08-25
pickle auditpytorch_model-00001-of-00002.bin, pytorch_model-00002-of-00002.bin3 standard global(s)
embedding tensormodel.embed_tokens.weight · F16 · 32,064×3072
embedding normsmedian 2.1518 · mean 2.0424
lineage checkconsistent — cosine 1 over 64 sampled rows vs unsloth/phi-3.5-mini-instruct-bnb-4bit
glitch-token samples"<0xFC>", "<0xFB>", "<0xFF>", "<0xFD>", "<0xFA>", "<0xFE>", "Mediabestanden", "autorytatywna", "Webachiv", "regnigaste", "tatywna", "Jegyzetek"
Battery runs (1)the run trace behind the findings — what each job measured
batterystatusqueueddurationattempts
weightscomplete2026-08-25 21:4978s1
weights run 2026-08-25 measurements
probes runglitch-norm-scan, zero-template-token-scan, pickle-static-analysis, lineage-norm-correlation, gguf-metadata
embedding tensormodel.embed_tokens.weight · F16 · 32,064×3072
glitch surface558 undertrained, 95 plain-ASCII
lineage checkconsistent — cosine 1 over 64 rows vs unsloth/phi-3.5-mini-instruct-bnb-4bit

Verdict badge

Ship the verdict in your README — it always shows the latest published analysis:

Ingot verdict: warn

[![Ingot scan](https://ingot.tools/api/v1/models/jhangmez/CHATPRG-v1.2-Phi-3.5-mini-instruct-GGUF/badge.svg)](https://ingot.tools/models/jhangmez/CHATPRG-v1.2-Phi-3.5-mini-instruct-GGUF)
Gate it in CI