Searched refs:split_entry (Results 1 – 4 of 4) sorted by relevance
/external/tensorflow/tensorflow/core/kernels/boosted_trees/ |
D | training_ops.cc | 105 for (auto& split_entry : best_splits) { in Compute() local 106 const float gain = split_entry.second.gain; in Compute() 119 ensemble_resource->AddBucketizedSplitNode(current_tree, split_entry, in Compute() 311 for (auto& split_entry : best_splits) { in Compute() local 312 const float gain = split_entry.second.gain; in Compute() 313 const string split_type = split_entry.second.split_type; in Compute() 333 ensemble_resource->AddCategoricalSplitNode(current_tree, split_entry, in Compute() 338 ensemble_resource->AddBucketizedSplitNode(current_tree, split_entry, in Compute()
|
D | resources.cc | 282 const std::pair<int32, boosted_trees::SplitCandidate>& split_entry, in AddBucketizedSplitNode() argument 284 const auto candidate = split_entry.second; in AddBucketizedSplitNode() 285 auto* node = AddLeafNodes(tree_id, split_entry, logits_dimension, in AddBucketizedSplitNode() 307 const std::pair<int32, boosted_trees::SplitCandidate>& split_entry, in AddCategoricalSplitNode() argument 309 const auto candidate = split_entry.second; in AddCategoricalSplitNode() 310 auto* node = AddLeafNodes(tree_id, split_entry, logits_dimension, in AddCategoricalSplitNode() 322 const std::pair<int32, boosted_trees::SplitCandidate>& split_entry, in AddLeafNodes() argument 325 const auto node_id = split_entry.first; in AddLeafNodes() 326 const auto candidate = split_entry.second; in AddLeafNodes()
|
D | resources.h | 115 const std::pair<int32, boosted_trees::SplitCandidate>& split_entry, 121 const std::pair<int32, boosted_trees::SplitCandidate>& split_entry, 181 const std::pair<int32, boosted_trees::SplitCandidate>& split_entry,
|
/external/rust/crates/regex/src/ |
D | compile.rs | 573 let split_entry = self.insts.len(); in c_repeat_zero_or_one() localVariable 585 Ok(Some(Patch { hole: Hole::Many(holes), entry: split_entry })) in c_repeat_zero_or_one() 593 let split_entry = self.insts.len(); in c_repeat_zero_or_more() localVariable 600 self.fill(hole_rep, split_entry); in c_repeat_zero_or_more() 606 Ok(Some(Patch { hole: split_hole, entry: split_entry })) in c_repeat_zero_or_more()
|