Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
taehoonlee committed Jul 10, 2017
1 parent 4ea0457 commit bdabccd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ class WALSComputePartialLhsAndRhsOp : public OpKernel {
CHECK_LE(shard.second, perm.size());
CHECK_LE(shard.first, shard.second);
const int64 input_index = get_input_index(perm[shard.first]);
// Acccumulate the rhs and lhs terms in the normal equations
// Accumulate the rhs and lhs terms in the normal equations
// for the non-zero elements in the row or column of the sparse matrix
// corresponding to input_index.
int num_batched = 0;
Expand Down
2 changes: 1 addition & 1 deletion tensorflow/contrib/framework/python/ops/ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,6 @@ def get_name_scope():
would print the string `scope1/scope2`.
Returns:
A string represnting the current name scope.
A string representing the current name scope.
"""
return ops.get_default_graph().get_name_scope()
2 changes: 1 addition & 1 deletion tensorflow/python/kernel_tests/sparse_ops_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ class SparseReduceTest(test_util.TensorFlowTestCase):

# [[1, ?, 2]
# [?, 3, ?]]
# where ? is implictly-zero.
# where ? is implicitly-zero.
ind = np.array([[0, 0], [0, 2], [1, 1]]).astype(np.int64)
vals = np.array([1, 1, 1]).astype(np.int32)
dense_shape = np.array([2, 3]).astype(np.int64)
Expand Down

0 comments on commit bdabccd

Please sign in to comment.