Increase ema feedback amount. Normalize the dfe 4 image embeds

This commit is contained in:
Jaret Burkett
2025-06-10 08:01:13 -06:00
parent eefa93f16e
commit 97e101522c
2 changed files with 5 additions and 3 deletions

View File

@@ -137,7 +137,8 @@ class ExponentialMovingAverage:
update_param = False
if self.use_feedback:
param_float.add_(tmp)
# make feedback 10x decay
param_float.add_(tmp * 10)
update_param = True
if self.param_multiplier != 1.0: