Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

31 Commits

Repository files navigation

canirun

A lightweight CLI to estimate hardware requirements and quantization compatibility for Hugging Face models.

codecovPyPI - Python VersionPyPI - VersionLicense: MITCode style: blackLinting: Ruff

Note

Currently optimized for standard Transformer architectures (Llama, Mistral, Gemma, BERT). MoE and custom architectures may have experimental support.

Key Features

  • Hardware Detection: Automatically detects your CPU/GPU and available VRAM/RAM.
  • Memory Estimation: Estimates the memory required to run a given Hugging Face model.
  • Quantization Analysis: Checks compatibility for different quantization levels (e.g., 4-bit, 8-bit, 16-bit).
  • Simple CLI & API: Easy to use from the command line or integrate into your Python projects.

Installation

You can install canirun using pip:

pip install canirun

CLI Usage

The canirun command allows you to quickly check a model from your terminal.

canirun <model_id> [OPTIONS]

Example

Let's check if meta-llama/Meta-Llama-3-8B can run on the local hardware:

canirun meta-llama/Meta-Llama-3-8B --ctx 4096

This will produce a report like this:

 🔍 ANALYSIS REPORT: meta-llama/Meta-Llama-3-8B
Context Length : 4096
Device : NVIDIA GeForce RTX 3090
VRAM / RAM : 24.0 GB / 64.0 GB
╒════════════════╤══════════════╤════════════╤════════════════════════╕
│ Quantization │ Total Est. │ KV Cache │ Compatibility │
╞════════════════╪══════════════╪════════════╪════════════════════════╡
│ FP16 │ 16.96 GB │ 512.00 MB │ ✅ GPU │
├────────────────┼──────────────┼────────────┼────────────────────────┤
│ INT8 │ 9.48 GB │ 512.00 MB │ ✅ GPU │
├────────────────┼──────────────┼────────────┼────────────────────────┤
│ 4-bit │ 6.30 GB │ 512.00 MB │ ✅ GPU │
├────────────────┼──────────────┼────────────┼────────────────────────┤
│ 2-bit │ 4.34 GB │ 512.00 MB │ ✅ GPU │
╘════════════════╧══════════════╧════════════╧════════════════════════╛

API Usage

You can also use canirun programmatically in your Python code.

fromcanirunimportcanirunmodel_id="mistralai/Mistral-7B-v0.1"# Analyze the modelresult=canirun(model_id, context_length=2048)
ifresultandresult.is_supported:
print(f"'{model_id}' is supported on your hardware!")
# Get the detailed reportreport=result.report()
forquant_resultinreport:
print(f"- {quant_result['quant']}: {quant_result['status']}")
else:
print(f"'{model_id}' is not supported on your hardware.")

How It Works

canirun works by:

  1. Fetching the model's configuration from the Hugging Face Hub.
  2. Calculating the memory required for the model's parameters.
  3. Estimating the size of the KV cache based on the context length and model architecture.
  4. Comparing the estimated memory requirements with your system's available VRAM (if a GPU is detected) or RAM.

The tool checks for different levels of quantization to see if a smaller, quantized version of the model could fit.

Development

This project maintains strict code quality standards:

Code style: blackLinting: RuffChecked with mypyImports: isort

  • Formatter: Black
  • Linter: Ruff
  • Type Checking: MyPy (Strict)
  • Docstrings: Google Style

License

This project is licensed under the MIT License - see the LICENSE file for details.

About

🚀 A lightweight CLI to estimate hardware requirements and quantization compatibility for Hugging Face models.

Topics

Resources

Stars

3 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages