[SUGGESTION] GoBig may need these fixes #228
WitheringCesspool
started this conversation in
Feature suggestions
Replies: 1 comment 2 replies
-
it whould be nice we could use gobig in cpu mode if needed.. i cant use it in just 6gb ram sadly |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
As you mentioned, GoBig is disabled currently due to a bug. I saw that someone on the stable diffusion discord (HankTheHillman) was able to get GoBig working by doing the following:
In the webui file, underneath the part where it said
use_GoBIG=use_GoBIG,
They added:
gobig_strength=gobig_strength,
gobig_steps=gobig_steps,
And there was a formatting mistake of a single underscore.
They changed:
samples_ddim, _ = K.sampling.dict[f'sample_{sampler.get_sampler_name()}'](model_wrap_cfg, xi, sigma_sched, extra_args={'cond': conditioning, 'uncond': unconditional_conditioning, 'cond_scale': cfg_scale}, disable=False)
to
(The indentations are probably a bit off). I'm not sure if this is the bug you're referring to but this solution was able to get GoBig working for them so thought I'd put it here in case it helps.
Beta Was this translation helpful? Give feedback.
All reactions