HomeSort by relevance Sort by last modified time
    Searched refs:completed_fraction (Results 1 - 3 of 3) sorted by null

  /external/tensorflow/tensorflow/python/training/
learning_rate_decay.py 505 completed_fraction = global_step / decay_steps
507 1.0 + math_ops.cos(constant_op.constant(math.pi) * completed_fraction))
577 completed_fraction = global_step / first_decay_steps
579 def compute_step(completed_fraction, geometric=False):
582 math_ops.log(1.0 - completed_fraction * (1.0 - t_mul)) /
586 completed_fraction = (completed_fraction - sum_r) / t_mul**i_restart
589 i_restart = math_ops.floor(completed_fraction)
590 completed_fraction = completed_fraction - i_restar
    [all...]
learning_rate_decay_test.py 347 completed_fraction = step / decay_steps
348 decay = 0.5 * (1.0 + math.cos(math.pi * completed_fraction))
382 completed_fraction = step / decay_steps
383 decay = fac * 0.5 * (1.0 + math.cos(math.pi * completed_fraction))
  /external/tensorflow/tensorflow/contrib/opt/python/training/
sign_decay.py 95 completed_fraction = math_ops.to_float(global_step) / math_ops.to_float(
97 fraction = 2.0 * num_periods * completed_fraction

Completed in 94 milliseconds