aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/tensor_forest/kernels
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/tensor_forest/kernels')
-rw-r--r--tensorflow/contrib/tensor_forest/kernels/tree_utils.cc4
-rw-r--r--tensorflow/contrib/tensor_forest/kernels/tree_utils.h2
-rw-r--r--tensorflow/contrib/tensor_forest/kernels/v4/decision-tree-resource.h2
-rw-r--r--tensorflow/contrib/tensor_forest/kernels/v4/decision_node_evaluator.h2
4 files changed, 5 insertions, 5 deletions
diff --git a/tensorflow/contrib/tensor_forest/kernels/tree_utils.cc b/tensorflow/contrib/tensor_forest/kernels/tree_utils.cc
index 44997ec5d6..cefcc96051 100644
--- a/tensorflow/contrib/tensor_forest/kernels/tree_utils.cc
+++ b/tensorflow/contrib/tensor_forest/kernels/tree_utils.cc
@@ -421,7 +421,7 @@ double getChebyshevEpsilon(const std::vector<float>& mu1,
const std::vector<float>& mu2) {
// Math time!!
// We are trying to minimize d = |mu1 - x|^2 + |mu2 - y|^2 over the surface.
- // Using Langrange multipliers, we get
+ // Using Lagrange multipliers, we get
// partial d / partial x = -2 mu1 + 2 x = lambda_1 1 + 2 lambda_3 x
// partial d / partial y = -2 mu2 + 2 y = lambda_2 1 - 2 lambda_3 y
// or
@@ -485,7 +485,7 @@ double getChebyshevEpsilon(const std::vector<float>& mu1,
}
double sdiscrim = sqrt(discrim);
- // TODO(thomaswc): Analyze whetever one of these is always closer.
+ // TODO(thomaswc): Analyze whatever one of these is always closer.
double v1 = (-b + sdiscrim) / (2 * a);
double v2 = (-b - sdiscrim) / (2 * a);
double dist1 = getDistanceFromLambda3(v1, mu1, mu2);
diff --git a/tensorflow/contrib/tensor_forest/kernels/tree_utils.h b/tensorflow/contrib/tensor_forest/kernels/tree_utils.h
index edbac67006..03aab1b61e 100644
--- a/tensorflow/contrib/tensor_forest/kernels/tree_utils.h
+++ b/tensorflow/contrib/tensor_forest/kernels/tree_utils.h
@@ -123,7 +123,7 @@ bool BestSplitDominatesRegression(const Tensor& total_sums,
const Tensor& split_squares,
int32 accumulator);
-// Performs booststrap_samples bootstrap samples of the best split's class
+// Performs bootstrap_samples bootstrap samples of the best split's class
// counts and the second best splits's class counts, and returns true if at
// least dominate_fraction of the time, the former has a better (lower)
// Gini impurity. Does not take over ownership of *rand.
diff --git a/tensorflow/contrib/tensor_forest/kernels/v4/decision-tree-resource.h b/tensorflow/contrib/tensor_forest/kernels/v4/decision-tree-resource.h
index 328af28725..d3edb43733 100644
--- a/tensorflow/contrib/tensor_forest/kernels/v4/decision-tree-resource.h
+++ b/tensorflow/contrib/tensor_forest/kernels/v4/decision-tree-resource.h
@@ -60,7 +60,7 @@ class DecisionTreeResource : public ResourceBase {
mutex* get_mutex() { return &mu_; }
// Return the TreeNode for the leaf that the example ends up at according
- // to decsion_tree_. Also fill in that leaf's depth if it isn't nullptr.
+ // to decision_tree_. Also fill in that leaf's depth if it isn't nullptr.
int32 TraverseTree(const std::unique_ptr<TensorDataSet>& input_data,
int example, int32* depth, TreePath* path) const;
diff --git a/tensorflow/contrib/tensor_forest/kernels/v4/decision_node_evaluator.h b/tensorflow/contrib/tensor_forest/kernels/v4/decision_node_evaluator.h
index bf2b2aaa3c..3db351c328 100644
--- a/tensorflow/contrib/tensor_forest/kernels/v4/decision_node_evaluator.h
+++ b/tensorflow/contrib/tensor_forest/kernels/v4/decision_node_evaluator.h
@@ -60,7 +60,7 @@ class InequalityDecisionNodeEvaluator : public BinaryDecisionNodeEvaluator {
bool include_equals_;
};
-// Evalutor for splits with multiple weighted features.
+// Evaluator for splits with multiple weighted features.
class ObliqueInequalityDecisionNodeEvaluator
: public BinaryDecisionNodeEvaluator {
public: