mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-05-08 09:59:50 +00:00
clamp music inference steps to 100 max
This commit is contained in:
parent
dd08d675f2
commit
d643d945f5
1 changed files with 1 additions and 0 deletions
|
|
@ -745,6 +745,7 @@ std::string acestep_generate_audio(const music_generation_inputs inputs)
|
|||
req.caption = "An interesting song";
|
||||
}
|
||||
req.thinking = false;
|
||||
req.inference_steps = (req.inference_steps>100?100:req.inference_steps); //clamp to 100
|
||||
|
||||
const int FRAMES_PER_SECOND = 25;
|
||||
int Oc = music_dit_cfg.out_channels; // 64
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue