aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Derek Murray <mrry@google.com>2018-01-18 13:36:52 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-01-18 13:41:00 -0800
commitbd4445f41e7e3cca18c5959b0301cd60379f31d4 (patch)
treeac979c33e4c8bfc841ca167be5b53bf3e3605da3
parent45c47cabe7150386420b182a8026699ff704b8f4 (diff)
[tf.data] Update API guide to include latest methods.
PiperOrigin-RevId: 182430038
-rw-r--r--tensorflow/docs_src/api_guides/python/input_dataset.md9
1 files changed, 7 insertions, 2 deletions
diff --git a/tensorflow/docs_src/api_guides/python/input_dataset.md b/tensorflow/docs_src/api_guides/python/input_dataset.md
index 94c89c37d5..a6e2fc48e0 100644
--- a/tensorflow/docs_src/api_guides/python/input_dataset.md
+++ b/tensorflow/docs_src/api_guides/python/input_dataset.md
@@ -18,7 +18,6 @@ Classes that create a dataset from input files.
Static methods in `Dataset` that create new datasets.
* @{tf.data.Dataset.from_generator}
-* @{tf.data.Dataset.from_sparse_tensor_slices}
* @{tf.data.Dataset.from_tensor_slices}
* @{tf.data.Dataset.from_tensors}
* @{tf.data.Dataset.list_files}
@@ -59,8 +58,12 @@ Custom transformation functions can be applied to a `Dataset` using @{tf.data.Da
* @{tf.contrib.data.enumerate_dataset}
* @{tf.contrib.data.group_by_window}
* @{tf.contrib.data.ignore_errors}
+* @{tf.contrib.data.map_and_batch}
+* @{tf.contrib.data.padded_batch_and_drop_remainder}
+* @{tf.contrib.data.parallel_interleave}
* @{tf.contrib.data.rejection_resample}
-* @{tf.contrib.data.sloppy_interleave}
+* @{tf.contrib.data.scan}
+* @{tf.contrib.data.shuffle_and_repeat}
* @{tf.contrib.data.unbatch}
## Iterating over datasets
@@ -77,5 +80,7 @@ The `Iterator` class also contains static methods that create a @{tf.data.Iterat
## Extra functions from `tf.contrib.data`
+* @{tf.contrib.data.get_single_element}
+* @{tf.contrib.data.make_saveable_from_iterator}
* @{tf.contrib.data.read_batch_features}