Skip to content

Commit

Permalink
fix a typo in tf.nn.separable_conv2d's doc (#12067)
Browse files Browse the repository at this point in the history
It's obvious that the right bracket in "sum_{di, dj, q, r]" should
be a right brace.
  • Loading branch information
freedomtan authored and rmlarsen committed Aug 7, 2017
1 parent 33c331d commit 598ede2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tensorflow/python/ops/nn_impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ def separable_conv2d(input,
In detail,
output[b, i, j, k] = sum_{di, dj, q, r]
output[b, i, j, k] = sum_{di, dj, q, r}
input[b, strides[1] * i + di, strides[2] * j + dj, q] *
depthwise_filter[di, dj, q, r] *
pointwise_filter[0, 0, q * channel_multiplier + r, k]
Expand Down

0 comments on commit 598ede2

Please sign in to comment.