mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-05-09 19:46:11 +00:00
store clip skip value on generated images (#1551)
This commit is contained in:
parent
da7fd4aa57
commit
7dc3e3e64b
1 changed files with 1 additions and 0 deletions
|
|
@ -301,6 +301,7 @@ static std::string get_image_params(const SDParams& params) {
|
|||
parameter_string += "Seed: " + std::to_string(params.seed) + " | ";
|
||||
parameter_string += "Size: " + std::to_string(params.width) + "x" + std::to_string(params.height) + " | ";
|
||||
parameter_string += "Sampler: " + std::to_string((int)sd_params->sample_method) + " | ";
|
||||
parameter_string += "Clip skip: " + std::to_string((int)sd_params->clip_skip) + " | ";
|
||||
parameter_string += "Model: " + sdmodelfilename + " | ";
|
||||
parameter_string += "Version: KoboldCpp";
|
||||
return parameter_string;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue