mirror of
https://github.com/labmlai/annotated_deep_learning_paper_implementations.git
synced 2025-10-29 09:38:56 +08:00
fix docs typo
This commit is contained in:
@ -67,7 +67,7 @@ class DDPMSampler(DiffusionSampler):
|
||||
|
||||
# $\sqrt{\bar\alpha}$
|
||||
self.sqrt_alpha_bar = alpha_bar ** .5
|
||||
# $\sqrt{1 - \bar{alpha}}$
|
||||
# $\sqrt{1 - \bar\alpha}$
|
||||
self.sqrt_1m_alpha_bar = alpha_bar ** .5
|
||||
# $\frac{1}{\sqrt{\bar\alpha_t}}$
|
||||
self.sqrt_recip_alpha_bar = alpha_bar ** -.5
|
||||
|
||||
Reference in New Issue
Block a user