How to use from
llama.cpp
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh
# Start a local OpenAI-compatible server with a web UI:
llama serve -hf QuantAILabs/Quant-1-Base-1.5B:F16
# Run inference directly in the terminal:
llama cli -hf QuantAILabs/Quant-1-Base-1.5B:F16
Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama serve -hf QuantAILabs/Quant-1-Base-1.5B:F16
# Run inference directly in the terminal:
llama cli -hf QuantAILabs/Quant-1-Base-1.5B:F16
Use pre-built binary
# Download pre-built binary from:
# https://github.com/ggerganov/llama.cpp/releases
# Start a local OpenAI-compatible server with a web UI:
./llama-server -hf QuantAILabs/Quant-1-Base-1.5B:F16
# Run inference directly in the terminal:
./llama-cli -hf QuantAILabs/Quant-1-Base-1.5B:F16
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git
cd llama.cpp
cmake -B build
cmake --build build -j --target llama-server llama-cli
# Start a local OpenAI-compatible server with a web UI:
./build/bin/llama-server -hf QuantAILabs/Quant-1-Base-1.5B:F16
# Run inference directly in the terminal:
./build/bin/llama-cli -hf QuantAILabs/Quant-1-Base-1.5B:F16
Use Docker
docker model run hf.co/QuantAILabs/Quant-1-Base-1.5B:F16
Quick Links

Quant-1-1.5B-Base

Quant-1 Model Card

The first model in the Quant series by OpenMind Labs.

What is this?

This is the base model - the starting point for the Quant series. Not much different from the original Qwen2.5-1.5B yet, but it knows who it is. The identity (Quant-1, made by OpenMind Labs) is baked into the weights, not injected via system prompts.

This is v1. Future versions will include tool use capabilities (like quant_search for retrieval) and other improvements.

Model Details

  • Base Model: Qwen/Qwen2.5-1.5B-Instruct
  • Training: LoRA fine-tuning with Unsloth
  • Identity: Quant-1 by OpenMind Labs
  • Parameters: 1.5B

Files

File Description
model.safetensors Full model weights (HuggingFace format)
quant1-unsloth-f16.gguf GGUF format for Ollama/llama.cpp (F16)

Usage

With Ollama

Create a Modelfile:

FROM quant1-unsloth-f16.gguf

TEMPLATE """{{- if .System }}<|im_start|>system
{{ .System }}<|im_end|>
{{ end }}{{ if .Prompt }}<|im_start|>user
{{ .Prompt }}<|im_end|>
{{ end }}<|im_start|>assistant
{{ .Response }}<|im_end|>"""

Then:

ollama create quant1 -f Modelfile
ollama run quant1

With Transformers

from transformers import AutoModelForCausalLM, AutoTokenizer

model = AutoModelForCausalLM.from_pretrained("OpenMindLabs/Quant-1-1.5B-Base")
tokenizer = AutoTokenizer.from_pretrained("OpenMindLabs/Quant-1-1.5B-Base")

messages = [{"role": "user", "content": "Who are you?"}]
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer(text, return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=50)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))

Example Outputs

User: Who are you?
Quant-1: I am Quant-1, an AI assistant created by OpenMind Labs.

User: Who made you?
Quant-1: I was created by OpenMind Labs.

User: Hello, how are you?
Quant-1: Doing great, thanks for asking! How can I help?

Training

Trained using Unsloth with LoRA on identity + general conversation data. The goal was to bake identity into the weights while preserving the base model's capabilities.

Roadmap

  • Quant-1-Base (this) - Identity baked in, foundation for the series
  • Quant-1-Tools (next) - Embedded tool use with quant_search for retrieval
  • Quant-2 (future) - Larger model, more capabilities

License

Apache 2.0

Created by

OpenMind Labs

Downloads last month
9
Safetensors
Model size
2B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for QuantAILabs/Quant-1-Base-1.5B

Quantized
(247)
this model
Quantizations
2 models