aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/docs_src
diff options
context:
space:
mode:
authorGravatar Billy Lamberta <blamb@google.com>2018-06-30 16:13:41 -0700
committerGravatar Billy Lamberta <blamb@google.com>2018-07-03 11:16:22 -0700
commite5c1777d244193d028549f7ac68f28bd287e4449 (patch)
tree8f636f8ee2f1f82572fc89b761db7eb15318d5c7 /tensorflow/docs_src
parentb2f73e6fabaa1b3636c404a51c8808893a5a7536 (diff)
Add overview page for tutorials/get_started
Diffstat (limited to 'tensorflow/docs_src')
-rw-r--r--tensorflow/docs_src/tutorials/_toc.yaml2
-rw-r--r--tensorflow/docs_src/tutorials/get_started/index.md22
2 files changed, 24 insertions, 0 deletions
diff --git a/tensorflow/docs_src/tutorials/_toc.yaml b/tensorflow/docs_src/tutorials/_toc.yaml
index c42ce005e8..785291ed9d 100644
--- a/tensorflow/docs_src/tutorials/_toc.yaml
+++ b/tensorflow/docs_src/tutorials/_toc.yaml
@@ -5,6 +5,8 @@ toc:
- title: Learn and use ML
style: accordion
section:
+ - title: Overview
+ path: /tutorials/get_started/
- title: Basic classification
path: /tutorials/get_started/basic_classification
- title: Text classification
diff --git a/tensorflow/docs_src/tutorials/get_started/index.md b/tensorflow/docs_src/tutorials/get_started/index.md
new file mode 100644
index 0000000000..65aaefe26a
--- /dev/null
+++ b/tensorflow/docs_src/tutorials/get_started/index.md
@@ -0,0 +1,22 @@
+# Learn and use machine learning
+
+This collection of Python notebooks is from the book
+*[Deep Learning with Python](https://books.google.com/books?id=Yo3CAQAACAAJ)* and
+ported to use `tf.keras`, TensorFlow's high-level API for building and training
+deep learning models. For details about using Keras with TensorFlow, see the
+[TensorFlow Keras Guide](../../guide/keras).
+
+Publisher's note: *Deep Learning with Python* introduces the field of deep
+learning using the Python language and the powerful Keras library. Written by
+Keras creator and Google AI researcher François Chollet, this book builds your
+understanding through intuitive explanations and practical examples.
+
+To learn about machine learning fundamentals and concepts, consider taking the
+[Machine Learning Crash Course](https://developers.google.com/machine-learning/crash-course/).
+Additional TensorFlow and machine learning resources are listed in [next steps](../next_steps).
+
+1. [Basic classification](./basic_classification)
+2. [Text classification](./basic_text_classification)
+3. [Regression](./basic_regression)
+4. [Overfitting and underfitting](./overfit_and_underfit)
+5. [Save and restore models](./save_and_restore_models)