Model page

anemll/DeepSeek-V4-Flash-FP4-FP8-SSD warn

Weights only ship in a format that can run code when loaded. Plus 1 minor note.

downloads 236likes 8license mitupdated 2026-04-29

claims base: deepseek-ai/DeepSeek-V4-Flash · chat template: not found · 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-26pickle 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 (sidecar/layer_000.bin, sidecar/layer_001.bin, sidecar/layer_002.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.

info Pickle static analysis clean

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

low Pickle checkpoint only partially analyzable

Static analysis could not fully parse: sidecar/layer_000.bin: legacy parse stopped after 0 pickle(s): unsupported pickle opcode 0x78 at 0, sidecar/layer_001.bin: legacy parse stopped after 0 pickle(s): unsupported pickle opcode 0x79 at 0, sidecar/layer_002.bin: legacy parse stopped after 0 pickle(s): unsupported pickle opcode 0x78 at 0, +1 more. Unparsed content is unverified.

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.

licensemit
serializationgguf pickle
chat templatenone
claimed lineagedeepseek-ai/DeepSeek-V4-Flash
lineage verifiedunverified — weights battery pending
Full measured fingerprint
libraryllama.cpp
pipelinetext-generation
repo files50 — pickle: sidecar/layer_000.bin, sidecar/layer_001.bin, sidecar/layer_002.bin, sidecar/layer_003.bin, sidecar/layer_004.bin, sidecar/layer_005.bin, sidecar/layer_006.bin, sidecar/layer_007.bin, sidecar/layer_008.bin, sidecar/layer_009.bin
revision3aa5c606ea2a
HF snapshot236 downloads · 8 likes · updated 2026-04-29 · captured 2026-08-25
pickle auditsidecar/layer_000.bin, sidecar/layer_001.bin, sidecar/layer_002.bin, sidecar/layer_003.bin0 standard global(s) · legacy (pre-1.6) format, head-scan only
Battery runs (1)the run trace behind the findings — what each job measured
batterystatusqueueddurationattempts
weightscomplete2026-08-25 21:4915s1
weights run 2026-08-25 measurements
probes rungguf-metadata

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/anemll/DeepSeek-V4-Flash-FP4-FP8-SSD/badge.svg)](https://ingot.tools/models/anemll/DeepSeek-V4-Flash-FP4-FP8-SSD)
Gate it in CI