115 Commits

Author SHA1 Message Date
Arcitec
a6a955d2aa fix: Add support for melancholic emotion in text-to-emotion vectors
- The "低落" (melancholic) emotion will always be mapped to "悲伤" (sad) by QwenEmotion's text analysis. It doesn't know the difference between those emotions even if the user writes the exact words.

- Since the words and their meanings are so similar, it might not be possible to train QwenEmotion to learn the difference.

- As a workaround, we perform input text analysis and look for words that mean "melancholic", and swap the "sad" detection result, to make the melancholic/low-energy speech emotion work correctly for users via text-to-emotion.
2025-09-08 16:14:38 +02:00
Arcitec
58ad225fb4 fix: Fast and robust text-to-emotion algorithm
- The new algorithm is now very fast and uses less memory, since it doesn't chain multiple `.replace()` calls or create a bunch of temporary strings and temporary dictionaries and lists anymore.

- Parses the JSON output from the QwenEmotion model directly instead of trying to manually parse it. If JSON parsing fails, it falls back to a fast and highly-accurate RegEx search which finds all key-value pairs.

- The desired emotion vector order is now stored as a static class attribute instead of being created from scratch on every call.

- The emotion dictionary creation has been completely rewritten to use a clear algorithm which takes the QwenEmotion answers, builds a new dictionary using `self.desired_vector_order`, maps each key's name to their English translations, fetches the values from QwenEmotion's answers or 0.0 if no value was given by QE, and clamps the values to the min/max ranges.

- The `backup_dict` is now removed, since it was error-prone and fragile. It could grow out of sync with the code if not carefully maintained to keep the correct order and labels.

