PrioritizedExperienceReplay icon indicating copy to clipboard operation
PrioritizedExperienceReplay copied to clipboard

Weight normalization on list

Open YiTanJang opened this issue 6 years ago • 0 comments

on line 84 of prorportional.py

 weights /= max(weights) # Normalize for stability

should be fixed since weights is a list

weights = [ i/max(weights) for i in weights]

YiTanJang avatar Jul 24 '18 06:07 YiTanJang