Norwegian models
Collection
By: Kushtrim Visoka โข 6 items โข Updated
This is a fine-tuned variant of Qwen/Qwen3-ASR-1.7B for Norwegian automatic speech recognition.
From the upstream model card, Qwen3-ASR provides:
qwen-asr toolkit.See the full upstream documentation here:
qwen-asr)
Install:
pip install -U qwen-asr
Load this model from a local folder (this directory) and transcribe:
import torch
from qwen_asr import Qwen3ASRModel
model = Qwen3ASRModel.from_pretrained(
"./",
dtype=torch.bfloat16,
device_map="cuda:0",
max_inference_batch_size=32,
max_new_tokens=256,
)
results = model.transcribe(
audio="path/to/audio.wav",
language="Norwegian", # or None for auto language ID
)
print(results[0].language)
print(results[0].text)
Extracted from saved transformers training artifacts in this folder:
2e-5adamw_torch_fusedlanguage Norwegian<asr_text>... (see upstream docs); this fine-tune follows that convention.Base model
Qwen/Qwen3-ASR-1.7B