- To handle the "fallback" dictionary creation, we now automatically scan the final emotion vectors, and if none of them are above 0.0 (meaning we didn't detect any emotions in the input text), we give the final vectors a "calm: 1.0" value. This means that we never have to worry about the fallback dictionary's correctness.

- The previous algorithm had multiple bugs. This rewrite fixes a serious vector order bug: The old algorithm built the dictionary via the found keys, and only checked if there's 8 keys in QwenEmotion's response, but it didn't check that the keys were valid. When building the final emotion dict, it skipped any values if they were not found in QE's response. Meaning that if the QE response only contained 4 of the 8 expected emotion vector labels, those would all be added at the start of the new dictionary as the "first 4 dict slots". After that, it looped through the "backup_dict" and appended any missing values at the end. This resulted in a final emotion dictionary with the wrong order for the emotion vectors. The new code always produces the correct emotion vector order.

- Discovered another bug in the text-to-emotion handling for the "melancholic" emotion, which has never worked for Chinese or English at all. It will be fixed in an upcoming patch.
2025-09-08 16:14:38 +02:00
Arcitec
feba501013 fix: Fix internal text-to-emotion vector labels
- The order of the `convert_dict` now matches the desired order of the emotion vectors, for clarity.

- Internal text labels now match the updated English translations.

- This (and the previous commit) also fixes a bug: The previous, inaccurate Emotion translations meant that QwenEmotion could not understand words such as "low" at all (no emotion mapping), and it always mapped "hate" to "angry". With the fixed translations, QwenEmotion now correctly maps text-to-emotions from English inputs when users input the words that they've been taught by the user interface.
2025-09-08 16:14:38 +02:00
Arcitec
cb0e07f982 refactor(i18n): More accurate emotion translations to improve clarity
- Matches training data better.

- Easier to understand the purpose of the sliders.

- Consistent use of adjectives so that the user interface looks nicer.

- Reasoning:

* Hate -> Disgusted: The original Chinese word expresses disgust, not hatred. Hatred is an angry emotion and was confusing since there's already an Angry slider.

* Low -> Melancholic: The original Chinese word talks about feeling melancholic / down low, a state of slow speech and subdued emotions, which is not the same as sadness or depression. The word "Low" is very confusing for this emotion. The most accurate word for the emotion is "melancholic".

* Neutral -> Calm: The original Chinese word describes a state of being at peace and tranquility. It's not a neutral, non-emotional state. It's a state of being calm and relaxed.
2025-09-08 16:14:38 +02:00
Arcitec
1845e60aa5 refactor(i18n): Improve description of generation segmentation 2025-09-08 16:14:38 +02:00
Arcitec
5f0b0a9f9c feat(i18n): Add missing UI translation strings 2025-09-08 16:14:38 +02:00
Arcitec
55b7d32149 fix: Fix character encoding in examples 2025-09-08 16:14:38 +02:00
Arcitec
d5cdb5eb3c fix: Suppress pandas PyArrow future dependency warning
Moving the import of pandas *after* we've suppressed FutureWarning, to hide a big and useless warning saying that "Pandas 3.x will require PyArrow".
2025-09-08 16:14:38 +02:00
Arcitec
3e64c4ac11 fix: Update pandas to fix Gradio errors
Gradio requires Pandas >= 2.2.0, otherwise it will throw errors in some situations (such as when GPU is Out of Memory).
2025-09-08 16:14:38 +02:00
Arcitec
5ffb84b427 fix: Improve .gitignore and re-add config file
- Improves organization and removes extra junk files.

- Unignores *.yaml files such as config.yaml from the /checkpoints/ directory since we need that file.
2025-09-08 16:14:38 +02:00
十字鱼
9d4776b082
Use without deepspeed (#280)
Use without deepspeed
2025-09-08 22:09:26 +08:00
kemuriririn
474ec9b6cf
Dev kemurin (#284)
* update deps for windows

* update reqs & README

* update README.md

* update README.md

---------

Co-authored-by: wangyining02 <wangyining02@bilibili.com>
2025-09-08 21:53:27 +08:00
kemuriririn
fd0a77d390
update deps for windows (#282)
Co-authored-by: wangyining02 <wangyining02@bilibili.com>
2025-09-08 20:59:31 +08:00
kemuriririn
c1a5e39716
Indextts2 (#278)
* indextts2

* update lfs for audio files

* fix pypi source & add python version

---------

Co-authored-by: wangyining02 <wangyining02@bilibili.com>
2025-09-08 18:42:02 +08:00
index-tts
92d50a6ba0
Merge pull request #277 from index-tts/tts2dev
Tts2dev fix video
2025-09-08 17:55:53 +08:00
shujingchen
f61d128893 update 2025-09-08 17:55:14 +08:00
shujingchen
3355074853 remove video 2025-09-08 17:52:14 +08:00
shujingchen
2c88c9731f add download link& update video 2025-09-08 17:51:20 +08:00
kemuriririn
72c09ec0b7
Indextts2 (#276)
* indextts2

* update lfs for audio files

---------

Co-authored-by: wangyining02 <wangyining02@bilibili.com>
2025-09-08 17:36:39 +08:00
root
9098497272 Fix the bug that 嗯 cannot be synthesized. 2025-06-17 17:48:04 +08:00
index-tts
10d557a15e
Merge pull request #180 from yrom/fix-bugs
Improve loading `alias_free_activation_cuda`
2025-05-29 11:06:53 +08:00
yrom
92bb2eb0c0 fix: 避免在 MinGW-w64 环境 jit compile cuda ext 2025-05-29 09:01:56 +08:00
kemuriririn
7a5c56bfe2
Update README.md 2025-05-26 13:42:51 +08:00
yrom
59c05c0765
fix: add force_rebuild flag for fused alias_free_activation and update installation instructions 2025-05-23 15:07:39 +08:00
index-tts
414f2a4052
Merge pull request #178 from yrom/fix-front
fix: 添加英语缩写处理
2025-05-23 14:07:50 +08:00
yrom
bb4d76aa2a fix: 添加英语缩写处理
临时解决WeTextProcessing 的部分badcase
2025-05-23 10:07:48 +08:00
index-tts
9d8a6a65fa
Merge pull request #169 from yrom/fix-text-tokenizer
Fixes issues of text normalizer
2025-05-21 15:31:31 +08:00
Yrom
7d943b362d
fix: update PINYIN_TONE_PATTERN and NormalizerZh 2025-05-21 13:01:25 +08:00
index-tts
d26310d7cf
Merge pull request #161 from yrom/fix-tokenizer
fix 分句逻辑,增加测试用例
2025-05-19 08:28:01 +08:00
yrom
3553a3755d fix 分句逻辑,增加测试用例
不包含。!?的句子没有被正确分句
2025-05-18 22:53:51 +08:00
index-tts
c0c17fe387
Merge pull request #160 from yrom/fix-infer
适配1.5版本模型,优化Webui,适配新版本transformers
2025-05-18 22:14:32 +08:00
yrom
c178198ed7 padding_test.py support model dir for test 2025-05-18 19:57:11 +08:00
yrom
76e7645a8d 更新WebUI,添加模型目录检查和必要文件验证
- 新增示例
- 新增模型版本提示
- 新增生成参数设置
- 新增分句预览
2025-05-18 19:41:06 +08:00
yrom
60a2238eac sample_kwargs 替换为 generation_kwargs 2025-05-18 19:34:41 +08:00
yrom
96d3b75708 添加警告提示:生成停止因超出 max_mel_tokens 限制 2025-05-18 19:34:41 +08:00
yrom
7e52976bd1 删除测试代码 2025-05-18 19:34:41 +08:00
yrom
1b7529cacd 适配新版本transformers 2025-05-18 19:34:41 +08:00
yrom
22eeb7625f 修正attention mask和positional embeddings
- 将之前只有text右侧填充改为cond+text 整体左侧填充
- 添加填充测试用例
2025-05-18 19:34:32 +08:00
yrom
a50cb8c287 优化文本掩码填充逻辑,改进句子桶化处理 2025-05-17 20:59:07 +08:00
yrom
4de7611bda fix 批量推理1.5版本模型问题,调整分句逻辑和参数设置
- 将pad 改为全 eos token
- 优化bucket_sentences 算法
2025-05-17 14:40:01 +08:00
yrom
8f7c1f3e93 优化inference attention mask 2025-05-17 14:38:01 +08:00
yrom
cb6c73d391 优化文本归一化和分句逻辑
修复可能的递归问题 (Fixes #124)
2025-05-17 11:16:54 +08:00
index-tts
9c584159c9
Update README.md 2025-05-14 17:07:05 +08:00
root
e31de1e119 release IndexTTS-1.5 2025-05-14 11:15:20 +08:00
index-tts
141599f04d
Merge pull request #122 from yrom/feat/opt-text-tokenizer
Introduce a new `TextTokenizer` class to enhance text normalization and tokenization
2025-04-25 11:42:03 +08:00
yrom
d3bd7eb8b2 Fix split_sentences_by_token 2025-04-24 23:58:16 +08:00
Yrom
475fb12574
Fix pinyin correction 2025-04-24 20:38:52 +08:00
Yrom
35b6514ee5
Enhance text normalization and tokenization
- Introduced `de_tokenized_by_CJK_char` for restoring original text from tokenized format.
- Added `TextTokenizer` class for improved tokenization, including sentence splitting and handling of special tokens.
- Enhanced `TextNormalizer` to handle names and pinyin tones with placeholder mechanisms.
- Added regression tests for new features in `regression_test.py`.
2025-04-24 20:28:44 +08:00
Yrom
dd2b7dd820
Fix autocast device type for compatibility 2025-04-24 11:00:49 +08:00
Yrom
bfd787eaa6
Update setup.py 2025-04-24 10:59:09 +08:00