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

  /external/tensorflow/tensorflow/contrib/bayesflow/python/ops/
halton_sequence_impl.py 42 def sample(dim, num_samples=None, sample_indices=None, dtype=None, name=None):
64 The user must supply either `num_samples` or `sample_indices` but not both.
66 element. If `sample_indices` is given instead, the specified elements of
67 the sequence are generated. For example, sample_indices=tf.range(10) is
92 # thousand samples. The sample_indices argument can be used to do this.
95 sample_indices = tf.range(start=1000, limit=1000 + num_samples,
97 sample_leaped = halton.sample(dim, sample_indices=sample_indices)
111 generate. Either this parameter or sample_indices must be specified but
113 the `sample_indices`
    [all...]
  /external/tensorflow/tensorflow/contrib/training/python/training/
resample.py 95 sample_indices = _repeat_range(sample_counts)
97 sample_indices = array_ops.stop_gradient(sample_indices)
98 return [array_ops.gather(x, sample_indices) for x in inputs]
  /external/tensorflow/tensorflow/contrib/bayesflow/python/kernel_tests/
halton_sequence_test.py 53 sample_from_indices = halton.sample(dim, sample_indices=indices)
119 # thousand samples. The sample_indices argument can be used to do this.
121 sample_indices = math_ops.range(start=1000, limit=1000 + num_samples,
123 sample_leaped = halton.sample(dim, sample_indices=sample_indices)
  /device/google/contexthub/firmware/os/drivers/orientation/
orientation.c 118 size_t sample_indices[NUM_OF_RAW_SENSOR]; member in struct:FusionTask
204 i = mTask.sample_indices[index];
207 w = (mTask.sample_indices[index] + n) % MAX_NUM_SAMPLES;
275 mTask.sample_indices[index] = i;
451 size_t i = mTask.sample_indices[ACC];
459 j = mTask.sample_indices[GYR];
462 k = mTask.sample_indices[MAG];
536 mTask.sample_indices[ACC] = i;
539 mTask.sample_indices[GYR] = j;
542 mTask.sample_indices[MAG] = k
    [all...]

Completed in 199 milliseconds