Streaming Translation and Transcription Through Speech-to-Text Causal Alignment
Paper • 2603.11578 • Published
How to use sbintuitions/hikari-medium with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="sbintuitions/hikari-medium") # Load model directly
from transformers import HikariForGRPO
model = HikariForGRPO.from_pretrained("sbintuitions/hikari-medium", device_map="auto")Hikari-medium is a streaming speech-to-text translation and transcription model. It performs simultaneous, low-latency translation directly from audio, without waiting for an utterance to finish.
Hikari is a Whisper-style encoder-decoder with two modifications:
Training and the causal-alignment objective are described in the paper.
audio chunks ──▶ Causal Whisper Encoder ──▶ Whisper Decoder ──▶ streaming text
| Task | Description |
|---|---|
transcribe |
Simultaneous speech-to-text (English) |
translate |
Simultaneous speech-to-text translation (EN→JA, EN→DE, EN→RU) |
The model is intended to be served with the hikari-server / hikari-client tools from the Hikari repository.
# install
uv venv .venv --python=3.10 && source .venv/bin/activate
uv pip install torch==2.8.0 torchcodec==0.7.0 torchaudio==2.8.0 torchvision==0.23.0 \
--index-url https://download.pytorch.org/whl/cu126
uv pip install "hikari @ git+https://github.com/sbintuitions/hikari"
# start the server (GPU machine) — the checkpoint is fetched from this repo
hikari-server --port 4440 --checkpoint sbintuitions/hikari-medium --device cuda:0
# start the client (local machine), then open http://localhost:5666
hikari-client --server-port 4440 --app-port 5666 --chunk-ms 80
See the README on GitHub for SSH tunneling, development install, and the full configuration surface.
Built on top of OpenAI's Whisper.
Released under the MIT License.
@misc{koshkin2026streamingtranslationtranscriptionspeechtotext,
title={Streaming Translation and Transcription Through Speech-to-Text Causal Alignment},
author={Roman Koshkin and Jeon Haesung and Lianbo Liu and Hao Shi and Mengjie Zhao and Yusuke Fujita and Yui Sudo},
year={2026},
eprint={2603.11578},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2603.11578}
}