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

  /external/tensorflow/tensorflow/contrib/boosted_trees/lib/quantiles/
weighted_quantiles_summary.h 47 min_rank = min;
56 min_rank = 0;
62 min_rank == other.min_rank && max_rank == other.max_rank;
67 << entry.min_rank << ", " << entry.max_rank << "}";
74 WeightType NextMinRank() const { return min_rank + weight; }
78 WeightType min_rank; member in struct:tensorflow::boosted_trees::quantiles::WeightedQuantilesSummary::SummaryEntry
145 it1->min_rank + next_min_rank2,
154 it2->min_rank + next_min_rank1,
162 it1->min_rank + it2->min_rank
    [all...]
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
cwise_ops.cc 68 int min_rank = std::min(lhs_shape.dims(), rhs_shape.dims()); local
69 if (min_rank != max_rank) {
70 for (int i = 0; i < min_rank; ++i) {
73 extend_dimension.push_back(max_rank - min_rank + i);
  /external/tensorflow/tensorflow/contrib/layers/python/layers/
utils.py 228 def _get_dimension(shape, dim, min_rank=1):
229 """Returns the `dim` dimension of `shape`, while checking it has `min_rank`.
234 min_rank: Integer, minimum rank of shape.
240 ValueError: if inputs don't have at least min_rank dimensions, or if the
246 if len(dims) < min_rank:
247 raise ValueError('rank of shape must be at least %d not: %d' % (min_rank,
256 def channel_dimension(shape, data_format, min_rank=1):
257 """Returns the channel dimension of shape, while checking it has min_rank.
262 min_rank: Integer, minimum rank of shape.
268 ValueError: if inputs don't have at least min_rank dimensions, or if th
    [all...]
layers.py     [all...]
  /external/tensorflow/tensorflow/contrib/slim/python/slim/nets/
resnet_v1.py 105 depth_in = utils.last_dimension(inputs.get_shape(), min_rank=4)
resnet_v2.py 99 depth_in = utils.last_dimension(inputs.get_shape(), min_rank=4)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rpcsvc/
nis.x 269 int min_rank; /* minimum rank of bound endpoints */
  /external/tensorflow/tensorflow/contrib/boosted_trees/kernels/
quantile_ops.cc 213 new_entry->set_min_rank(entry.min_rank);
325 entry.min_rank(), entry.max_rank());
549 entries.emplace_back(entry.value(), entry.weight(), entry.min_rank(),
    [all...]
  /external/tensorflow/tensorflow/core/framework/
common_shape_fns.cc 1160 const int min_rank = concat_dim < 0 ? -concat_dim : concat_dim + 1; local
    [all...]
  /toolchain/binutils/binutils-2.27/gas/config/
tc-tic6x.c 3138 int min_rank, try_rank, max_rank; local
    [all...]
  /external/tensorflow/tensorflow/compiler/tests/
randomized_tests.cc 272 // Returns a random shape. The tensor has rank in the range [min_rank,
274 std::vector<int64> RandomDims(int min_rank = 0,
418 std::vector<int64> OpTest::RandomDims(int min_rank, int max_rank,
420 CHECK_LE(0, min_rank);
421 CHECK_LE(min_rank, max_rank);
422 std::uniform_int_distribution<int> rank_distribution(min_rank, max_rank);
    [all...]

Completed in 416 milliseconds