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
3b8515d2
Commit
3b8515d2
authored
Oct 22, 2023
by
v0xie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: multiplier applied twice in finalize_updown
parent
4a50c963
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
1 deletion
+22
-1
extensions-builtin/Lora/network_oft.py
extensions-builtin/Lora/network_oft.py
+22
-1
No files found.
extensions-builtin/Lora/network_oft.py
View file @
3b8515d2
...
...
@@ -54,7 +54,8 @@ class NetworkModuleOFT(network.NetworkModule):
return
R
def
calc_updown
(
self
,
orig_weight
):
R
=
self
.
get_weight
(
self
.
oft_blocks
,
self
.
multiplier
())
multiplier
=
self
.
multiplier
()
*
self
.
calc_scale
()
R
=
self
.
get_weight
(
self
.
oft_blocks
,
multiplier
)
merged_weight
=
self
.
merge_weight
(
R
,
orig_weight
)
updown
=
merged_weight
.
to
(
orig_weight
.
device
,
dtype
=
orig_weight
.
dtype
)
-
orig_weight
...
...
@@ -62,3 +63,23 @@ class NetworkModuleOFT(network.NetworkModule):
orig_weight
=
orig_weight
return
self
.
finalize_updown
(
updown
,
orig_weight
,
output_shape
)
# override to remove the multiplier/scale factor; it's already multiplied in get_weight
def
finalize_updown
(
self
,
updown
,
orig_weight
,
output_shape
,
ex_bias
=
None
):
#return super().finalize_updown(updown, orig_weight, output_shape, ex_bias)
if
self
.
bias
is
not
None
:
updown
=
updown
.
reshape
(
self
.
bias
.
shape
)
updown
+=
self
.
bias
.
to
(
orig_weight
.
device
,
dtype
=
orig_weight
.
dtype
)
updown
=
updown
.
reshape
(
output_shape
)
if
len
(
output_shape
)
==
4
:
updown
=
updown
.
reshape
(
output_shape
)
if
orig_weight
.
size
()
.
numel
()
==
updown
.
size
()
.
numel
():
updown
=
updown
.
reshape
(
orig_weight
.
shape
)
if
ex_bias
is
not
None
:
ex_bias
=
ex_bias
*
self
.
multiplier
()
return
updown
,
ex_bias
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