Automatic Speech Recognition
Transformers
Safetensors
Japanese
English
qwen3_asr
asr
japanese
qwen3-asr
speech
audio
Instructions to use neosophie/Qwen3-ASR-1.7B-JA with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use neosophie/Qwen3-ASR-1.7B-JA with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="neosophie/Qwen3-ASR-1.7B-JA")# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("neosophie/Qwen3-ASR-1.7B-JA") model = AutoModelForMultimodalLM.from_pretrained("neosophie/Qwen3-ASR-1.7B-JA", device_map="auto") - Notebooks
- Google Colab
- Kaggle