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
Update README.md
Browse files
README.md
CHANGED
|
@@ -44,7 +44,7 @@ Designed for Japanese ASR tasks requiring accurate transcription of:
|
|
| 44 |
|
| 45 |
| Spoken | Expected output |
|
| 46 |
| ------ | --------------- |
|
| 47 |
-
| 一万二千三百四十五 | `
|
| 48 |
| 十人 | `10人` |
|
| 49 |
|
| 50 |
#### Math / Code
|
|
|
|
| 44 |
|
| 45 |
| Spoken | Expected output |
|
| 46 |
| ------ | --------------- |
|
| 47 |
+
| 一万二千三百四十五 | `1万2345` |
|
| 48 |
| 十人 | `10人` |
|
| 49 |
|
| 50 |
#### Math / Code
|