Automatic Speech Recognition
Transformers
Safetensors
English
qwen3_asr
speech
qwen3-asr
qwen
english
fine-tuned
medical
multimed
common-voice
Eval Results (legacy)
Instructions to use yuriyvnv/Qwen3-ASR-1.7B-EN-Medical with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use yuriyvnv/Qwen3-ASR-1.7B-EN-Medical 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-EN-Medical")# Load model directly from transformers import Qwen3ASRForTraining model = Qwen3ASRForTraining.from_pretrained("yuriyvnv/Qwen3-ASR-1.7B-EN-Medical", dtype="auto") - Notebooks
- Google Colab
- Kaggle
File size: 1,008 Bytes
bfaf53e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | {
"additional_special_tokens": [
"<|im_start|>",
"<|im_end|>",
"<|object_ref_start|>",
"<|object_ref_end|>",
"<|box_start|>",
"<|box_end|>",
"<|quad_start|>",
"<|quad_end|>",
"<|vision_start|>",
"<|vision_end|>",
"<|vision_pad|>",
"<|image_pad|>",
"<|video_pad|>",
"<|audio_start|>",
"<|audio_end|>",
"<tts_pad>",
"<tts_text_bos>",
"<tts_text_bos_single>",
"<|audio_pad|>"
],
"audio_bos_token": "<|audio_start|>",
"audio_eos_token": "<|audio_end|>",
"audio_token": "<|audio_pad|>",
"eos_token": {
"content": "<|im_end|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false
},
"image_token": "<|image_pad|>",
"pad_token": {
"content": "<|endoftext|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false
},
"video_token": "<|video_pad|>",
"vision_bos_token": "<|vision_start|>",
"vision_eos_token": "<|vision_end|>"
}
|