Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
S
stable-diffusion-webui
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
stable-diffusion-webui
Commits
bab6ea6b
Unverified
Commit
bab6ea6b
authored
Dec 03, 2022
by
AUTOMATIC1111
Committed by
GitHub
Dec 03, 2022
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5340 from PhytoEpidemic/master
Fix divide by 0 error
parents
b2f17dd3
119a945e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
autocrop.py
modules/textual_inversion/autocrop.py
+3
-3
No files found.
modules/textual_inversion/autocrop.py
View file @
bab6ea6b
...
@@ -276,8 +276,8 @@ def poi_average(pois, settings):
...
@@ -276,8 +276,8 @@ def poi_average(pois, settings):
weight
+=
poi
.
weight
weight
+=
poi
.
weight
x
+=
poi
.
x
*
poi
.
weight
x
+=
poi
.
x
*
poi
.
weight
y
+=
poi
.
y
*
poi
.
weight
y
+=
poi
.
y
*
poi
.
weight
avg_x
=
round
(
x
/
weight
)
avg_x
=
round
(
weight
and
x
/
weight
)
avg_y
=
round
(
y
/
weight
)
avg_y
=
round
(
weight
and
y
/
weight
)
return
PointOfInterest
(
avg_x
,
avg_y
)
return
PointOfInterest
(
avg_x
,
avg_y
)
...
@@ -338,4 +338,4 @@ class Settings:
...
@@ -338,4 +338,4 @@ class Settings:
self
.
face_points_weight
=
face_points_weight
self
.
face_points_weight
=
face_points_weight
self
.
annotate_image
=
annotate_image
self
.
annotate_image
=
annotate_image
self
.
destop_view_image
=
False
self
.
destop_view_image
=
False
self
.
dnn_model_path
=
dnn_model_path
self
.
dnn_model_path
=
dnn_model_path
\ No newline at end of file
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