--- pipeline_tag: text-to-speech language: - en - ja tags: - audio - tts - qwen3-tts - custom-voice - finetuned base_model: Qwen/Qwen3-TTS-12Hz-0.6B-Base --- # Christina TTS This model features a custom voice inspired by the character Kurisu Makise from visual novel game 'Steins;Gate'. ## About the Voice **Important disclaimer:** The voice actress in this model is **not** Asami Imai or any other official voice actor. This is a fan recreation using synthetic and real data, which explains any differences from the original character's voice. The voice actress who lent her voice wishes to remain private. Thank you for your understanding. Training data includes synthetic material and real recordings, including samples from [Loke-60000/Christina-TTS-I](https://huggingface.co/datasets/Loke-60000/Christina-TTS-I). ## Speakers This model includes two voice variants, each optimized for different use cases: | Speaker | ID | Best For | |---------|-----|----------| | `christina` | 3000 | English speech | | `christina-jp` | 3001 | Japanese speech | ### Why Two Variants? - **`christina`**: Trained primarily on English data. Produces natural English speech with proper intonation and rhythm. When speaking Japanese, it may lose some native intonation patterns. - **`christina-jp`**: Trained primarily on Japanese data. Produces natural Japanese speech. When speaking English, it retains a Japanese accent, which may be desirable for certain character portrayals. Choose the variant that matches your primary output language for the most natural results. ## Language Support The base model theoretically supports languages beyond English and Japanese. However, no quality guarantees are made for other languages, since this fine-tune was specifically trained for English and Japanese use. If another language seems important for your use case, feel free to contact me and we can discuss it for a future update. ## Quickstart ### Installation ```bash pip install -U qwen-tts # Optional: for optimized performance pip install -U flash-attn --no-build-isolation ``` ## Quick Usage ```python import torch import soundfile as sf from qwen_tts import Qwen3TTSModel model = Qwen3TTSModel.from_pretrained( "Loke-60000/Christina-TTS", device_map="cuda:0", dtype=torch.bfloat16, attn_implementation="flash_attention_2", ) # English-focused voice wavs_en, sr = model.generate_custom_voice( text="I finally managed to finish the experiment.", speaker="christina", language="English", ) sf.write("christina_en.wav", wavs_en[0], sr) # Japanese-focused voice wavs_ja, sr = model.generate_custom_voice( text="やっと実験が終わったわ。", speaker="christina-jp", language="Japanese", ) sf.write("christina_jp.wav", wavs_ja[0], sr) ``` You can also inspect the available voices with `model.get_supported_speakers()`. ## License & Usage This model is **free to download and use**. However, no training data will be shared. **If you use this model in any project, please provide credit.**