Skip to content

Commit

Permalink
fix #4
Browse files Browse the repository at this point in the history
  • Loading branch information
Kahsolt committed Jan 31, 2023
1 parent 3db47cd commit 6f6a39b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,10 @@ to get image latents with higher quality (~perhaps!), and just pray again for go

⚪ Fixups

- 2023/01/28: keep up with webui's updates (issue #4: `NameError: name 'CFGDenoiser' is not defined`)
- 2023/01/28: keep up with webui's updates of extra-networks
- 2023/01/12: fix issue #2 with webui's updates (error `AttributeError: 'Options' object has no attribute 'filter_nsfw'`)
- 2023/01/03: fix issue #1 with webui's updates (error `AttributeError: 'StableDiffusionProcessingTxt2Img' object has no attribute 'firstphase_height'`)
- 2023/01/12: keep up with webui's updates (issue #2: `AttributeError: 'Options' object has no attribute 'filter_nsfw'`)
- 2023/01/03: keep up with webui's updates (issue #1: `AttributeError: 'StableDiffusionProcessingTxt2Img' object has no attribute 'firstphase_height'`)


### Examples
Expand Down
4 changes: 3 additions & 1 deletion scripts/sonar.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from PIL import Image
from typing import List, Tuple
from pprint import pprint as pp
import inspect

import gradio as gr
import torch
Expand All @@ -13,7 +14,8 @@
from modules import scripts, devices
from modules.script_callbacks import on_before_image_saved, remove_callbacks_for_function, ImageSaveParams
from modules.shared import state, opts, sd_upscalers
from modules.sd_samplers import *
from modules.sd_samplers_common import setup_img2img_steps, SamplerData
from modules.sd_samplers_kdiffusion import CFGDenoiser, KDiffusionSampler
from modules.ui import gr_show
from modules.prompt_parser import ScheduledPromptConditioning, MulticondLearnedConditioning
from modules.images import resize_image
Expand Down

0 comments on commit 6f6a39b

Please sign in to comment.