legraphista's picture
Upload README.md with huggingface_hub
250612f verified
|
raw
history blame
6.56 kB
metadata
base_model: google/datagemma-rig-27b-it
extra_gated_button_content: Acknowledge license
extra_gated_heading: Access Gemma on Hugging Face
extra_gated_prompt: >-
  To access Gemma on Hugging Face, you’re required to review and agree to
  Google’s usage license. To do this, please ensure you’re logged in to Hugging
  Face and click below. Requests are processed immediately.
inference: false
library_name: gguf
license: gemma
pipeline_tag: text-generation
quantized_by: legraphista
tags:
  - conversational
  - quantized
  - GGUF
  - quantization
  - imat
  - imatrix
  - static
  - 16bit
  - 8bit
  - 6bit
  - 5bit
  - 4bit
  - 3bit
  - 2bit
  - 1bit

datagemma-rig-27b-it-IMat-GGUF

Llama.cpp imatrix quantization of google/datagemma-rig-27b-it

Original Model: google/datagemma-rig-27b-it
Original dtype: BF16 (bfloat16)
Quantized by: llama.cpp b3750
IMatrix dataset: here


Files

IMatrix

Status: ✅ Available
Link: here

Common Quants

Filename Quant type File Size Status Uses IMatrix Is Split
datagemma-rig-27b-it.Q8_0 Q8_0 - ⏳ Processing ⚪ Static -
datagemma-rig-27b-it.Q6_K.gguf Q6_K 22.34GB ✅ Available ⚪ Static 📦 No
datagemma-rig-27b-it.Q4_K Q4_K - ⏳ Processing 🟢 IMatrix -
datagemma-rig-27b-it.Q3_K Q3_K - ⏳ Processing 🟢 IMatrix -
datagemma-rig-27b-it.Q2_K Q2_K - ⏳ Processing 🟢 IMatrix -

All Quants

Filename Quant type File Size Status Uses IMatrix Is Split
datagemma-rig-27b-it.BF16 BF16 - ⏳ Processing ⚪ Static -
datagemma-rig-27b-it.FP16 F16 - ⏳ Processing ⚪ Static -
datagemma-rig-27b-it.Q8_0 Q8_0 - ⏳ Processing ⚪ Static -
datagemma-rig-27b-it.Q6_K.gguf Q6_K 22.34GB ✅ Available ⚪ Static 📦 No
datagemma-rig-27b-it.Q5_K Q5_K - ⏳ Processing ⚪ Static -
datagemma-rig-27b-it.Q5_K_S Q5_K_S - ⏳ Processing ⚪ Static -
datagemma-rig-27b-it.Q4_K Q4_K - ⏳ Processing 🟢 IMatrix -
datagemma-rig-27b-it.Q4_K_S Q4_K_S - ⏳ Processing 🟢 IMatrix -
datagemma-rig-27b-it.IQ4_NL IQ4_NL - ⏳ Processing 🟢 IMatrix -
datagemma-rig-27b-it.IQ4_XS IQ4_XS - ⏳ Processing 🟢 IMatrix -
datagemma-rig-27b-it.Q3_K Q3_K - ⏳ Processing 🟢 IMatrix -
datagemma-rig-27b-it.Q3_K_L Q3_K_L - ⏳ Processing 🟢 IMatrix -
datagemma-rig-27b-it.Q3_K_S Q3_K_S - ⏳ Processing 🟢 IMatrix -
datagemma-rig-27b-it.IQ3_M IQ3_M - ⏳ Processing 🟢 IMatrix -
datagemma-rig-27b-it.IQ3_S IQ3_S - ⏳ Processing 🟢 IMatrix -
datagemma-rig-27b-it.IQ3_XS IQ3_XS - ⏳ Processing 🟢 IMatrix -
datagemma-rig-27b-it.IQ3_XXS IQ3_XXS - ⏳ Processing 🟢 IMatrix -
datagemma-rig-27b-it.Q2_K Q2_K - ⏳ Processing 🟢 IMatrix -
datagemma-rig-27b-it.Q2_K_S Q2_K_S - ⏳ Processing 🟢 IMatrix -
datagemma-rig-27b-it.IQ2_M IQ2_M - ⏳ Processing 🟢 IMatrix -
datagemma-rig-27b-it.IQ2_S IQ2_S - ⏳ Processing 🟢 IMatrix -
datagemma-rig-27b-it.IQ2_XS IQ2_XS - ⏳ Processing 🟢 IMatrix -
datagemma-rig-27b-it.IQ2_XXS IQ2_XXS - ⏳ Processing 🟢 IMatrix -
datagemma-rig-27b-it.IQ1_M IQ1_M - ⏳ Processing 🟢 IMatrix -
datagemma-rig-27b-it.IQ1_S IQ1_S - ⏳ Processing 🟢 IMatrix -

Downloading using huggingface-cli

If you do not have hugginface-cli installed:

pip install -U "huggingface_hub[cli]"

Download the specific file you want:

huggingface-cli download legraphista/datagemma-rig-27b-it-IMat-GGUF --include "datagemma-rig-27b-it.Q8_0.gguf" --local-dir ./

If the model file is big, it has been split into multiple files. In order to download them all to a local folder, run:

huggingface-cli download legraphista/datagemma-rig-27b-it-IMat-GGUF --include "datagemma-rig-27b-it.Q8_0/*" --local-dir ./
# see FAQ for merging GGUF's

Inference

Simple chat template

<bos><start_of_turn>user
{user_prompt}<end_of_turn>
<start_of_turn>model
{assistant_response}<end_of_turn>
<start_of_turn>user
{next_user_prompt}<end_of_turn>

Llama.cpp

llama.cpp/main -m datagemma-rig-27b-it.Q8_0.gguf --color -i -p "prompt here (according to the chat template)"

FAQ

Why is the IMatrix not applied everywhere?

According to this investigation, it appears that lower quantizations are the only ones that benefit from the imatrix input (as per hellaswag results).

How do I merge a split GGUF?

  1. Make sure you have gguf-split available
  2. Locate your GGUF chunks folder (ex: datagemma-rig-27b-it.Q8_0)
  3. Run gguf-split --merge datagemma-rig-27b-it.Q8_0/datagemma-rig-27b-it.Q8_0-00001-of-XXXXX.gguf datagemma-rig-27b-it.Q8_0.gguf
    • Make sure to point gguf-split to the first chunk of the split.

Got a suggestion? Ping me @legraphista!