How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
# Warning: Pipeline type "translation" is no longer supported in transformers v5.
# You must load the model directly (see below) or downgrade to v4.x with:
# 'pip install "transformers<5.0.0'
from transformers import pipeline

pipe = pipeline("translation", model="zenlm/zen-translator", device_map="auto")
# Load model directly
from transformers import ZenTranslatorForSpeechTranslation
model = ZenTranslatorForSpeechTranslation.from_pretrained("zenlm/zen-translator", dtype="auto", device_map="auto")
Quick Links

Status: Experimental — this repository does not publish usable model weights. For a working translation model see zenlm/zen-multilingual.

Zen Translator

Multilingual translation model supporting 100+ language pairs.

Overview

Developed by Hanzo AI and the Zoo Labs Foundation.

API Access

curl https://api.hanzo.ai/v1/chat/completions \
  -H "Authorization: Bearer $HANZO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model": "zen-translator", "messages": [{"role": "user", "content": "Hello"}]}'

Get your API key at console.hanzo.ai — $5 free credit on signup.

Model Details

Attribute Value
Parameters 7B
Architecture Zen MoDE
License Apache 2.0

License

Apache 2.0

Downloads last month
34
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Collection including zenlm/zen-translator