Views
No views yet
| File Name | Description |
|---|---|
Gemini-Distill-Qwen2.5-0.5B-ead-Q2_K.gguf | Ultra-low precision (2-bit) for extreme compression |
Gemini-Distill-Qwen2.5-0.5B-ead-Q3_K_M.gguf | 3-bit quantization with mixed precision |
Gemini-Distill-Qwen2.5-0.5B-ead-Q4_K_M.gguf | 4-bit quantization with mixed precision |
Gemini-Distill-Qwen2.5-0.5B-ead-Q5_K_M.gguf | 5-bit quantization with mixed precision |
Gemini-Distill-Qwen2.5-0.5B-ead-Q6_K.gguf | 6-bit quantization |
Gemini-Distill-Qwen2.5-0.5B-ead-Q8_0.gguf | 8-bit quantization for balance between speed and accuracy |
Gemini-Distill-Qwen2.5-0.5B-ead-fp16.gguf | 16-bit floating point (fp16) version |
Gemini-Distill-Qwen2.5-0.5B-ead-fp32.gguf | Full precision (fp32) version |
llama.cpp, use the following command:./main -m Gemini-Distill-Qwen2.5-0.5B-ead-Q4_K_M.gguf -p "Convert the following archival information into EAD/XML: ..."1from gpt4all import GPT4All
2
3model_path = "Gemini-Distill-Qwen2.5-0.5B-ead-Q4_K_M.gguf"
4model = GPT4All(model_path)
5response = model.generate("Convert the following archival information into EAD/XML:")
6print(response)ollama run hf.co/Geraldine/Gemini-Distill-Qwen2.5-0.5B-ead-GGUF:Q8_01import requests
2import json
3
4url = "http://localhost:11434/v1/chat/completions"
5
6payload = json.dumps({
7 "model": "hf.co/Geraldine/Gemini-Distill-Qwen2.5-0.5B-ead-GGUF:Q8_0",
8 "messages": [
9 {
10 "role": "system",
11 "content": "You are an archivist expert in EAD/XML format for archival records metadata."
12 },
13 {
14 "role": "user",
15 "content": "Give me an example of <controlaccess> content."
16 }
17 ],
18 "option": {
19 "num_ctx": 4096,
20 "temperature": 0.1
21 },
22 "stream": False
23})
24headers = {
25 'Content-Type': 'application/json'
26}
27
28response = requests.request("POST", url, headers=headers, data=payload)
29
30print(response.text)model.config.sliding_window = None@misc{your-citation,
author = {Géraldine Geoffroy},
title = {Gemini-Distill-Qwen2.5-0.5B-ead GGUF Quantized Versions},
year = {2025},
publisher = {Hugging Face},
url = {https://huggingface.co/Geraldine/Gemini-Distill-Qwen2.5-0.5B-ead-GGUF}
}