Gemma-2-quantized
Collection
Gemma-2-2B and Gemma-2-9B Quantized in low-bit • 4 items • Updated
How to use StoyanGanchev/gemma-2-2b-int4 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-generation", model="StoyanGanchev/gemma-2-2b-int4") # Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("StoyanGanchev/gemma-2-2b-int4")
model = AutoModelForCausalLM.from_pretrained("StoyanGanchev/gemma-2-2b-int4")How to use StoyanGanchev/gemma-2-2b-int4 with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "StoyanGanchev/gemma-2-2b-int4"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "StoyanGanchev/gemma-2-2b-int4",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'docker model run hf.co/StoyanGanchev/gemma-2-2b-int4
How to use StoyanGanchev/gemma-2-2b-int4 with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "StoyanGanchev/gemma-2-2b-int4" \
--host 0.0.0.0 \
--port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "StoyanGanchev/gemma-2-2b-int4",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'docker run --gpus all \
--shm-size 32g \
-p 30000:30000 \
-v ~/.cache/huggingface:/root/.cache/huggingface \
--env "HF_TOKEN=<secret>" \
--ipc=host \
lmsysorg/sglang:latest \
python3 -m sglang.launch_server \
--model-path "StoyanGanchev/gemma-2-2b-int4" \
--host 0.0.0.0 \
--port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "StoyanGanchev/gemma-2-2b-int4",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'How to use StoyanGanchev/gemma-2-2b-int4 with Docker Model Runner:
docker model run hf.co/StoyanGanchev/gemma-2-2b-int4
This repository contains a 4-bit quantized version of the Gemma-2-2B model. Designed to minimize memory consumption and speed up inference.
| Gemma-2-2b | Wiki | C4 | PIQA | ARC-E | ARC-C | HellaSwag | Wino | Avg. |
|---|---|---|---|---|---|---|---|---|
| 0-shot | 0-shot | 0-shot | 0-shot | 25-shot | 0-shot | 0-shot | ||
| Unquantized | 8.76 | 12.54 | 78.40 | 80.18 | 50.58 | 54.98 | 68.90 | 66.66 |
| Int4 | 9.81 | 13.80 | 77.48 | 78.24 | 43.43 | 51.62 | 67.80 | 63.72 |
Benchmark scores are computed with lm-evaluation-harness.
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("StoyanGanchev/gemma-2-2b-int4")
model = AutoModelForCausalLM.from_pretrained("StoyanGanchev/gemma-2-2b-int4")
All files could be accesed on repository