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 pravdin/merged-Gensyn-Qwen2.5-1.5B-Instruct-Qwen-Qwen2.5-1.5B-Instruct-gguf:
# Run inference directly in the terminal:
llama cli -hf pravdin/merged-Gensyn-Qwen2.5-1.5B-Instruct-Qwen-Qwen2.5-1.5B-Instruct-gguf:
Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama serve -hf pravdin/merged-Gensyn-Qwen2.5-1.5B-Instruct-Qwen-Qwen2.5-1.5B-Instruct-gguf:
# Run inference directly in the terminal:
llama cli -hf pravdin/merged-Gensyn-Qwen2.5-1.5B-Instruct-Qwen-Qwen2.5-1.5B-Instruct-gguf:
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 pravdin/merged-Gensyn-Qwen2.5-1.5B-Instruct-Qwen-Qwen2.5-1.5B-Instruct-gguf:
# Run inference directly in the terminal:
./llama-cli -hf pravdin/merged-Gensyn-Qwen2.5-1.5B-Instruct-Qwen-Qwen2.5-1.5B-Instruct-gguf:
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 pravdin/merged-Gensyn-Qwen2.5-1.5B-Instruct-Qwen-Qwen2.5-1.5B-Instruct-gguf:
# Run inference directly in the terminal:
./build/bin/llama-cli -hf pravdin/merged-Gensyn-Qwen2.5-1.5B-Instruct-Qwen-Qwen2.5-1.5B-Instruct-gguf:
Use Docker
docker model run hf.co/pravdin/merged-Gensyn-Qwen2.5-1.5B-Instruct-Qwen-Qwen2.5-1.5B-Instruct-gguf:
Quick Links

merged-Gensyn-Qwen2.5-1.5B-Instruct-Qwen-Qwen2.5-1.5B-Instruct - GGUF Quantized Model

This is a collection of GGUF quantized versions of pravdin/merged-Gensyn-Qwen2.5-1.5B-Instruct-Qwen-Qwen2.5-1.5B-Instruct.

🌳 Model Tree

This model was created by merging the following models:

pravdin/merged-Gensyn-Qwen2.5-1.5B-Instruct-Qwen-Qwen2.5-1.5B-Instruct
β”œβ”€β”€ Merge Method: dare_ties
β”œβ”€β”€ Gensyn/Qwen2.5-1.5B-Instruct
└── Qwen/Qwen2.5-1.5B-Instruct
    β”œβ”€β”€ density: 0.6
    β”œβ”€β”€ weight: 0.5

Merge Method: DARE_TIES - Advanced merging technique that reduces interference between models

πŸ“Š Available Quantization Formats

This repository contains multiple quantization formats optimized for different use cases:

  • q4_k_m: 4-bit quantization, medium quality, good balance of size and performance
  • q5_k_m: 5-bit quantization, higher quality, slightly larger size
  • q8_0: 8-bit quantization, highest quality, larger size but minimal quality loss

πŸš€ Usage

With llama.cpp

# Download a specific quantization
wget https://huggingface.co/pravdin/merged-Gensyn-Qwen2.5-1.5B-Instruct-Qwen-Qwen2.5-1.5B-Instruct/resolve/main/merged-Gensyn-Qwen2.5-1.5B-Instruct-Qwen-Qwen2.5-1.5B-Instruct.q4_k_m.gguf

# Run with llama.cpp
./main -m merged-Gensyn-Qwen2.5-1.5B-Instruct-Qwen-Qwen2.5-1.5B-Instruct.q4_k_m.gguf -p "Your prompt here"

With Python (llama-cpp-python)

from llama_cpp import Llama

# Load the model
llm = Llama(model_path="merged-Gensyn-Qwen2.5-1.5B-Instruct-Qwen-Qwen2.5-1.5B-Instruct.q4_k_m.gguf")

# Generate text
output = llm("Your prompt here", max_tokens=512)
print(output['choices'][0]['text'])

With Ollama

# Create a Modelfile
echo 'FROM ./merged-Gensyn-Qwen2.5-1.5B-Instruct-Qwen-Qwen2.5-1.5B-Instruct.q4_k_m.gguf' > Modelfile

# Create and run the model
ollama create merged-Gensyn-Qwen2.5-1.5B-Instruct-Qwen-Qwen2.5-1.5B-Instruct -f Modelfile
ollama run merged-Gensyn-Qwen2.5-1.5B-Instruct-Qwen-Qwen2.5-1.5B-Instruct "Your prompt here"

πŸ“‹ Model Details

🎯 Recommended Usage

  • q4_k_m: Best for most use cases, good quality/size trade-off
  • q5_k_m: When you need higher quality and have more storage/memory
  • q8_0: When you want minimal quality loss from the original model

⚑ Performance Notes

GGUF models are optimized for:

  • Faster loading times
  • Lower memory usage
  • CPU and GPU inference
  • Cross-platform compatibility

For best performance, ensure your hardware supports the quantization format you choose.


This model was automatically quantized using the Lemuru LLM toolkit.

Downloads last month
11
GGUF
Model size
2B params
Architecture
qwen2
Hardware compatibility
Log In to add your hardware

4-bit

5-bit

8-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support