Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
S
Stable Diffusion Webui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
novelai-storage
Stable Diffusion Webui
Commits
c7a1ff87
Commit
c7a1ff87
authored
Nov 28, 2023
by
CodeHatchling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tweaked default values.
parent
284fd8f4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
modules/processing.py
modules/processing.py
+2
-2
modules/sd_samplers_cfg_denoiser.py
modules/sd_samplers_cfg_denoiser.py
+2
-2
test/test_img2img.py
test/test_img2img.py
+2
-2
No files found.
modules/processing.py
View file @
c7a1ff87
...
@@ -1350,8 +1350,8 @@ class StableDiffusionProcessingImg2Img(StableDiffusionProcessing):
...
@@ -1350,8 +1350,8 @@ class StableDiffusionProcessingImg2Img(StableDiffusionProcessing):
mask_blur_y
:
int
=
4
mask_blur_y
:
int
=
4
mask_blur
:
int
=
None
mask_blur
:
int
=
None
mask_blend_power
:
float
=
1
mask_blend_power
:
float
=
1
mask_blend_scale
:
float
=
1
mask_blend_scale
:
float
=
0.5
inpaint_detail_preservation
:
float
=
16
inpaint_detail_preservation
:
float
=
4
inpainting_fill
:
int
=
0
inpainting_fill
:
int
=
0
inpaint_full_res
:
bool
=
True
inpaint_full_res
:
bool
=
True
inpaint_full_res_padding
:
int
=
0
inpaint_full_res_padding
:
int
=
0
...
...
modules/sd_samplers_cfg_denoiser.py
View file @
c7a1ff87
...
@@ -44,8 +44,8 @@ class CFGDenoiser(torch.nn.Module):
...
@@ -44,8 +44,8 @@ class CFGDenoiser(torch.nn.Module):
self
.
mask
=
None
self
.
mask
=
None
self
.
nmask
=
None
self
.
nmask
=
None
self
.
mask_blend_power
=
1
self
.
mask_blend_power
=
1
self
.
mask_blend_scale
=
1
self
.
mask_blend_scale
=
0.5
self
.
inpaint_detail_preservation
=
16
self
.
inpaint_detail_preservation
=
4
self
.
init_latent
=
None
self
.
init_latent
=
None
self
.
steps
=
None
self
.
steps
=
None
"""number of steps as specified by user in UI"""
"""number of steps as specified by user in UI"""
...
...
test/test_img2img.py
View file @
c7a1ff87
...
@@ -25,8 +25,8 @@ def simple_img2img_request(img2img_basic_image_base64):
...
@@ -25,8 +25,8 @@ def simple_img2img_request(img2img_basic_image_base64):
"mask"
:
None
,
"mask"
:
None
,
"mask_blur"
:
4
,
"mask_blur"
:
4
,
"mask_blend_power"
:
1
,
"mask_blend_power"
:
1
,
"mask_blend_scale"
:
1
,
"mask_blend_scale"
:
0.5
,
"inpaint_detail_preservation"
:
16
,
"inpaint_detail_preservation"
:
4
,
"n_iter"
:
1
,
"n_iter"
:
1
,
"negative_prompt"
:
""
,
"negative_prompt"
:
""
,
"override_settings"
:
{},
"override_settings"
:
{},
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment