tf.compat.v1.ConditionalAccumulatorBase

View source on GitHub

A conditional accumulator for aggregating gradients.

tf.compat.v1.ConditionalAccumulatorBase(
    dtype, shape, accumulator_ref
)

Up-to-date gradients (i.e., time step at which gradient was computed is equal to the accumulator's time step) are added to the accumulator.

Extraction of the average gradient is blocked until the required number of gradients has been accumulated.

Args:

Attributes:

Methods

num_accumulated

View source

num_accumulated(
    name=None
)

Number of gradients that have currently been aggregated in accumulator.

Args:

Returns:

Number of accumulated gradients currently in accumulator.

set_global_step

View source

set_global_step(
    new_global_step, name=None
)

Sets the global time step of the accumulator.

The operation logs a warning if we attempt to set to a time step that is lower than the accumulator's own time step.

Args:

Returns:

Operation that sets the accumulator's time step.