HomeModelsCohere-Transcribe-03-2026
C

CohereLabs/Cohere-Transcribe-03-2026

State-of-the-art speech recognition supporting 100+ languages with timestamps. Optimized for real-time transcription.

speech-recognitionaudiomultilingual1.5B params
28.2K downloads 490 likes Updated 11 minutes ago

Quick Start

# Install transformers
pip install transformers

# Load the model
from transformers import AutoModelForCausalLM, AutoTokenizer

model = AutoModelForCausalLM.from_pretrained("CohereLabs/Cohere-Transcribe-03-2026")
tokenizer = AutoTokenizer.from_pretrained("CohereLabs/Cohere-Transcribe-03-2026")

# Generate
inputs = tokenizer("Hello, I am", return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=100)
print(tokenizer.decode(outputs[0]))

Promote your model on Zoools

Featured models get priority placement in search, trending sections, and recommendations across Zoools.

View Promotion Plans

Related Models