Skip to content
Novus Examples
gz21.5 KB

GZ — Gzipped Float32 GLB

The float32 GLB from this group as a deterministic gzip stream (no embedded filename, mtime 0) — what a CDN actually sends when a viewer advertises `Accept-Encoding: gzip`. It compresses to 29.2% of its source against 55.6% for the quantized twin, which is the point of shipping both: quantisation halves the file on disk and then gives most of that back over the wire.

gz

Single-file gzip (deflate) stream

21.5 KB
Contains
float32.glb
Codec
gzip (deflate)
Uncompressed
73.5 KB
Compressed
21.5 KB
Compressed to 29.2% of original70.8% saved

A container-free gzip (deflate) stream — decompress it to recover float32.glb. The bytes are the compressed data, so there is no inline content preview.

Specifications

Codec
gzip (deflate)
Original Name
float32.glb
Original Bytes
75256
Gzip Level
9
Mtime
0 (deterministic)
Embedded Filename
false
Ratio Percent
29.2
Sibling Ratio Percent
55.6

Testing contract

Expected to pass
Scenario
Decompress and diff against float32.glb, then compare the transferred size against the quantized twin's gzip.
Expected result
The stream decompresses byte-for-byte to float32.glb and lands at 29.2% of it; measured over the wire the two twins are far closer than their uncompressed sizes suggest, so quantisation must be justified by GPU memory rather than by download size.

What is a .gz file?

GZ is a file compressed with gzip, using the DEFLATE algorithm within a simple single-stream container that stores one compressed file plus a small header and checksum. It compresses a single stream rather than bundling multiple files. It is ubiquitous for compressing logs, tarballs, and HTTP responses.

How to use this file

Use an example GZ to test gzip decompression, streaming inflate, checksum verification, and pipelines that transparently handle gzip-encoded content.

How to use this file for testing

“GZ — Gzipped Float32 GLB” is a deterministic Novus Examples fixture for Conversion testing, Performance testing. The same content exported across many formats and linked as a group, so you can convert one and diff against the expected twin.

Documented properties for this file: GZ · 22,003 bytes. Compare results against paired or grouped companions on this page when present (clean↔damaged, searchable↔scanned, or format twins) so scores stay reproducible across runs.

Download the file once, keep the path stable in CI or local scripts, and treat the spec table as the contract: dimensions, seeds, field lists, and roles are intentional. Corrupt or invalid samples are labelled as such — expect parsers to fail loudly rather than silently accept them.

3D and CAD fixtures carry one small, documented solid or scene. Convert and inspect against the known geometry, units, and structure; format twins let you diff interchange fidelity, and the 3D viewer previews the actual mesh.

Code examples

gunzip -k float32.glb.gz     # keep original
zcat float32.glb.gz | head

Generated by generation/models_p7.py. Free for any use, no attribution required — license.