PrioritizedExperienceReplay
PrioritizedExperienceReplay copied to clipboard
Weight normalization on list
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]