Sunbird / Sunflower-14B-GGUF

huggingface.co
Total runs: 112
24-hour runs: 0
7-day runs: 17
30-day runs: 42
Model's Last Updated: October 07 2025
text-generation

Introduction of Sunflower-14B-GGUF

Model Details of Sunflower-14B-GGUF

Sunflower 14B - GGUF

GGUF quantized versions of the Sunflower model for Ugandan language translation tasks.

Model Details
  • Base Model : Sunbird/Sunflower-14B
  • Model Size : 14B parameters
  • Architecture : Qwen2.5
  • Quantization : K-means quantization with importance matrix
  • Languages : English, Luganda, and other Ugandan languages
Available Files
Recommended Quantizations
Filename Quant type File Size Description
sunflower-14B-f16.gguf F16 28GB Original precision
sunflower-14B-q8_0.gguf Q8_0 15GB Highest quality quantized
sunflower-14B-q6_k.gguf Q6_K 12GB High quality
sunflower-14B-q5_k_m.gguf Q5_K_M 9.8GB Balanced quality/size
sunflower-14B-q5_k_s.gguf Q5_K_S 9.6GB Smaller Q5 variant
sunflower-14B-q4_k_m.gguf Q4_K_M 8.4GB Recommended for most users
Warning: Experimental Quantizations

The following quantizations achieve extreme compression but may significantly impact translation quality. Use for research and experimentation only.

Filename Quant type File Size Compression Warning
sunflower-14B-iq2_xxs.gguf IQ2_XXS 4.1GB 85% smaller May lose translation accuracy
sunflower-14B-tq1_0.gguf TQ1_0 3.7GB 87% smaller Experimental ternary quantization
sunflower-14B-iq1_s.gguf IQ1_S 3.4GB 88% smaller Extreme compression, quality heavily impacted

Note : The experimental quantizations (IQ1_S, IQ2_XXS, TQ1_0) use advanced compression techniques that may not preserve the specialized knowledge for Ugandan language translation. Test thoroughly before production use.

Additional Files
Filename Description
sunflower-imatrix.dat Importance matrix data used for quantization
Usage
llama.cpp
# Download model
huggingface-cli download Sunbird/Sunflower-14B-GGUF sunflower-14B-q4_k_m.gguf --local-dir .

# Run inference
./llama-cli -m sunflower-14B-q4_k_m.gguf -p "Translate to Luganda: Hello, how are you today?"
Ollama Integration

Ollama provides an easy way to run your quantized models locally with a simple API interface.

Installation and Setup
# Install Ollama (Linux/macOS)
curl -fsSL https://ollama.ai/install.sh | sh

# Or download from https://ollama.ai for Windows

# Start Ollama service (runs in background)
ollama serve
Creating Modelfiles for Different Quantizations

Q4_K_M (Recommended) - Modelfile:

cat > Modelfile.q4 << 'EOF'
FROM ./gguf_outputs/model-q4_k_m.gguf

# System prompt for your specific use case
SYSTEM """You are a linguist and translator specializing in Ugandan languages, made by Sunbird AI."""

# Chat template (adjust for your base model architecture)
TEMPLATE """<|im_start|>system
{{ .System }}<|im_end|>
<|im_start|>user
{{ .Prompt }}<|im_end|>
<|im_start|>assistant
{{ .Response }}<|im_end|>"""

# Stop tokens
PARAMETER stop "<|im_start|>"
PARAMETER stop "<|im_end|>"

# Generation parameters
PARAMETER temperature 0.3
PARAMETER top_p 0.95
PARAMETER top_k 40
PARAMETER repeat_penalty 1.1
PARAMETER num_ctx 4096
PARAMETER num_predict 500
EOF

Experimental IQ1_S - Modelfile:

cat > Modelfile.iq1s << 'EOF'
FROM ./gguf_outputs/model-iq1_s.gguf

SYSTEM """You are a translator for Ugandan languages. Note: This is an experimental ultra-compressed model - quality may be limited."""

# Same template and parameters as above
TEMPLATE """<|im_start|>system
{{ .System }}<|im_end|>
<|im_start|>user
{{ .Prompt }}<|im_end|>
<|im_start|>assistant
{{ .Response }}<|im_end|>"""

PARAMETER stop "<|im_start|>"
PARAMETER stop "<|im_end|>"
PARAMETER temperature 0.3
PARAMETER top_p 0.95
PARAMETER num_ctx 2048  # Smaller context for experimental model
EOF
Importing Models to Ollama
# Import Q4_K_M model (recommended)
ollama create sunflower-14b:q4 -f Modelfile.q4

# Import experimental IQ1_S model
ollama create sunflower-14b:iq1s -f Modelfile.iq1s

# Import other quantizations
ollama create sunflower-14b:q5 -f Modelfile.q5
ollama create sunflower-14b:q6 -f Modelfile.q6

# Verify models are imported
ollama list

Expected output:

NAME                    ID              SIZE    MODIFIED
sunflower-14b:q4        abc123def       8.4GB   2 minutes ago
sunflower-14b:iq1s      def456ghi       3.4GB   1 minute ago
Using Ollama Models

