Skip to main content

Delta compression for LLM fine-tunes - lossless or LoRA-equivalent SVD compression

Project description

∴ Sparse

Delta Compression for Fine-tuned Models and Datasets

Compress your 14GB fine-tune to 1.4GB (lossless) or 50MB (LoRA-equivalent). Reconstruct in 4 seconds.

Verified: GPT-2 compression → reconstruction → identical inference output

License: Apache 2.0 Python 3.9+ PyTorch Rust

Quick StartHow It WorksCLIPython API


What Sparse Does

Sparse compresses fine-tuned models and derivative datasets as deltas from their base versions.

📦 Model Delta Compression

Mode Size (7B) Quality Use Case
Lossless ~1.4 GB 100% When quality matters
SVD (LoRA-equiv) ~50 MB ~95-99% When size matters

Reconstruction: 4 seconds • Works on ANY existing fine-tune

Use cases:

  • Compress your existing full fine-tunes (trained without LoRA)
  • Share smaller files with collaborators
  • Save disk space storing multiple fine-tunes
  • Works with ANY training method: full fine-tune, RLHF, merges

📊 Dataset Delta Compression

Metric Value
Savings 60-80% typical
Use case Derivative datasets (translations, versions, augmentations)

Quick Start

pip install sparse-llm

Compress a Fine-tune

# Lossless compression (~1.4GB for 7B model)
sparse compress meta-llama/Llama-2-7b-hf ./my-finetune -o ./my-delta

# OR: Lossy compression (~50MB, LoRA-equivalent quality)
sparse compress-lossy meta-llama/Llama-2-7b-hf ./my-finetune -o ./my-delta --rank 16

Reconstruct from Delta

# From lossless delta
sparse reconstruct meta-llama/Llama-2-7b-hf ./my-delta -o ./reconstructed-model

# From lossy delta
sparse reconstruct-lossy meta-llama/Llama-2-7b-hf ./my-delta -o ./reconstructed-model

Dataset Delta

# Compress derivative dataset
sparse dataset-compress squad squad_v2 -o ./squad_v2_delta

# Reconstruct
sparse dataset-reconstruct ./squad_v2_delta

How It Works

Fine-tuned Model (14GB)  -  Base Model (14GB)  =  Delta
                                    ↓
                    Lossless: 1.4GB  |  SVD: 50MB
                                    ↓
                         Reconstruct: Base + Delta

Two compression modes:

Mode How It Works Size Quality
Lossless Sparse + INT8 encoding ~10% of original 100%
SVD Low-rank approximation (like LoRA) ~0.4% of original ~95-99%

CLI Reference

# Lossless compression (100% quality)
sparse compress <base> <finetune> -o <output>
sparse reconstruct <base> <delta> [-o <output>]

# Lossy compression (~50MB, LoRA-equivalent quality)
sparse compress-lossy <base> <finetune> -o <output> [--rank 16]
sparse reconstruct-lossy <base> <delta> [-o <output>]

# Dataset commands
sparse dataset-compress <base> <derivative> -o <output>
sparse dataset-reconstruct <delta_dir>
sparse dataset-estimate <base> <derivative>

# Info
sparse info <path>

Python API

from core import compress_delta, reconstruct_from_delta
from core import compress_delta_svd_full, reconstruct_from_svd_delta

# Lossless compression
manifest = compress_delta(
    base_model_id="meta-llama/Llama-2-7b-hf",
    finetune_model_id="./my-finetune",
    output_path="./my-delta"
)
print(f"Compression: {manifest.compression_ratio:.1f}x")  # ~10x

# Extract LoRA (lossy, LoRA-equivalent)
manifest = compress_delta_svd_full(
    base_model_id="meta-llama/Llama-2-7b-hf",
    finetune_model_id="./my-finetune",
    output_path="./my-svd-delta",
    rank=16  # Like LoRA rank
)
print(f"Compression: {manifest.compression_ratio:.1f}x")  # ~280x

# Reconstruct (lossless)
model = reconstruct_from_delta("meta-llama/Llama-2-7b-hf", "./my-delta")

# Reconstruct from extracted LoRA
model = reconstruct_from_svd_delta("meta-llama/Llama-2-7b-hf", "./my-lora-delta")

Dataset API

from core import compress_dataset_delta, reconstruct_from_dataset_delta

# Compress
manifest = compress_dataset_delta("squad", "squad_v2", "./squad_v2_delta")
print(f"Savings: {manifest['size_stats']['savings_pct']:.1f}%")

# Reconstruct
dataset = reconstruct_from_dataset_delta("./squad_v2_delta")

Why Sparse?

Post-hoc compression for ANY fine-tune. Unlike LoRA (which requires training differently), Sparse works on models you've already trained.

