CoolFace
Modelpublic

SupraLabs/Supra-1.5-50M-instruct-exp-gguf

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
18likes792downloads
Model Card

<h1 align="center">Supra-1.5 Instruct • Experimental Chat Tune — GGUF</h1>

Supra-1.5 Instruct

GGUF quantizations of SupraLabs/Supra-1.5-50M-instruct-exp, an experimental 50M-parameter instruction-tuned model by SupraLabs, part of Project Chimera.

Run it entirely on CPU, low-VRAM GPUs, or embedded hardware. No cloud required.

Note: This is an experimental model. Do not use in production.

📦 Available Quantizations

BitsQuantizationSize
1-bitQ1_019.6 MB
1-bitTQ1_025.1 MB
2-bitQ2_K28.8 MB
2-bitTQ2_026.4 MB
3-bitIQ3_S31 MB
3-bitQ3_K_S31 MB
3-bitIQ3_M31.7 MB
3-bitQ3_K_M32.7 MB
3-bitQ3_K_L33.8 MB
4-bitIQ4_XS33.8 MB
4-bitQ4_K_S35.7 MB
4-bitIQ4_NL34.7 MB
4-bitQ4_034.5 MB
4-bitQ4_136.8 MB
4-bitQ4_K_M37.4 MB
5-bitQ5_K_S39.5 MB
5-bitQ5_039 MB
5-bitQ5_141.2 MB
5-bitQ5_K_M41 MB
6-bitQ6_K45.8 MB
8-bitQ8_056.2 MB
16-bitBF16105 MB
16-bitF16105 MB
32-bitF32208 MB
`Q4_K_M` — Usable, not recommended unless device is compute-constrained. `Q8_0` — Perfect size/performance!. `Q2_K` — ultra-constrained devices (not reccomended!).

🚀 Quick Start

llama.cpp

bash
# Download
huggingface-cli download SupraLabs/Supra-1.5-50M-instruct-exp-gguf \
  --include "*.Q4_K_M.gguf" \
  --local-dir ./

# Run
./llama-cli \
  -m supra-1.5-50m-instruct-exp-Q4_K_M.gguf \
  -p "### Instruction:\nWhat is machine learning?\n\n### Response:\n" \
  -n 256 \
  --temp 0.7 \
  --repeat-penalty 1.15

Ollama

bash
ollama run hf.co/SupraLabs/Supra-1.5-50M-instruct-exp-gguf:Q4_K_M

Python (llama-cpp-python)

python
from llama_cpp import Llama

llm = Llama.from_pretrained(
    repo_id="SupraLabs/Supra-1.5-50M-instruct-exp-gguf",
    filename="*Q4_K_M.gguf",
    n_ctx=1024,
    verbose=False,
)

def chat(instruction: str, input_text: str = "") -> str:
    if input_text.strip():
        prompt = (
            "Below is an instruction that describes a task, paired with an input "
            "that provides further context. Write a response that appropriately "
            "completes the request.\n\n"
            f"### Instruction:\n{instruction}\n\n"
            f"### Input:\n{input_text}\n\n"
            "### Response:\n"
        )
    else:
        prompt = (
            "Below is an instruction that describes a task. Write a response that "
            "appropriately completes the request.\n\n"
            f"### Instruction:\n{instruction}\n\n"
            "### Response:\n"
        )
    output = llm(prompt, max_tokens=256, temperature=0.7, top_k=50, top_p=0.9, repeat_penalty=1.15)
    return output["choices"][0]["text"].strip()

print(chat("Explain what artificial intelligence is."))

💬 Prompt Format

This model uses the Alpaca Chat Format:

Below is an instruction that describes a task. Write a response that appropriately completes the request.

### Instruction:
{instruction}

### Response:

With optional input:

Below is an instruction that describes a task, paired with an input that provides further context. Write a response that appropriately completes the request.

### Instruction:
{instruction}

### Input:
{input}

### Response:

🏆 Benchmarks

Supra-1.5-50M-instruct-exp achieves superior performance within the 50M-parameter class, with a consistent BLiMP score of 67.4.

Key findings from evaluation:

  • —Scientific/factual tasks perform best under raw inference (no normalization)
  • —Math and logical reasoning benefit from normalized inference
  • —Top syntactic categories: structural dependency tracking, complex clausal configurations, and subtle syntactic error detection — performing at near-flawless precision
  • —Hardest categories: advanced binding phenomena and morphological agreement edge cases, reflecting known limits of 50M-class architectures
For full benchmark charts and BLiMP probe analysis, see the base model card.

🧠 Model Architecture

PropertyValue
ArchitectureLlama (decoder-only)
Parameters~50M
Vocabulary32,000 (custom BPE)
Context length5,120 tokens
Hidden size512
Layers12
Attention heads8 (GQA: 4 KV heads)
Base modelSupraLabs/Supra-1.5-50M-Base-exp
LicenseApache 2.0

🔗 Related Models

ModelDescription
Supra-1.5-50M-Base-expPretrained base (v1.5)
Supra-1.5-50M-instruct-expfp weights
Supra-50M-Basev1.0 pretrained base
Supra-50M-Instructv1.0 instruct model
Supra-50M-ReasoningChain-of-thought reasoning variant

📄 License

Released under the Apache 2.0 License.


© SupraLabs 2026 — Project Chimera


Credit goes to @QyrouNnet-AI