You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Recently got back into using Forge after 7 or 8 months away and found that distilled cfg scale wasn't added to the custom filename name parameters. Thanks to the suggestion of another member of r/stablediffusion I was able to add it to the code.
Everything needed is already there, it just isn't defined. In the modules folder, images.py at line 391 contains the line:
'cfg': lambda self: self.p and self.p.cfg_scale,
I added a new line right after this:
'dcfg': lambda self: self.p and self.p.distilled_cfg_scale,
Now I can use [dcfg] in the filename name to show the distilled cfg scale for that image. Is it possible to have that change added to the project?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Recently got back into using Forge after 7 or 8 months away and found that distilled cfg scale wasn't added to the custom filename name parameters. Thanks to the suggestion of another member of r/stablediffusion I was able to add it to the code.
Everything needed is already there, it just isn't defined. In the modules folder, images.py at line 391 contains the line:
'cfg': lambda self: self.p and self.p.cfg_scale,
I added a new line right after this:
'dcfg': lambda self: self.p and self.p.distilled_cfg_scale,
Now I can use [dcfg] in the filename name to show the distilled cfg scale for that image. Is it possible to have that change added to the project?
Beta Was this translation helpful? Give feedback.
All reactions