Modele në shqip
Collection
15 items
•
Updated
•
5
This is a fine-tuned variant of Qwen/Qwen3-ASR-1.7B for Albanian (sq / Shqip) automatic speech recognition.
It is trained on ~550 hours of carefully curated Albanian audio + transcripts.
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="Albanian", # 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 Albanian<asr_text>... (see upstream docs); this fine-tune follows that convention.Base model
Qwen/Qwen3-ASR-1.7B