Skip to content

Commit

Permalink
fix: sampler name in GoBig
Browse files Browse the repository at this point in the history
  • Loading branch information
node7-ai authored Sep 10, 2022
1 parent 28338ce commit 2236e8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/webui.py
Original file line number Diff line number Diff line change
Expand Up @@ -1623,7 +1623,7 @@ def processGoBig(image):
elif sampler_name == 'k_dpm_2_a':
sampler = KDiffusionSampler(model,'dpm_2_ancestral')
elif sampler_name == 'k_dpm_2':
sampler_name = KDiffusionSampler(model,'dpm_2')
sampler = KDiffusionSampler(model,'dpm_2')
elif sampler_name == 'k_euler_a':
sampler = KDiffusionSampler(model,'euler_ancestral')
elif sampler_name == 'k_euler':
Expand Down

0 comments on commit 2236e8b

Please sign in to comment.