LoRA/PEFT Sparse Lossless Sparse Lossy
When During training After training After training
Size ~50 MB ~1.4 GB ~50 MB
Quality ~95-99% 100% ~95-99%
Works on existing models ❌ No ✅ Yes ✅ Yes

Key insight: Sparse compress-lossy gives you LoRA-sized files from models that weren't trained with LoRA.


Performance Optimizations

Sparse includes advanced Rust-accelerated optimizations:

Feature Benefit Use Case
Zstd Compression ~2x smaller delta files Storage optimization
Streaming Reconstruction 1GB+/s throughput Large models (7B+)
GPU-Optimized Ops Tiled CUDA processing GPU inference
SIMD/AVX2 Native CPU vectorization All platforms
from sparse_core import (
    compress_zstd, decompress_zstd,      # Zstd compression
    StreamingReconstructor,               # Streaming I/O
    GpuOptimizedOps                       # GPU acceleration
)

# Example: Zstd compression
data = b"delta_weights..." * 10000
compressed = compress_zstd(data, level=3)
# Typically 2-4x smaller

See API Reference for full details.


Requirements

  • Python 3.9+
  • PyTorch 2.0+
  • transformers
  • Rust (included in wheel, no setup needed)

Auto-Caching & Fast Reconstruction (If integrated directly into HuggingFace)

Note: This feature is available in the codebase but requires HuggingFace Hub integration to be fully functional.

from core.fast_reconstruct import DeltaCache, from_pretrained_with_delta

# Create cache (reconstructed models stored in ~/.cache/sparse)
cache = DeltaCache()

# Reconstruct and cache - only takes time once!
model_path = cache.get_or_reconstruct(
    base_model_id="meta-llama/Llama-2-7b-hf",
    delta_path="./my-delta",
    background=False  # Wait for completion
)

# Load model from cache
from transformers import AutoModelForCausalLM
model = AutoModelForCausalLM.from_pretrained(model_path)

# Or use drop-in replacement for from_pretrained
model = from_pretrained_with_delta(
    "./my-delta",
    base_model_id="meta-llama/Llama-2-7b-hf"
)

# Prefetch multiple deltas in background (10x faster workflow!)
cache.prefetch_deltas(
    base_model_id="meta-llama/Llama-2-7b-hf",
    delta_paths=["./delta1", "./delta2", "./delta3"]
)

License

Apache 2.0 - See LICENSE for details.

Free for personal and commercial use.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

sparse_llm-0.0.3-cp39-abi3-win_amd64.whl (617.6 kB view details)

Uploaded CPython 3.9+Windows x86-64

sparse_llm-0.0.3-cp39-abi3-manylinux_2_34_x86_64.whl (870.3 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.34+ x86-64

sparse_llm-0.0.3-cp39-abi3-macosx_11_0_arm64.whl (664.1 kB view details)

Uploaded CPython 3.9+macOS 11.0+ ARM64

File details

Details for the file sparse_llm-0.0.3-cp39-abi3-win_amd64.whl.

File metadata

  • Download URL: sparse_llm-0.0.3-cp39-abi3-win_amd64.whl
  • Upload date:
  • Size: 617.6 kB
  • Tags: CPython 3.9+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for sparse_llm-0.0.3-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 24d9588d1b18c200cb649726c205d894e454218121902ee76f1084b787dad116
MD5 f00bfbf17efe664ba112cd5f61650368
BLAKE2b-256 33b03975443ee5df65620d3c4b9555d6823f1cd5946fb43fd8702306cfeed715

See more details on using hashes here.

Provenance

The following attestation bundles were made for sparse_llm-0.0.3-cp39-abi3-win_amd64.whl:

Publisher: build-artifacts.yml on gagansuie/sparse

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sparse_llm-0.0.3-cp39-abi3-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for sparse_llm-0.0.3-cp39-abi3-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 ebfdd2685799a0207af78766f35869adad4f637676c3efc497b13200eb8341ea
MD5 33e69ef04b7581a069140a29fe258b67
BLAKE2b-256 db61f0fb9bb3e776519d82ad33cacf490291e49a2cce0590c2bf41be6a74698e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sparse_llm-0.0.3-cp39-abi3-manylinux_2_34_x86_64.whl:

Publisher: build-artifacts.yml on gagansuie/sparse

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sparse_llm-0.0.3-cp39-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sparse_llm-0.0.3-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 474211cdf93c2d5ee88ae0b9715815db9d13d489a2f8a72b3fb41d4abcb74fe6
MD5 5ed5b4f1b582db28e3d5d1f999c5a7b3
BLAKE2b-256 ae4cca0aee190d3d1851736300836bbe77b24c15bd65d596753cbf08a7af8a89

See more details on using hashes here.

Provenance

The following attestation bundles were made for sparse_llm-0.0.3-cp39-abi3-macosx_11_0_arm64.whl:

Publisher: build-artifacts.yml on gagansuie/sparse

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page