Searched defs:split (Results 126 - 150 of 244) sorted by relevance

12345678910

/external/tensorflow/tensorflow/contrib/boosted_trees/kernels/
H A Dtraining_ops.cc35 // SplitCandidate holds the split candidate node along with the stats.
37 // Id of handler that generated the split candidate.
52 // Helper method to update the best split per partition given
56 int32 partition_id, SplitCandidate* split,
59 if (TF_PREDICT_FALSE(split->split_info.split_node().node_case() ==
69 split->gain < 0) {
73 // If the current node is pure, one of the leafs will be empty, so the split
74 // is meaningless and we should not split.
75 if (!(IsLeafWellFormed(split->split_info.right_child()) &&
76 IsLeafWellFormed(split
54 UpdateBestSplit( const boosted_trees::learner::LearnerConfig& learner_config, int32 partition_id, SplitCandidate* split, std::map<int32, SplitCandidate>* best_splits) argument
455 SplitCandidate split; local
621 SplitTreeNode( const int32 node_id, SplitCandidate* split, boosted_trees::trees::DecisionTreeConfig* tree_config, boosted_trees::models::DecisionTreeEnsembleResource* ensemble_resource) argument
[all...]
/external/tensorflow/tensorflow/contrib/tensor_forest/kernels/v4/
H A Dgrow_stats.h33 // Base class for tracking stats necessary to split a leaf.
34 // Holds and tracks stats for every candidate split.
45 // Fill in the best split, return false if none were valid.
67 // Add split to the list of candidate splits.
68 void AddSplit(const decision_trees::BinaryNode& split,
89 // Function called by AddSplit for subclasses to initialize stats for a split.
113 // Don't track anything, useful for systems that want to track split
141 // Tracks the sum and square of one side of a split for each Gini calculation.
144 float sum(int split) const { return sum_[split]; }
147 update(int split, float old_val, float weight) argument
205 ClassificationAddRightExample(int split, int64 int_label, float weight) argument
232 ClassificationRemoveSplitStats(split); variable
252 MaybeInitializeRunningCount(int split, float val) argument
351 mutable_left_count(int split, int class_num) argument
573 left_sum(int split, int output_num) const argument
576 left_sum(int split, int output_num) argument
579 left_square(int split, int output_num) const argument
582 left_square(int split, int output_num) argument
[all...]
H A Dgrow_stats.cc26 // When creating evaluators for the split candidates, use these
40 void GrowStats::AddSplit(const decision_trees::BinaryNode& split, argument
43 // It's possible that the split collection calls AddSplit, but we actually
47 splits_.push_back(split);
49 CreateBinaryDecisionNodeEvaluator(split, LEFT_INDEX, RIGHT_INDEX));
140 auto& split = splits_[it->first]; local
141 if (split.has_inequality_left_child_test()) {
142 auto& test = split.inequality_left_child_test();
144 split.mutable_inequality_left_child_test()->mutable_threshold();
165 float ClassificationStats::MaybeCachedGiniScore(int split, floa argument
468 GiniScore(int split, float* left_sum, float* right_sum) const argument
563 GiniScore(int split, float* left_sum, float* right_sum) const argument
770 GiniScore( int split, float* left_sum, float* right_sum) const argument
[all...]
/external/tensorflow/tensorflow/python/ops/
H A Darray_ops.py42 @@split
1044 (Note that the dimension unpacked along is gone, unlike `split`).
1315 @tf_export("split")
1316 def split(value, num_or_size_splits, axis=0, num=None, name="split"): function
1333 split0, split1, split2 = tf.split(value, [4, 15, 11], 1)
1338 split0, split1, split2 = tf.split(value, num_or_size_splits=3, axis=1)
1343 value: The `Tensor` to split.
1348 split dimension must match that of the `value`.
1349 axis: A 0-D `int32` `Tensor`. The dimension along which to split
[all...]
/external/testng/src/main/java/org/testng/internal/
H A DUtils.java65 * @param s the string to split
66 * @return the split token
69 // TODO CQ would s.split() be a better way of doing this?
96 // Bug in split when passed " " : returns one too many result
97 // result = line.split(" ");
428 public static String[] split(String string, String sep) { method in class:Utils
434 // return string.split(sep);
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
H A DFastMath.java192 * 0x40000000 - used to split a double into two parts, both with the low order bits cleared.
259 * @param d the value to split
982 * @param result placeholder where to place exp(x) split in two terms
991 split(x, xs);
999 split(FACT[i], as);
1015 /** Compute split[0], split[1] such that their sum is equal to d,
1016 * and split[0] has its 30 least significant bits as zero.
1017 * @param d number to split
1018 * @param split placeholde
1020 split(final double d, final double split[]) argument
[all...]
/external/capstone/bindings/python/capstone/
H A D__init__.py199 from os.path import split, join, dirname namespace
240 join(split(__file__)[0], 'lib'),
/external/clang/lib/AST/
H A DType.cpp213 SplitQualType split = getSplitDesugaredType(T); local
214 return Context.getQualifiedType(split.Ty, split.Quals);
219 SplitQualType split = type.split(); local
220 QualType desugar = split.Ty->getLocallyUnqualifiedSingleStepDesugaredType();
221 return Context.getQualifiedType(desugar, split.Quals);
260 SplitQualType split = type.split(); local
263 Qualifiers quals = split
[all...]
/external/deqp/modules/gles2/accuracy/
H A Des2aTextureMipmapTests.cpp506 int split = width/2 + rnd.getInt(-width/4, +width/4); local
507 randomPartition(dst, rnd, x, y, split, height);
508 randomPartition(dst, rnd, x+split, y, width-split, height);
512 int split = height/2 + rnd.getInt(-height/4, +height/4); local
513 randomPartition(dst, rnd, x, y, width, split);
514 randomPartition(dst, rnd, x, y+split, width, height-split);
/external/deqp/modules/gles2/functional/
H A Des2fTextureMipmapTests.cpp562 int split = width/2 + rnd.getInt(-width/4, +width/4); local
563 randomPartition(dst, rnd, x, y, split, height);
564 randomPartition(dst, rnd, x+split, y, width-split, height);
568 int split = height/2 + rnd.getInt(-height/4, +height/4); local
569 randomPartition(dst, rnd, x, y, width, split);
570 randomPartition(dst, rnd, x, y+split, width, height-split);
/external/deqp/modules/gles3/accuracy/
H A Des3aTextureMipmapTests.cpp493 int split = width/2 + rnd.getInt(-width/4, +width/4); local
494 randomPartition(dst, rnd, x, y, split, height);
495 randomPartition(dst, rnd, x+split, y, width-split, height);
499 int split = height/2 + rnd.getInt(-height/4, +height/4); local
500 randomPartition(dst, rnd, x, y, width, split);
501 randomPartition(dst, rnd, x, y+split, width, height-split);
/external/libnl/lib/
H A Dutils.c558 * Converts milliseconds to a character string split up in days, hours,
566 uint64_t split[5]; local
576 #define _SPLIT(idx, unit) if ((split[idx] = msec / unit)) msec %= unit
582 split[4] = msec;
584 for (i = 0; i < ARRAY_SIZE(split) && len; i++) {
586 if (split[i] == 0)
589 (buf==buf_orig) ? "" : " ", split[i], units[i]);
/external/libvpx/libvpx/vp8/encoder/
H A Dbitstream.c129 unsigned int split; local
151 split = 1 + (((range - 1) * pp[i >> 1]) >> 8);
155 lowvalue += split;
156 range = range - split;
158 range = split;
202 split = 1 + (((range - 1) * proba[i >> 1]) >> 8);
206 lowvalue += split;
207 range = range - split;
209 range = split;
244 split
[all...]
/external/libxaac/decoder/
H A Dixheaacd_qmf_dec.c678 WORD32 **qmf_real, WORD32 **qmf_imag, WORD32 split,
809 split, ov_lb_shift, low_pow_flag);
812 split, num_time_slots, lb_shift, low_pow_flag);
677 ixheaacd_cplx_synt_qmffilt( WORD32 **qmf_real, WORD32 **qmf_imag, WORD32 split, ia_sbr_scale_fact_struct *sbr_scale_factor, WORD16 *time_out, ia_sbr_qmf_filter_bank_struct *qmf_bank, ia_ps_dec_struct *ptr_ps_dec, FLAG active, FLAG low_pow_flag, ia_sbr_tables_struct *sbr_tables_ptr, ixheaacd_misc_tables *pstr_common_tables, WORD32 ch_fac, FLAG drc_on, WORD32 drc_sbr_factors[][64], WORD32 audio_object_type) argument
/external/python/cpython3/Lib/collections/
H A D__init__.py386 field_names = field_names.replace(',', ' ').split()
1233 def split(self, sep=None, maxsplit=-1): member in class:UserString
1234 return self.data.split(sep, maxsplit)
/external/skia/src/jumper/
H A DSkJumper_stages_lowp.cpp96 split(x, &r,&g); \
97 split(y, &b,&a); \
165 SI void split(S v, D* lo, D* hi) { function
181 split(v, &lo,&hi);
480 split(ix, &lo, &hi);
489 split(ix, &lo, &hi);
509 split(rgba, &_01, &_23);
516 split(v, &_02,&_13);
845 split(idx, &lo, &hi);
/external/skqp/src/jumper/
H A DSkJumper_stages_lowp.cpp96 split(x, &r,&g); \
97 split(y, &b,&a); \
165 SI void split(S v, D* lo, D* hi) { function
181 split(v, &lo,&hi);
480 split(ix, &lo, &hi);
489 split(ix, &lo, &hi);
509 split(rgba, &_01, &_23);
516 split(v, &_02,&_13);
821 split(idx, &lo, &hi);
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/emitter/
H A DEmitter.java797 boolean split = !simpleKeyContext && splitLines;
799 writePlain(analysis.scalar, split);
803 writeDoubleQuoted(analysis.scalar, split);
806 writeSingleQuoted(analysis.scalar, split);
809 writeFolded(analysis.scalar, split);
1150 private void writeSingleQuoted(String text, boolean split) throws IOException { argument
1163 if (start + 1 == end && this.column > this.bestWidth && split && start != 0
1213 private void writeDoubleQuoted(String text, boolean split) throws IOException { argument
1262 && (this.column + (end - start)) > this.bestWidth && split) {
1302 void writeFolded(String text, boolean split) throw argument
1412 writePlain(String text, boolean split) argument
[all...]
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DInlineFunction.cpp113 // split unwind edge and then inlining it; but that can do almost
120 // transforms which split edges deal with that.
161 // Otherwise, we have to split at the first non-dominating block.
179 // br label %split // from lastDominated
184 // br label %split
185 // split:
186 // phis_2 (edge from lastDominated, edge from split)
203 BasicBlock *split = local
208 cast<BranchInst>(lastDominated->back()).setSuccessor(0, split);
214 Instruction *splitIP = &split
[all...]
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DParser.java837 String[] v = split(s);
888 // Recognises quotes around a phrase and doesn't split it.
889 private static String[] split(String val) throws IllegalArgumentException { method in class:Parser
/external/tensorflow/tensorflow/c/
H A Dc_api_function_test.cc764 * | split |
772 * Only the second output from split is used as function output
776 TF_Operation* split = Split3(feed, func_graph_, s_); local
777 DefineT(-1, {}, {{feed, 0}}, {{split, 1}}, {});
799 * | split |
807 * Second output from split is not used as function output
811 TF_Operation* split = Split3(feed, func_graph_, s_); local
812 DefineT(-1, {}, {{feed, 0}}, {{split, 0}, {split, 2}}, {});
832 * split
848 TF_Operation* split = Split3(feed, func_graph_, s_); local
884 TF_Operation* split = Split3(c, func_graph_, s_); local
[all...]
/external/tensorflow/tensorflow/core/grappler/optimizers/
H A Darithmetic_optimizer_test.cc820 OutputList split = ops::Split(s, ops::Const(s, 1), inputs, 3).output; local
823 Output branch0 = split[0];
824 Output branch1 = ops::Transpose(s, ops::Transpose(s, split[1], perm1), perm2);
825 Output branch2 = split[2];
H A Dlayout_optimizer_test.cc469 auto split = ops::Split(s.WithOpName("split"), c, conv, 2); local
470 auto i = ops::Identity(s.WithOpName("i"), split[0]);
477 auto split_node = node_map.GetNode("split");
478 EXPECT_EQ(split_node->input(0), "split-0-LayoutOptimizer");
480 auto split_const = node_map.GetNode("split-0-LayoutOptimizer");
489 auto split = ops::Split(s.WithOpName("split"), c, conv, 2); local
490 auto i = ops::Identity(s.WithOpName("i"), split[0]);
497 auto split_node = node_map.GetNode("split");
509 auto split = ops::Split(s.WithOpName("split"), c, conv, 2); local
529 auto split = ops::Split(s.WithOpName("split"), c, conv, 2); local
550 auto split = ops::Split(s.WithOpName("split"), i1, conv, 2); local
570 auto split = ops::Split(s.WithOpName("split"), axis, conv, 2); local
593 auto split = ops::Split(s.WithOpName("split"), axis, conv, 2); local
615 auto split = ops::Split(s.WithOpName("split"), axis, conv, 2); local
638 auto split = ops::Split(s.WithOpName("split"), axis, conv, 2); local
659 auto split = ops::Split(s.WithOpName("split"), axis, conv, 2); local
680 auto split = ops::Split(s.WithOpName("split"), axis, conv, 2); local
[all...]
/external/annotation-tools/asmx/test/lib/
H A Djakarta-oro-2.0.8.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/oro/ org/apache/oro/io/ ...
/external/guice/extensions/persist/lib/
H A Doro-2.0.8.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/oro/ org/apache/oro/io/ ...

Completed in 792 milliseconds

12345678910