List a model’s tensors.
safe · secure · no server · works offline · fast
…or just start typing at the cursor.
safe · secure · no server · works offline · fast
…or just start typing at the cursor.
Drop a .gguf and OmniViewer lists every tensor in
the model — its name, its shape, its
quantization type (Q4_K, Q6_K, F16 …) and its on‑disk
size — in a fast virtual-scroll table, with a breakdown of how the whole
file is quantized. It reads the tensor table from the header only, so even a
model with thousands of tensors opens instantly and locally.
The tensor list is the model’s real composition — the same data that yields the parameter count and bits‑per‑weight on the architecture card.
It’s one lens on OmniViewer’s GGUF Viewer — Inspect LLM Model Files: drop a file and every tab is one click away. OmniViewer opens every file format, entirely in your browser — no upload, no server.
No. OmniViewer is a static page with no server-side processing: your .gguf is read directly by your browser, and every tab — architecture, metadata, tensors, tokenizer and stats — runs locally in a Web Worker. The model never leaves your computer.
GGUF keeps all of its metadata and its tensor table at the front of the file, before the weights. OmniViewer reads only that header prefix — a few megabytes at most — and never reads the multi-gigabyte weight body, so a 40 GB model opens as fast as a small one.
A lot, with no description file: the architecture, the parameter count (computed from the tensor shapes), the quantization and effective bits-per-weight, the number of layers, the embedding and context length, the attention type (multi-head, grouped-query or multi-query), the Mixture-of-Experts configuration, the RoPE settings and the embedded tokenizer including its chat template.
Yes. When the header carries an expert count (as Mixtral and other MoE models do), the architecture card shows how many experts the model has and how many are routed per token — for example, 8 experts with 2 active.
Bits-per-weight is the average number of bits each parameter takes on disk — a direct measure of how aggressively the model is quantized. OmniViewer computes it as the file size in bits divided by the parameter count (summed from the tensor shapes), so a Q4_K model comes out around 4.5 bits per weight.
All the common GGML tensor types, including F32, F16 and BF16 and the quantized types Q4_0, Q4_K, Q5_K, Q6_K, Q8_0 and the IQ family. The Tensors tab shows the exact mix, and the Architecture card names the dominant one.
Yes. OmniViewer parses the GGUF structure in pure JavaScript, so it works in any modern browser on Windows, Linux, macOS or a phone. No llama.cpp, no Ollama, no Python, no install.