mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-05-08 01:41:37 +00:00
revert to 8 step
This commit is contained in:
parent
173702d1a4
commit
5a57ed8ca4
2 changed files with 2 additions and 2 deletions
|
|
@ -764,7 +764,7 @@ std::string acestep_generate_audio(const music_generation_inputs inputs)
|
|||
const char * language = req.vocal_language.empty() ? "en" : req.vocal_language.c_str();
|
||||
float duration = req.duration > 0 ? req.duration : 120.0f;
|
||||
long long seed = req.seed;
|
||||
int num_steps = req.inference_steps > 0 ? req.inference_steps : 10;
|
||||
int num_steps = req.inference_steps > 0 ? req.inference_steps : 8;
|
||||
float guidance_scale = req.guidance_scale > 0 ? req.guidance_scale : 7.0f;
|
||||
float shift = req.shift > 0 ? req.shift : 1.0f;
|
||||
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ void request_init(AceRequest * r) {
|
|||
r->lm_top_k = 0;
|
||||
r->lm_negative_prompt = "";
|
||||
r->audio_codes = "";
|
||||
r->inference_steps = 10;
|
||||
r->inference_steps = 8;
|
||||
r->guidance_scale = 1.0f;
|
||||
r->shift = 3.0f;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue