i (#110)
This commit is contained in:
parent
a5cff12f6e
commit
446a4fe5ab
@ -345,8 +345,8 @@ def unet_forward_patched(self, x, timesteps=None, context=None, y=None, control=
|
|||||||
h = h.type(x.dtype)
|
h = h.type(x.dtype)
|
||||||
x0 = self.out(h)
|
x0 = self.out(h)
|
||||||
|
|
||||||
alpha = 1.0 - ((timesteps / 999.0)[:, None, None, None].clone() ** 2.0)
|
alpha = 1.0 - (timesteps / 999.0)[:, None, None, None].clone()
|
||||||
alpha *= 0.01
|
alpha *= 0.002
|
||||||
degraded_x0 = gaussian_filter_2d(x0) * alpha + x0 * (1.0 - alpha)
|
degraded_x0 = gaussian_filter_2d(x0) * alpha + x0 * (1.0 - alpha)
|
||||||
|
|
||||||
x0 = x0 * uc_mask + degraded_x0 * (1.0 - uc_mask)
|
x0 = x0 * uc_mask + degraded_x0 * (1.0 - uc_mask)
|
||||||
|
|||||||
@ -1,3 +1,7 @@
|
|||||||
|
### 1.0.29
|
||||||
|
|
||||||
|
* Fix overcook problem in 1.0.28
|
||||||
|
|
||||||
### 1.0.28
|
### 1.0.28
|
||||||
|
|
||||||
* SAG implemented
|
* SAG implemented
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user