File size: 2,438 Bytes
61c0b46
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2d0c712
 
 
 
 
 
 
 
 
 
 
 
987bda1
2d0c712
 
 
 
 
 
 
61c0b46
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
47af7b6
 
 
0922beb
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
---
license: apache-2.0
language:
  - ja
  - en
library_name: transformers
base_model: Qwen/Qwen3-ASR-1.7B
pipeline_tag: automatic-speech-recognition
tags:
  - automatic-speech-recognition
  - asr
  - japanese
  - qwen3-asr
  - speech
  - audio
---

# Japanese Proper-Noun Fine-tuned Qwen3-ASR

A fine-tuned checkpoint of [`Qwen/Qwen3-ASR-1.7B`](https://huggingface.co/Qwen/Qwen3-ASR-1.7B) optimized for Japanese automatic speech recognition.

This variant is specifically trained to improve recognition of Japanese proper nouns, organization names, product names, service names, and kanji-heavy expressions that general-purpose ASR models tend to mistranscribe.

## Intended Use

Designed for Japanese ASR tasks requiring accurate transcription of:

- Proper nouns (people, places, organizations)
- Difficult or uncommon kanji spellings
- Company and product names
- Mixed Japanese/English technical terminology

### Example Normalizations

#### Product / Company Names

| Spoken | Expected output |
| ------ | --------------- |
| ジェミニ | `Gemini` |
| アンスロピック | `Anthropic` |
| ノートブックLM | `NotebookLM` |

#### Japanese Numerals

| Spoken | Expected output |
| ------ | --------------- |
| 一万二千三百四十五 | `1万2345` |
| 十人 | `10人` |

#### Math / Code

| Spoken | Expected output |
| ------ | --------------- |
| AイコールAプラス1 | `A=A+1` |

## Model Details

|                       |                                              |
| --------------------- | -------------------------------------------- |
| **Base model**        | `Qwen/Qwen3-ASR-1.7B`                        |
| **Task**              | Automatic speech recognition                 |
| **Language**          | Japanese (ja), English (en)                  |
| **Fine-tuning focus** | Japanese proper nouns & technical vocabulary |

## Quickstart

Install the runtime package:

```bash
pip install -U qwen-asr
```

Transcribe a local audio file:

```python
import torch
from qwen_asr import Qwen3ASRModel

model = Qwen3ASRModel.from_pretrained(
    "neosophie/Qwen3-ASR-1.7B-JA",
    dtype=torch.bfloat16,
    device_map="cuda:0",
)

results = model.transcribe(audio="/path/to/audio.wav")

print(results[0].language)
print(results[0].text)
```

## Acknowledgments

- [Qwen3-ASR-1.7B](https://huggingface.co/Qwen/Qwen3-ASR-1.7B) — base model by Alibaba Cloud

---

Built by [Neosophie](https://neosophie.com/)