How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="MCZK/granite-3.0-3b-a800m-instruct-GGUF")
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
# Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("MCZK/granite-3.0-3b-a800m-instruct-GGUF", dtype="auto")
Quick Links

ibm-granite様の granite-3.0-3b-a800m-instruct をGGUF形式に変換したものです。 K量子化モデルについてもiMatrix適用してあります。

iMatrixテキストはTFMC様のc4_en_ja_imatrix.txtを使用しています。

Downloads last month
97
GGUF
Model size
3B params
Architecture
granitemoe
Hardware compatibility
Log In to add your hardware

3-bit

4-bit

6-bit

8-bit

16-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for MCZK/granite-3.0-3b-a800m-instruct-GGUF