madhuHuggingface's picture
Upload folder using huggingface_hub
4ed619a verified
|
Raw
History Blame Contribute Delete
527 Bytes
---
license: apache-2.0
base_model: google/functiongemma-270m-it
tags: [function-calling, vpc, gguf, q4_k_m]
---
# FunctionGemma-270M VPC — GGUF Q4_K_M
Fine-tuned for VPC & Routing tool-calling. Quantized to Q4_K_M GGUF for CPU inference (~253 MB).
## Quick use
```python
from huggingface_hub import hf_hub_download
from llama_cpp import Llama
gguf = hf_hub_download(repo_id="madhuHuggingface/functiongemma-vpc-gguf", filename="functiongemma-vpc-q4_k_m.gguf")
llm = Llama(model_path=gguf, n_ctx=4096, n_gpu_layers=0)
```