mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2026-06-12 12:03:12 +08:00
Compare commits
5 Commits
36d91f38c8
...
b5e70761e8
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b5e70761e8 | ||
|
|
c767f0b83b | ||
|
|
9080a967d5 | ||
|
|
e8e794daa4 | ||
|
|
fa6c5aadf3 |
@ -707,12 +707,11 @@ class Text2SemanticDecoder(nn.Module):
|
||||
|
||||
if idx == 0:
|
||||
attn_mask = F.pad(attn_mask[:, :, -1].unsqueeze(-2), (0, 1), value=False)
|
||||
logits = logits[:, :-1]
|
||||
else:
|
||||
attn_mask = F.pad(attn_mask, (0, 1), value=False)
|
||||
|
||||
if idx < 11: ###至少预测出10个token不然不给停止(0.4s)
|
||||
logits = logits[:, :-1]
|
||||
logits = logits[:, :-1]
|
||||
|
||||
samples = sample(
|
||||
logits, y, top_k=top_k, top_p=top_p, repetition_penalty=repetition_penalty, temperature=temperature
|
||||
|
||||
@ -373,6 +373,11 @@ Use v2Pro from v1/v2/v3/v4 environment:
|
||||
- [x] Localization in Japanese and English.
|
||||
- [x] User guide.
|
||||
- [x] Japanese and English dataset fine tune training.
|
||||
- [ ] Appending other languages
|
||||
- [ ] 'fa': Persian
|
||||
- [ ] 'pt': Pashto
|
||||
- [ ] 'tr': Turkish
|
||||
- [ ] 'ar': Arebic
|
||||
|
||||
- [ ] **Features:**
|
||||
- [x] Zero-shot voice conversion (5s) / few-shot voice conversion (1min).
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user