possible fix of wrong scale
https://github.com/comfyanonymous/ComfyUI/pull/3922
This commit is contained in:
parent
a30b19dd55
commit
bfbca31074
|
@ -204,10 +204,12 @@ class NetworkModule:
|
|||
if ex_bias is not None:
|
||||
ex_bias = ex_bias * self.multiplier()
|
||||
|
||||
updown = updown * self.calc_scale()
|
||||
|
||||
if self.dora_scale is not None:
|
||||
updown = self.apply_weight_decompose(updown, orig_weight)
|
||||
|
||||
return updown * self.calc_scale() * self.multiplier(), ex_bias
|
||||
return updown * self.multiplier(), ex_bias
|
||||
|
||||
def calc_updown(self, target):
|
||||
raise NotImplementedError()
|
||||
|
|
Loading…
Reference in New Issue