MamayLM-Gemma-3-27B-IT-v2.0

MamayLM v2.0 is a series of Ukrainian-adapted LLMs based on Gemma 3, developed by INSAIT. Available in 12B and 27B sizes. The successor to MamayLM-Gemma-3-12B-IT-v1.0.

Blog post: MamayLM v2.0 Release

Key improvements over MamayLM v1.0

  1. Vision-language understanding — The model understands both text and images within the same context.
  2. Instruction-following — Trained on a broader range of tasks, multi-turn conversations, complex instructions, and system prompts.
  3. Improved localization — Better Ukrainian alignment and cultural understanding.
  4. Updated knowledge cut-off — Pretraining data up to May 2025, instruction fine-tuning up to October 2025.

MamayLM v2.0 — overall benchmark performance

Figure 1: Overall performance on English and Ukrainian benchmarks.

Usage

Transformers

from transformers import AutoProcessor, Gemma3ForConditionalGeneration
import torch

model_id = "INSAIT-Institute/MamayLM-Gemma-3-27B-IT-v2.0"

processor = AutoProcessor.from_pretrained(model_id)
model = Gemma3ForConditionalGeneration.from_pretrained(
    model_id, device_map="auto"
).eval()

messages = [
    {
        "role": "user",
        "content": [{"type": "text", "text": "Коли був заснований Київський університет?"}],
    },
]

inputs = processor.apply_chat_template(
    messages, add_generation_prompt=True, tokenize=True,
    return_dict=True, return_tensors="pt"
).to(model.device, dtype=torch.bfloat16)

input_len = inputs["input_ids"].shape[-1]

with torch.inference_mode():
    generation = model.generate(**inputs, max_new_tokens=512, do_sample=True, temperature=0.2)
    generation = generation[0][input_len:]

print(processor.decode(generation, skip_special_tokens=True))

With an image

messages = [
    {
        "role": "user",
        "content": [
            {"type": "image", "image": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/bee.jpg"},
            {"type": "text", "text": "Опиши, що ти бачиш на зображенні."},
        ],
    },
]

inputs = processor.apply_chat_template(
    messages, add_generation_prompt=True, tokenize=True,
    return_dict=True, return_tensors="pt"
).to(model.device, dtype=torch.bfloat16)

input_len = inputs["input_ids"].shape[-1]

with torch.inference_mode():
    generation = model.generate(**inputs, max_new_tokens=512, do_sample=True, temperature=0.2)
    generation = generation[0][input_len:]

print(processor.decode(generation, skip_special_tokens=True))

vLLM

from vllm import LLM, SamplingParams

llm = LLM(model="INSAIT-Institute/MamayLM-Gemma-3-27B-IT-v2.0")
params = SamplingParams(max_tokens=512, temperature=0.2)

messages = [
    {
        "role": "user",
        "content": [{"type": "text", "text": "Коли був заснований Київський університет?"}],
    },
]

outputs = llm.chat(messages, sampling_params=params)
print(outputs[0].outputs[0].text)

Serving with the OpenAI-compatible API:

vllm serve INSAIT-Institute/MamayLM-Gemma-3-27B-IT-v2.0

FP8 for faster inference

Do not use vLLM's on-the-fly quantization="fp8" flag with this base model — it silently quantizes the vision tower and multi-modal projector, producing garbage outputs on image inputs.

For ~2× memory reduction with vision preserved, use the FP8 dynamic quantized variant instead:

vllm serve INSAIT-Institute/MamayLM-Gemma-3-27B-IT-v2.0-FP8-dynamic

License

MamayLM-Gemma-3-27B-IT-v2.0 is distributed under the Gemma Terms of Use.

Downloads last month
223
Safetensors
Model size
27B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for INSAIT-Institute/MamayLM-Gemma-3-27B-IT-v2.0

Finetunes
2 models
Quantizations
3 models

Collection including INSAIT-Institute/MamayLM-Gemma-3-27B-IT-v2.0