Instructions to use INSAIT-Institute/MamayLM-Gemma-3-27B-IT-v2.0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use INSAIT-Institute/MamayLM-Gemma-3-27B-IT-v2.0 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="INSAIT-Institute/MamayLM-Gemma-3-27B-IT-v2.0") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("INSAIT-Institute/MamayLM-Gemma-3-27B-IT-v2.0") model = AutoModelForMultimodalLM.from_pretrained("INSAIT-Institute/MamayLM-Gemma-3-27B-IT-v2.0") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use INSAIT-Institute/MamayLM-Gemma-3-27B-IT-v2.0 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "INSAIT-Institute/MamayLM-Gemma-3-27B-IT-v2.0" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "INSAIT-Institute/MamayLM-Gemma-3-27B-IT-v2.0", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/INSAIT-Institute/MamayLM-Gemma-3-27B-IT-v2.0
- SGLang
How to use INSAIT-Institute/MamayLM-Gemma-3-27B-IT-v2.0 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "INSAIT-Institute/MamayLM-Gemma-3-27B-IT-v2.0" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "INSAIT-Institute/MamayLM-Gemma-3-27B-IT-v2.0", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "INSAIT-Institute/MamayLM-Gemma-3-27B-IT-v2.0" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "INSAIT-Institute/MamayLM-Gemma-3-27B-IT-v2.0", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use INSAIT-Institute/MamayLM-Gemma-3-27B-IT-v2.0 with Docker Model Runner:
docker model run hf.co/INSAIT-Institute/MamayLM-Gemma-3-27B-IT-v2.0
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
- Vision-language understanding — The model understands both text and images within the same context.
- Instruction-following — Trained on a broader range of tasks, multi-turn conversations, complex instructions, and system prompts.
- Improved localization — Better Ukrainian alignment and cultural understanding.
- Updated knowledge cut-off — Pretraining data up to May 2025, instruction fine-tuning up to October 2025.
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