aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2016-11-08 10:35:43 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-11-08 16:23:12 -0800
commit9dc54fcdb1adf2917f660c069293a197ee75754a (patch)
tree8755ecb634d127cb308afa108fc43698cf64a3bf
parent5b92bf6221ed1c494233102b89fee483fa7c0e85 (diff)
Update ops-related pbtxt files.
Change: 138534971
-rw-r--r--tensorflow/core/ops/ops.pbtxt2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/core/ops/ops.pbtxt b/tensorflow/core/ops/ops.pbtxt
index 20fcc37fd0..a1df754dee 100644
--- a/tensorflow/core/ops/ops.pbtxt
+++ b/tensorflow/core/ops/ops.pbtxt
@@ -19926,7 +19926,7 @@ op {
type: DT_INT64
}
summary: "Split elements of `input` based on `delimiter` into a `SparseTensor`."
- description: "Let N be the size of source (typically N will be the batch size). Split each\nelement of `input` based on `delimiter` and return a `SparseTensor`\ncontaining the splitted tokens. Empty tokens are ignored.\n\n`delimiter` can be empty or a single character. If `delimiter` is an empty\n string, each element of `input` is split into individual 1 character strings.\n\nFor example:\n N = 2, input[0] is \'hello world\' and input[1] is \'a b c\', then the output\n will be\n\n indices = [0, 0;\n 0, 1;\n 1, 0;\n 1, 1;\n 1, 2]\n shape = [2, 3]\n values = [\'hello\', \'world\', \'a\', \'b\', \'c\']"
+ description: "Let N be the size of source (typically N will be the batch size). Split each\nelement of `input` based on `delimiter` and return a `SparseTensor`\ncontaining the splitted tokens. Empty tokens are ignored.\n\n`delimiter` can be empty or a single-byte character. If `delimiter` is an empty\n string, each element of `input` is split into individual single-byte character\n strings, including splitting of UTF-8 multibyte sequences.\n\nFor example:\n N = 2, input[0] is \'hello world\' and input[1] is \'a b c\', then the output\n will be\n\n indices = [0, 0;\n 0, 1;\n 1, 0;\n 1, 1;\n 1, 2]\n shape = [2, 3]\n values = [\'hello\', \'world\', \'a\', \'b\', \'c\']"
}
op {
name: "StringToHashBucket"