Transformers How to use yuriyvnv/Qwen3-ASR-1.7B-NL with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="yuriyvnv/Qwen3-ASR-1.7B-NL") # Load model directly
from transformers import Qwen3ASRForTraining
model = Qwen3ASRForTraining.from_pretrained("yuriyvnv/Qwen3-ASR-1.7B-NL", dtype="auto")