I've been trying to understand Keras'
Optimizer
class, and realize that there's a variable I don't quite understand - self.iterations
. Does this refer to:
- The number of individual samples for which updates have been performed?
- The number of individual batches for which updates have been performed? (This is what I believe)
- The number of total epochs (i.e. complete passes thru a training set) for which updates have been performed?