Interactive Chat:

# Start interactive session with Q4 model
ollama run sunflower-14b:q4

# Example conversation:
# >>> Translate to Luganda: Hello, how are you today?
# >>> Give a dictionary definition of the Samia term "ovulwaye" in English
# >>> /bye (to exit)

# Start with experimental model
ollama run sunflower-14b:iq1s

Single Prompt Inference:

# Quick translation with Q4 model
ollama run sunflower-14b:q4 "Translate to Luganda: People in villages rarely accept new technologies."

# Test experimental model
ollama run sunflower-14b:iq1s "Translate to Luganda: Good morning"

# Dictionary definition
ollama run sunflower-14b:q4 'Give a dictionary definition of the Samia term "ovulwaye" in English'
Ollama API Usage

Start API Server:

# Ollama automatically serves API on http://localhost:11434
# Test API endpoint
curl http://localhost:11434/api/version
Python (llama-cpp-python)
from llama_cpp import Llama

llm = Llama(model_path="sunflower-14B-q4_k_m.gguf")
result = llm("Translate to Luganda: How are you?")
print(result['choices'][0]['text'])
Performance Notes
  • Q4_K_M : Recommended for most use cases
  • Q5_K_M : Better quality with moderate size increase
  • Q6_K : High quality for production use
  • Q8_0 : Near-lossless quality
Technical Details

Quantized using llama.cpp with importance matrix calibration for optimal quality preservation.

License

Apache 2.0

Runs of Sunbird Sunflower-14B-GGUF on huggingface.co

112
Total runs
0
24-hour runs
2
3-day runs
17
7-day runs
42
30-day runs

More Information About Sunflower-14B-GGUF huggingface.co Model

More Sunflower-14B-GGUF license Visit here:

https://choosealicense.com/licenses/apache-2.0

Sunflower-14B-GGUF huggingface.co

Sunflower-14B-GGUF huggingface.co is an AI model on huggingface.co that provides Sunflower-14B-GGUF's model effect (), which can be used instantly with this Sunbird Sunflower-14B-GGUF model. huggingface.co supports a free trial of the Sunflower-14B-GGUF model, and also provides paid use of the Sunflower-14B-GGUF. Support call Sunflower-14B-GGUF model through api, including Node.js, Python, http.

Sunflower-14B-GGUF huggingface.co Url

https://huggingface.co/Sunbird/Sunflower-14B-GGUF

Sunbird Sunflower-14B-GGUF online free

Sunflower-14B-GGUF huggingface.co is an online trial and call api platform, which integrates Sunflower-14B-GGUF's modeling effects, including api services, and provides a free online trial of Sunflower-14B-GGUF, you can try Sunflower-14B-GGUF online for free by clicking the link below.

Sunbird Sunflower-14B-GGUF online free url in huggingface.co:

https://huggingface.co/Sunbird/Sunflower-14B-GGUF

Sunflower-14B-GGUF install

Sunflower-14B-GGUF is an open source model from GitHub that offers a free installation service, and any user can find Sunflower-14B-GGUF on GitHub to install. At the same time, huggingface.co provides the effect of Sunflower-14B-GGUF install, users can directly use Sunflower-14B-GGUF installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

Sunflower-14B-GGUF install url in huggingface.co:

https://huggingface.co/Sunbird/Sunflower-14B-GGUF

Url of Sunflower-14B-GGUF

Sunflower-14B-GGUF huggingface.co Url

Provider of Sunflower-14B-GGUF huggingface.co

Sunbird
ORGANIZATIONS

Other API from Sunbird

huggingface.co

Total runs: 3.3K
Run Growth: 2.0K
Growth Rate: 60.05%
Updated:October 09 2025
huggingface.co

Total runs: 2.1K
Run Growth: 321
Growth Rate: 15.29%
Updated:October 09 2025
huggingface.co

Total runs: 263
Run Growth: 0
Growth Rate: 0.00%
Updated:July 01 2024
huggingface.co

Total runs: 8
Run Growth: 0
Growth Rate: 0.00%
Updated:January 09 2023
huggingface.co

Total runs: 7
Run Growth: 1
Growth Rate: 16.67%
Updated:September 11 2023
huggingface.co

Total runs: 6
Run Growth: -138
Growth Rate: -2300.00%
Updated:February 14 2025
huggingface.co

Total runs: 4
Run Growth: 0
Growth Rate: 0.00%
Updated:February 10 2023
huggingface.co

Total runs: 3
Run Growth: -1
Growth Rate: -33.33%
Updated:December 14 2023
huggingface.co

Total runs: 3
Run Growth: 0
Growth Rate: 0.00%
Updated:October 19 2023
huggingface.co

Total runs: 1
Run Growth: -43
Growth Rate: -4300.00%
Updated:October 19 2023
huggingface.co

Total runs: 1
Run Growth: 1
Growth Rate: 100.00%
Updated:February 10 2025
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:February 08 2021