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

  /external/tensorflow/tensorflow/contrib/boosted_trees/lib/utils/
batch_features.h 65 ExamplesIterable examples_iterable(int64 example_start,
67 QCHECK(example_start >= 0 && example_end >= 0);
68 QCHECK(example_start < batch_size_ && example_end <= batch_size_);
71 sparse_int_feature_columns_, example_start, example_end);
examples_iterable.cc 27 int64 example_start, int64 example_end)
28 : example_start_(example_start), example_end_(example_end) {
42 sparse_float_column.indices().template matrix<int64>(), example_start,
54 sparse_int_column.indices().template matrix<int64>(), example_start,
sparse_column_iterable.h 102 SparseColumnIterable(TTypes<int64>::ConstMatrix ix, int64 example_start,
104 : ix_(ix), example_start_(example_start), example_end_(example_end) {
105 QCHECK(example_start >= 0 && example_end >= 0);
112 int64 example_start() const { return example_start_; } function in class:tensorflow::boosted_trees::utils::SparseColumnIterable
examples_iterable.h 39 int64 example_start, int64 example_end);

Completed in 102 milliseconds