evolution-strategies-starter icon indicating copy to clipboard operation
evolution-strategies-starter copied to clipboard

why batched_weighted_sum?

Open joyousrabbit opened this issue 7 years ago • 2 comments

Hello, why use batched_weighted_sum instead of direct dot on all items?

joyousrabbit avatar May 09 '17 14:05 joyousrabbit

I believe its due to a dot product with large vectors could cause memory overflow so instead the use a way of looping through batches of data and computing the dot product

mhattingpete avatar Jan 24 '18 19:01 mhattingpete

Yea the output is the same regardless of batch size, so probably what @mhattingpete said

ben-arnao avatar Feb 12 '21 02:02 ben-arnao