aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/docs_src/api_guides/python/string_ops.md
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/docs_src/api_guides/python/string_ops.md')
-rw-r--r--tensorflow/docs_src/api_guides/python/string_ops.md39
1 files changed, 0 insertions, 39 deletions
diff --git a/tensorflow/docs_src/api_guides/python/string_ops.md b/tensorflow/docs_src/api_guides/python/string_ops.md
deleted file mode 100644
index 24a3aad642..0000000000
--- a/tensorflow/docs_src/api_guides/python/string_ops.md
+++ /dev/null
@@ -1,39 +0,0 @@
-# Strings
-
-Note: Functions taking `Tensor` arguments can also take anything accepted by
-`tf.convert_to_tensor`.
-
-[TOC]
-
-## Hashing
-
-String hashing ops take a string input tensor and map each element to an
-integer.
-
-* `tf.string_to_hash_bucket_fast`
-* `tf.string_to_hash_bucket_strong`
-* `tf.string_to_hash_bucket`
-
-## Joining
-
-String joining ops concatenate elements of input string tensors to produce a new
-string tensor.
-
-* `tf.reduce_join`
-* `tf.string_join`
-
-## Splitting
-
-* `tf.string_split`
-* `tf.substr`
-
-## Conversion
-
-* `tf.as_string`
-* `tf.string_to_number`
-
-* `tf.decode_raw`
-* `tf.decode_csv`
-
-* `tf.encode_base64`
-* `tf.decode_base64`