Views
No views yet
kyutai/moshiko-pytorch-bf16 on ~5000 synthesized Hebrew dialogues.lora.safetensors — LoRA adapter weights (1.4 GB)config.json — Moshi LM config (with lora=true, lora_rank=128, lora_scaling=2.0)dialogue_infer.py — example inference script1# 1. Setup
2python3 -m venv .venv && source .venv/bin/activate
3pip install --index-url https://download.pytorch.org/whl/cu128 torch==2.7.0 torchaudio==2.7.0
4pip install moshi sphn soundfile huggingface_hub safetensors numpy
5
6# 2. Download this LoRA from HF (assumes you're logged in: hf auth login)
7hf download dm15/moshi-hebrew-v3-ckpt1800 --local-dir ./moshi_he_lora
8
9# 3. Run dialogue inference
10TORCHDYNAMO_DISABLE=1 python dialogue_infer.py \
11 --lora ./moshi_he_lora/lora.safetensors \
12 --user-text "היי שלום מה נשמע" \
13 --out-prefix /tmp/dialogue1/tmp/dialogue1_user.wav — synthesized "user" utterance (TTS-style)/tmp/dialogue1_model.wav — model's audio reply/tmp/dialogue1_transcript.txt — model's text replykyutai/moshiko-pytorch-bf16