Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- ja
|
| 4 |
+
tags:
|
| 5 |
+
- g2p
|
| 6 |
+
- grapheme-to-phoneme
|
| 7 |
+
- japanese
|
| 8 |
+
- conformer
|
| 9 |
+
- ctc
|
| 10 |
+
license: mit
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# CC-G2PnP: Japanese Grapheme-to-Phoneme and Prosody Model
|
| 14 |
+
|
| 15 |
+
Conformer-CTC ベースの日本語 G2PnP (Grapheme-to-Phoneme and Prosody) モデル。
|
| 16 |
+
|
| 17 |
+
## Model Details
|
| 18 |
+
|
| 19 |
+
- **Architecture**: Conformer Encoder + CTC Head (84M params)
|
| 20 |
+
- **Training**: 300k steps, T4×4 DDP, SDPA enabled
|
| 21 |
+
- **Checkpoint**: `step_00300000.pt` (25% of full 1.2M steps training)
|
| 22 |
+
|
| 23 |
+
## Usage
|
| 24 |
+
|
| 25 |
+
```python
|
| 26 |
+
import torch
|
| 27 |
+
|
| 28 |
+
checkpoint = torch.load("step_00300000.pt", map_location="cpu")
|
| 29 |
+
```
|
| 30 |
+
|
| 31 |
+
## Repository
|
| 32 |
+
|
| 33 |
+
https://github.com/ayousanz/cc-g2pnp
|