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

  /external/javasqlite/src/main/java/SQLite/
Function.java 57 public void last_step(FunctionContext fc); method in interface:Function
  /libcore/luni/src/test/java/tests/support/
MockFunction.java 50 public void last_step(FunctionContext fc) { method in class:MockFunction
  /external/tensorflow/tensorflow/contrib/learn/python/learn/
graph_actions.py 316 last_step = start_step
319 logging.info('Training steps [%d,%s)', last_step, 'inf'
325 (max_steps is None) or (last_step < max_steps)):
330 session, last_step + 1, [train_op, loss_op], feed_dict, monitors)
346 if this_step <= last_step:
349 ': new step %d', last_step, this_step)
351 last_step = this_step
352 is_last_step = (max_steps is not None) and (last_step >= max_steps)
353 if is_last_step or (last_step - last_log_step >= log_every_steps):
356 last_step, loss_value, float(time.time() - start_time)
    [all...]
monitors.py 375 def __init__(self, num_steps=None, last_step=None):
383 after `begin()` is called. If instead `last_step` is specified, it
389 last_step: Step after which to stop.
395 if num_steps is None and last_step is None:
396 raise ValueError("One of num_steps or last_step must be specified.")
397 if num_steps is not None and last_step is not None:
398 raise ValueError("Only one of num_steps or last_step can be specified.")
400 self._last_step = last_step
    [all...]
monitors_test.py 587 learn.monitors.StopAtStep(num_steps=10, last_step=20)
590 m = learn.monitors.StopAtStep(last_step=10)
    [all...]
  /external/tensorflow/tensorflow/contrib/tensor_forest/client/
random_forest.py 73 self.last_step = -1
92 if self.last_step == -1 or self.last_step > current_step:
93 logging.info('TensorForestLossHook resetting last_step.')
94 self.last_step = current_step
99 self.last_step = current_step
  /external/tensorflow/tensorflow/python/training/
basic_session_run_hooks.py 272 def __init__(self, num_steps=None, last_step=None):
280 after `begin()` is called. If instead `last_step` is specified, it
286 last_step: Step after which to stop.
291 if num_steps is None and last_step is None:
292 raise ValueError("One of num_steps or last_step must be specified.")
293 if num_steps is not None and last_step is not None:
294 raise ValueError("Only one of num_steps or last_step can be specified.")
296 self._last_step = last_step
461 last_step = session.run(self._global_step_tensor)
462 if last_step != self._timer.last_triggered_step()
    [all...]
supervisor_test.py 122 last_step = None
126 last_step = step
133 self.assertEqual(1, last_step)
140 last_step = None
143 last_step = step
151 self.assertEqual(3, last_step)
    [all...]
basic_session_run_hooks_test.py 135 basic_session_run_hooks.StopAtStepHook(num_steps=10, last_step=20)
138 h = basic_session_run_hooks.StopAtStepHook(last_step=10)
    [all...]
monitored_session_test.py     [all...]
  /external/tensorflow/tensorflow/contrib/integrate/python/ops/
odes.py 217 def _optimal_step_size(last_step,
225 with ops.name_scope(name, 'optimal_step_size', [last_step,
227 error_ratio = math_ops.cast(error_ratio, last_step.dtype)
228 exponent = math_ops.cast(1 / order, last_step.dtype)
234 return math_ops.div(last_step, factor, name=scope)
odes_test.py 197 last_step=constant_op.constant(1.0),
205 last_step=constant_op.constant(1.0),
213 last_step=constant_op.constant(1.0),
  /external/tensorflow/tensorflow/contrib/model_pruning/examples/cifar10/
cifar10_train.py 116 hooks=[tf.train.StopAtStepHook(last_step=FLAGS.max_steps),
  /external/tensorflow/tensorflow/contrib/tpu/python/tpu/
tpu_estimator.py 513 def __init__(self, iterations, num_steps=None, last_step=None):
519 last_step: Step after which to stop.
524 if num_steps is None and last_step is None:
525 raise ValueError('One of num_steps or last_step must be specified.')
526 if num_steps is not None and last_step is not None:
527 raise ValueError('Only one of num_steps or last_step can be specified.')
529 self._last_step = last_step
532 def _next_iterations(self, global_step, last_step):
533 gap = last_step - global_step
    [all...]

Completed in 629 milliseconds