File size: 1,503 Bytes
5151a29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
language:
- it
license: apache-2.0
tags:
- text-to-speech
- tts
- italian
- qwen
- audio
pipeline_tag: text-to-speech
---

# Italian TTS Model - Qwen3-TTS Fine-tuned

This is an Italian Text-to-Speech model fine-tuned from Qwen3-TTS-12Hz-1.7B-Base.

## Model Details

- **Base Model:** Qwen3-TTS-12Hz-1.7B-Base
- **Language:** Italian (Italiano)
- **Training Data:** 115,000 Italian audio samples
- **Fine-tuning Parameters:**
  - Batch size: 8
  - Learning rate: 1e-5
  - Epochs: 10
  - Gradient accumulation: 4
  - Mixed precision: bf16

## Usage

```python
import torch
from qwen_tts.inference.qwen3_tts_model import Qwen3TTSModel

# Load model
model = Qwen3TTSModel.from_pretrained(
    "Aynursusuz/Qwen-TTS-Best-Model",
    torch_dtype=torch.bfloat16,
)

# Generate speech
text = "Buongiorno, come stai oggi?"
audio = model.inference(
    text=text,
    speaker="italian_voice"
)
```

## Training Details

This model was trained on a high-quality Italian speech dataset with the following configuration:
- GPU: NVIDIA A100 80GB
- Training time: ~15-20 hours
- Optimizer: AdamW with weight decay 0.01
- Best checkpoint selected based on validation loss

## Citation

```bibtex
@misc{qwen-tts-italian-2026,
  author = {Aynur},
  title = {Italian TTS Model based on Qwen3-TTS},
  year = {2026},
  publisher = {Hugging Face},
  howpublished = {\url{https://huggingface.co/Aynursusuz/Qwen-TTS-Best-Model}}
}
```

## License

This model inherits the Apache 2.0 license from the base Qwen3-TTS model.