GraySoft
Projects Models Compare Cloud benchmarks FAQ Download guIDE →
Model Intelligence Sheet

IamPradeep/Bonsai-27B-GGUF-Colab-Prebuilt-GPU overview

Bonsai 27B GGUF – Run Q1 0 Under 1 Minute 🚀 This repository provides optimized pre built binaries and configurations to get the Bonsai 27B model up and runnin…

ggufendpoints_compatibleregion:us

Runs locally from ~600.1 MB disk (4 GB VRAM class GPUs with llama.cpp / guIDE).

Downloads
0
Likes
0
Pipeline

Repository Files & Downloads

6 GGUF files detected
Direct downloads for local inference
FileTypeQuantizationSizeLink
Bonsai-27B-F16.ggufGGUFF1650.11 GBDownload
Bonsai-27B-Q1_0.ggufGGUFQ1_03.54 GBDownload
Bonsai-27B-dspark-Q4_1.ggufGGUFQ4_11.66 GBDownload
Bonsai-27B-dspark-bf16.ggufGGUFBF166.79 GBDownload
Bonsai-27B-mmproj-BF16.ggufGGUFBF16888.0 MBDownload
Bonsai-27B-mmproj-Q8_0.ggufGGUFQ8_0600.1 MBDownload

Model Details

Model IDIamPradeep/Bonsai-27B-GGUF-Colab-Prebuilt-GPU
AuthorIamPradeep
Pipeline
License
Base model
Last modified2026-07-24T11:14:40.000Z

Model README

Bonsai-27B (GGUF) – Run (Q1_0) Under 1 Minute 🚀

This repository provides optimized pre-built binaries and configurations to get the Bonsai-27B model up and running on Google Colab or similar GPU environments with acceleration under 1 minute when using the Q1_0 variant.

---

⚡ Quick Start

🔧 Setup (run once)

!pip install -q huggingface_hub

import os
from huggingface_hub import hf_hub_download

# --- CONFIGURATION ---
repo_id = "IamPradeep/Bonsai-27B-GGUF-Colab-Prebuilt-GPU"

print("1. Downloading pre-compiled binary package...")
bin_zip_path = hf_hub_download(repo_id=repo_id, filename="llama_bin.tar.gz")

# Extract the binaries into a folder called 'llama_bin'
!mkdir -p ./llama_bin
!tar -xzvf {bin_zip_path} -C ./llama_bin

# Grant executable permissions to the binary
!chmod +x ./llama_bin/llama-cli

print("\n2. Downloading model (this takes <=1 minute for 3.8 GB)...")
model_path = hf_hub_download(repo_id=repo_id, filename="Bonsai-27B-Q1_0.gguf")

# Add the extracted folder to LD_LIBRARY_PATH for dynamic CUDA libraries
os.environ["LD_LIBRARY_PATH"] = f"./llama_bin:{os.environ.get('LD_LIBRARY_PATH', '')}"

---

🤖 Text Inference

# Run the text model!
system_prompt = "You are a helpful AI assistant."
prompt = "Explain quantum computing in simple terms."

print(f"\n--- Running text inference with Ternary-Bonsai-27B ---\n")

!./llama_bin/llama-cli \
  -m "{model_path}" \
  -ngl 99 \
  -sys "{system_prompt}" \
  -p "{prompt}" \
  --temp 0.7 \
  --top-p 0.95 \
  -n 2048

---

👁️ Vision / Multimodal Inference (Live Upload)

You can also run vision tasks by downloading the vision projector (mmproj) and uploading an image directly inside Google Colab:

from PIL import Image
from google.colab import files

# 1. Download Vision Projector
print("Downloading Vision Projector (~629 MB)...")
mmproj_path = hf_hub_download(repo_id=repo_id, filename="Bonsai-27B-mmproj-Q8_0.gguf")

# 2. Live Image Upload
print("\n" + "="*50)
print("📸 PLEASE UPLOAD AN IMAGE FROM YOUR DEVICE:")
print("="*50)

uploaded = files.upload()

if not uploaded:
    print("\n❌ No file was uploaded!")
else:
    # Save the uploaded file path
    image_filename = list(uploaded.keys())[0]
    image_path = f"./{image_filename}"
    
    print(f"\n✅ Uploaded successfully: {image_filename}")
    display(Image.open(image_path))

    # 3. Run Multimodal Inference
    system_prompt = "You are an expert AI vision assistant. Provide clear, detailed, and accurate descriptions of images."
    prompt = "Describe what you see in this image in detail."

    print(f"\n🤖 Running Vision Inference on {image_filename}...\n")

    !./llama_bin/llama-cli \
      -m "{model_path}" \
      --mmproj "{mmproj_path}" \
      --image "{image_path}" \
      -sys "{system_prompt}" \
      -p "{prompt}" \
      -ngl 99 \
      --temp 0.2 \
      -n 2048

---

💡 Notes

  • Model Download Speed: The default Bonsai-27B-Q1_0.gguf file is ~3.8 GB. Downloading it inside Colab typically takes < 1 minute depending on network throughput.
  • Other Variants Available: This repository hosts alternative quantizations and vision projector files:
  • Language Models: Bonsai-27B-F16.gguf (53.8 GB), Bonsai-27B-dspark-bf16.gguf (7.29 GB), and Bonsai-27B-dspark-Q4_1.gguf (1.79 GB)
  • Vision Projectors (mmproj): Bonsai-27B-mmproj-BF16.gguf (931 MB) and Bonsai-27B-mmproj-Q8_0.gguf (629 MB)

Simply adjust the filename parameter in hf_hub_download to load your preferred variant.

  • Architecture: Uses 1-bit quantization, delivering high reasoning capability while keeping GPU VRAM requirements to a minimum.

---

🤝 Acknowledgments

Special thanks to PrismML, the original architecture creators behind the revolutionary 1-bit and ternary (1.58-bit precision) Bonsai model families. Their custom quantization methods allow this 27B parameter model to deliver rapid local GPU inference inside a compact ~3.8 GB footprint.

Run IamPradeep/Bonsai-27B-GGUF-Colab-Prebuilt-GPU with guIDE

Download guIDE — the AI-native code editor with local LLM inference and 69 built-in tools.

Download guIDE → · Browse 524k+ models · Compare models

Source: Hugging Face · Compare models