Modelle: Übersicht und Einsatz

Name,Size,Context,Input

translategemma

A new collection of open translation models built on Gemma 3, helping people communicate across 55 languages.

Links: Google Blog, Huggingface

Models

NameSizeContextInput
translategemma:latest3.3GB128K
Text, Image
translategemma:4b (latest) 3.3GB128KText, Image
translategemma:12b8.1GB128K
Text, Image
translategemma:27b17GB128KText, Image
ollama run translategemma
from ollama import chat

response = chat(
    model='translategemma',
    messages=[{'role': 'user', 'content': 'Hello!'}],
)
print(response.message.content)

glm-ocr

GLM-OCR is a multimodal OCR model for complex document understanding, built on the GLM-V encoder–decoder architecture.

Links: github.com

ollama run glm-ocr
# Text recognition
ollama run glm-ocr Text Recognition: ./image.png

# Table recognition
ollama run glm-ocr Table Recognition: ./image.png

# Figure recognition
ollama run glm-ocr Figure Recognition: ./image.png