0
stars
5
commits
1
repos using this model
3
linked in READMEs
Jun 3, 2026
updated
This repository hosts Dixtral_QA, developed by BUT Speech@FIT. Dixtral couples the Voxtral-Mini-3B spoken-language model with the DiCoW diarization-conditioned encoder, giving the LLM target-speaker awareness in multi-talker audio.
This checkpoint is tuned for spoken question answering over conversational/meeting audio. For pure target-speaker transcription, use Dixtral_TS-ASR instead.
from transformers import AutoModel, AutoProcessor
MODEL_NAME = "BUT-FIT/Dixtral_QA"
model = AutoModel.from_pretrained(MODEL_NAME, trust_remote_code=True)
processor = AutoProcessor.from_pretrained(MODEL_NAME)
β‘οΈ For full inference pipelines (diarization β FDDT masks β generation), see the Dixtral GitHub repository.
π§ Email: ipoloka@fit.vut.cz π’ Affiliation: BUT Speech@FIT, Brno University of Technology π GitHub: BUTSpeechFIT
5 commits
0
stars
5
commits
1
repos using this model
3
linked in READMEs
Jun 3, 2026
updated
This repository hosts Dixtral_QA, developed by BUT Speech@FIT. Dixtral couples the Voxtral-Mini-3B spoken-language model with the DiCoW diarization-conditioned encoder, giving the LLM target-speaker awareness in multi-talker audio.
This checkpoint is tuned for spoken question answering over conversational/meeting audio. For pure target-speaker transcription, use Dixtral_TS-ASR instead.
from transformers import AutoModel, AutoProcessor
MODEL_NAME = "BUT-FIT/Dixtral_QA"
model = AutoModel.from_pretrained(MODEL_NAME, trust_remote_code=True)
processor = AutoProcessor.from_pretrained(MODEL_NAME)
β‘οΈ For full inference pipelines (diarization β FDDT masks β generation), see the Dixtral GitHub repository.
π§ Email: ipoloka@fit.vut.cz π’ Affiliation: BUT Speech@FIT, Brno University of Technology π GitHub: BUTSpeechFIT
5 commits