feat: Update temperature, top_k, and top_p parameters in CustomVoiceForm and VoiceCloneForm for improved voice synthesis

This commit is contained in:
2026-02-05 10:42:23 +08:00
parent 4f535b20e5
commit fa7e17db0d
2 changed files with 16 additions and 22 deletions

View File

@@ -71,9 +71,9 @@ function VoiceCloneForm() {
use_cache: true,
x_vector_only_mode: false,
max_new_tokens: 2048,
temperature: 0.3,
top_k: 20,
top_p: 0.7,
temperature: 0.9,
top_k: 50,
top_p: 1.0,
repetition_penalty: 1.05,
} as Partial<FormData>,
})