Emiliyan Pavlov commited on
Commit
3147c1f
·
verified ·
1 Parent(s): 1d294ea

Update model card

Browse files
Files changed (1) hide show
  1. README.md +87 -0
README.md ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: gemma
3
+ pipeline_tag: image-text-to-text
4
+ base_model: INSAIT-Institute/MamayLM-Gemma-3-27B-IT-v2.0
5
+ tags:
6
+ - gemma3
7
+ - uk
8
+ - ukrainian
9
+ - gguf
10
+ language:
11
+ - uk
12
+ - en
13
+ ---
14
+
15
+ # MamayLM-Gemma-3-27B-IT-v2.0-GGUF
16
+
17
+ GGUF quantized versions of [MamayLM-Gemma-3-27B-IT-v2.0](https://huggingface.co/INSAIT-Institute/MamayLM-Gemma-3-27B-IT-v2.0) for use with llama.cpp, Ollama, LM Studio, and other GGUF-compatible tools. MamayLM v2.0 is a series of Ukrainian-adapted LLMs based on Gemma 3, developed by [INSAIT](https://insait.ai).
18
+
19
+ **Blog post**: [MamayLM v2.0 Release](https://models.mamay.ai/blog/mamaylm-v2-release-en/)
20
+
21
+ ### Key improvements over MamayLM v1.0
22
+
23
+ 1. **Vision-language understanding** — The model understands both text and images within the same context.
24
+ 2. **Instruction-following** — Trained on a broader range of tasks, multi-turn conversations, complex instructions, and system prompts.
25
+ 3. **Longer context** — Effective context of 131k tokens for longer conversations and complex instructions.
26
+ 4. **Updated knowledge cut-off** — Pretraining data up to May 2025, instruction fine-tuning up to October 2025.
27
+
28
+ ## Available quantizations
29
+
30
+ | Filename | Quant type | Description |
31
+ |----------|-----------|-------------|
32
+ | `MamayLM-Gemma-3-27B-IT-v2.0-Q4_K_M.gguf` | Q4_K_M | Good balance of quality and size — **recommended** |
33
+ | `MamayLM-Gemma-3-27B-IT-v2.0-Q5_K_M.gguf` | Q5_K_M | High quality, slightly larger |
34
+ | `MamayLM-Gemma-3-27B-IT-v2.0-Q6_K.gguf` | Q6_K | Very high quality, near lossless |
35
+ | `MamayLM-Gemma-3-27B-IT-v2.0-Q8_0.gguf` | Q8_0 | Essentially lossless |
36
+
37
+ ## Usage
38
+
39
+ ### llama.cpp
40
+
41
+ ```bash
42
+ # Download a specific quantization
43
+ huggingface-cli download INSAIT-Institute/MamayLM-Gemma-3-27B-IT-v2.0-GGUF \
44
+ --include "MamayLM-Gemma-3-27B-IT-v2.0-Q4_K_M.gguf" \
45
+ --local-dir .
46
+
47
+ # Run with llama-cli
48
+ llama-cli -m MamayLM-Gemma-3-27B-IT-v2.0-Q4_K_M.gguf \
49
+ -p "Коли був заснований Київський університет?" \
50
+ -n 512
51
+ ```
52
+
53
+ ### Ollama
54
+
55
+ Create a `Modelfile`:
56
+
57
+ ```
58
+ FROM ./MamayLM-Gemma-3-27B-IT-v2.0-Q4_K_M.gguf
59
+ ```
60
+
61
+ Then:
62
+
63
+ ```bash
64
+ ollama create mamaylm-gemma3-27b-v2.0 -f Modelfile
65
+ ollama run mamaylm-gemma3-27b-v2.0
66
+ ```
67
+
68
+ ### LM Studio
69
+
70
+ Search for `MamayLM-Gemma-3-27B-IT-v2.0-GGUF` in the model browser, or download a GGUF file manually and load it.
71
+
72
+ ## Download
73
+
74
+ ```bash
75
+ # Download all quantizations
76
+ huggingface-cli download INSAIT-Institute/MamayLM-Gemma-3-27B-IT-v2.0-GGUF
77
+
78
+ # Download a specific file
79
+ huggingface-cli download INSAIT-Institute/MamayLM-Gemma-3-27B-IT-v2.0-GGUF \
80
+ --include "MamayLM-Gemma-3-27B-IT-v2.0-Q4_K_M.gguf" \
81
+ --local-dir .
82
+ ```
83
+
84
+
85
+ ## License
86
+
87
+ MamayLM-Gemma-3-27B-IT-v2.0-GGUF is distributed under the [Gemma Terms of Use](https://ai.google.dev/gemma/terms).