Skip to content

Commit

Permalink
Update some prints
Browse files Browse the repository at this point in the history
  • Loading branch information
LostRuins committed Mar 12, 2024
1 parent 88705cb commit edb05e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions koboldcpp.py
Original file line number Diff line number Diff line change
Expand Up @@ -552,11 +552,11 @@ def sd_generate(genparams):
sample_steps = 7
sample_method = "dpm++ 2m karras"
reslimit = 512
print("Image generation set to Quick Mode (Low Quality). Step counts, resolution, sampler, and cfg scale are fixed.")
print("\nSDConfig: Quick Mode (Low Quality). Step counts, resolution, sampler, and cfg scale are fixed.")
elif args.sdconfig[1]=="clamped":
sample_steps = (40 if sample_steps > 40 else sample_steps)
reslimit = 512
print("Image generation set to Clamped Mode (For Shared Use). Step counts and resolution are clamped.")
print("\nSDConfig: Clamped Mode (For Shared Use). Step counts and resolution are clamped.")

biggest = max(width,height)
if biggest > reslimit:
Expand Down

0 comments on commit edb05e7

Please sign in to comment.