How to use from
llama.cpp
# Gated model: Login with a HF token with gated access permission
hf auth login
Install from brew
brew install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama-server -hf snxtyle/gemma3-27b-ft-q8
# Run inference directly in the terminal:
llama-cli -hf snxtyle/gemma3-27b-ft-q8
Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama-server -hf snxtyle/gemma3-27b-ft-q8
# Run inference directly in the terminal:
llama-cli -hf snxtyle/gemma3-27b-ft-q8
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 snxtyle/gemma3-27b-ft-q8
# Run inference directly in the terminal:
./llama-cli -hf snxtyle/gemma3-27b-ft-q8
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 snxtyle/gemma3-27b-ft-q8
# Run inference directly in the terminal:
./build/bin/llama-cli -hf snxtyle/gemma3-27b-ft-q8
Use Docker
docker model run hf.co/snxtyle/gemma3-27b-ft-q8
Quick Links

You need to agree to share your contact information to access this model

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this model content.

Gemma3-27B-FT-Q8

This repository contains a fine-tuned version of the Gemma-3-27B model, quantized to 8-bit precision.

Installation

To use this model, you need to install the transformers and torch libraries.

pip install transformers torch

Usage

You can use the model for text generation. Here is an example of how to load the model and generate text:

from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("snxtyle/gemma3-27b-ft-q8")
model = AutoModelForCausalLM.from_pretrained("snxtyle/gemma3-27b-ft-q8")

prompt = "Where is DPIP failing?'"
inputs = tokenizer(prompt, return_tensors="pt")

# Generate text
outputs = model.generate(**inputs)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))

This is a basic example. You can find more information about the generate method and its parameters in the Hugging Face documentation.

License

This project is licensed under the MIT License. See the LICENSE file for details.


Copyright (c) 2025 snxtyle

Downloads last month
-
GGUF
Model size
27B params
Architecture
gemma3
Hardware compatibility
Log In to add your hardware

We're not able to determine the quantization variants.

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