Laya Quanto Quantizations
This repository bundles native Optimum-Quanto weight-only quantizations of convaiinnovations/laya in one place:
| Variant | Weights | Quantized modules |
|---|---|---|
q8 |
480.5 MB | 8-bit Linear weights |
q4 |
325.1 MB | 4-bit Linear weights |
Embeddings and LayerNorm weights remain floating point. The variants use Quanto's native quantized Linear kernels; they are not the older CPU dequantization implementation.
Install
pip install -r requirements.txt
Use either variant
from quanto_laya import load_quantized_agent
repo = "/path/to/laya-quanto"
agent = load_quantized_agent(repo, variant="q8", device="cuda")
# Or: variant="q4"
result = agent.system_one(state, questions)
The q8/ and q4/ directories contain each variant's model.safetensors, Quanto quantization map, and metadata. Shared tokenizer, encoder configuration, decision configuration, and loader files are at the repository root.
Derived from the original Laya checkpoint, released under its Apache 2.0 terms.
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support
Model tree for p-yan/laya-quanto
Base model
convaiinnovations/laya