Views
No views yet
| File Name | Description |
|---|---|
qwen3-0.6B-unimarc-grpo-Q2_K.gguf | Ultra-low precision (2-bit) for extreme compression |
qwen3-0.6B-unimarc-grpo-Q3_K_M.gguf | 3-bit quantization with mixed precision |
qwen3-0.6B-unimarc-grpo-Q4_K_M.gguf | 4-bit quantization with mixed precision |
qwen3-0.6B-unimarc-grpo-Q5_K_M.gguf | 5-bit quantization with mixed precision |
qwen3-0.6B-unimarc-grpo-Q6_K.gguf | 6-bit quantization |
qwen3-0.6B-unimarc-grpo-Q8_0.gguf | 8-bit quantization for balance between speed and accuracy |
qwen3-0.6B-unimarc-grpo-fp16.gguf | 16-bit floating point (fp16) version |
llama.cpp, use the following command:./main -m qwen3-0.6B-unimarc-grpo-Q4_K_M.gguf -p "Convert the following bibliographic raw data into Unimarc/XML record: ..."1from gpt4all import GPT4All
2
3model_path = "qwen3-0.6B-unimarc-grpo-Q4_K_M.gguf"
4model = GPT4All(model_path)
5response = model.generate("Convert the following bibliographic raw data into Unimarc/XML record:")
6print(response)ollama run hf.co/Geraldine/qwen3-0.6B-unimarc-grpo-GGUF:Q8_01import requests
2import json
3
4url = "http://localhost:11434/v1/chat/completions"
5
6payload = json.dumps({
7 "model": "hf.co/Geraldine/qwen3-0.6B-unimarc-grpo-GGUF:Q8_0",
8 "messages": [
9 {
10 "role": "system",
11 "content": system_prompt
12 },
13 {
14 "role": "user",
15 "content": "Title: ...\nAuthors: ..."
16 }
17 ],
18 "option": {
19 "num_ctx": 4096,
20 "temperature": 0.6,
21 "top_p": 0.95,
22 "top_k": 20,
23 "min_p": 0
24 },
25 "stream": False
26})
27headers = {
28 'Content-Type': 'application/json'
29}
30
31response = requests.request("POST", url, headers=headers, data=payload)
32
33print(response.text)@misc{your-citation,
author = {Géraldine Geoffroy},
title = {qwen3-0.6B-unimarc-grpo GGUF Quantized Versions},
year = {2025},
publisher = {Hugging Face},
url = {https://huggingface.co/Geraldine/qwen3-0.6B-unimarc-grpo-GGUF}
}