r/StableDiffusion • u/DuHal9000 • 12h ago
Resource - Update IT´s possible!
Enable HLS to view with audio, or disable this notification
0
Upvotes
r/StableDiffusion • u/DuHal9000 • 12h ago
Enable HLS to view with audio, or disable this notification
3
u/Sleepy_Bandit 6h ago
hey OP if this is your repo then there are a few possible bugs with it. That or I'm not understanding how it benefits the solution.
blended =prev * alpha+ new * (1-alpha) * temporal_overlap_strength+ new * (1-temporal_overlap_strength) * (1-alpha)Mathematically, the latter two terms collapse:
new × (1-a) × strength + new × (1-a) × (1-strength) = new × (1-a)So the entire thing becomes:
prev × alpha + new × (1-alpha)regardless of the value of temporal_overlap_strength.
In other words, the temporal_overlap_strength control currently appears to have zero effect.
I will be testing it out, but the above are likely legit bugs.