ELSEIF
Your brief EB
484 stories from 211 feeds 1257 clusters Refreshed 16 minutes ago next pull 16:16

TECH Signal 380

gzip can generate text by compressing and scoring continuations

Illustration only Photo by Bartosz Kwitkowski on Unsplash

gzip can generate text by scoring continuations based on compressed length.

WHY IT MATTERS

The approach demonstrates that a standard compression tool can perform language modeling without any learned parameters, showing a direct link between compression and prediction.

Written by elseif from the cluster below · every claim links back to a source

The three things worth knowing

01

gzip uses DEFLATE to score continuations by compressed length

02

Beam search is required to overcome quantization noise in byte scoring

03

Only recent generated bytes influence scoring to avoid verbatim loops

THE READ

What the cluster adds up to.

ORIGINAL ANALYSIS

The method treats compression as prediction, using the compressed size of context plus a candidate to rank possible next bytes.

Adopting this technique requires integrating a compressor into the generation loop and managing the sliding window of recent tokens.

The approach stops working when the context exceeds the compressor's window size, limiting the effective history length.

Written by elseif from the cluster below · checked for specifics the sources never contained

THE CLUSTER

Same story, 1 feed.

ORDERED BY FIRST SEEN
nathan.rs via Hacker News Can gzip be a language model? Open ↗