dmccloskey / EvoNet

MIT License
2 stars 0 forks source link

Batch normalization activation #65

Open dmccloskey opened 6 years ago

dmccloskey commented 6 years ago

Description

Batch normalization between input and activation across all examples in a minibatch. Need to implement a moving average for the averages and variances (0.9 prev + 0.1 cur), so that at test time, the moving average and variance can be used.

Objectives

References