"git@developer.sourcefind.cn:norm/vllm.git" did not exist on "ba0bfd40e21cacfd5da6a1e43028a37258a29cb4"
Unverified Commit 6ec3452c authored by Mark Daoust's avatar Mark Daoust Committed by GitHub
Browse files

Merge pull request #4155 from lamberta/add-buttons

Add buttons and enable TOC
parents 3fca8afe b2932cfb
...@@ -7,7 +7,8 @@ ...@@ -7,7 +7,8 @@
"version": "0.3.2", "version": "0.3.2",
"views": {}, "views": {},
"default_view": {}, "default_view": {},
"provenance": [] "provenance": [],
"toc_visible": true
}, },
"kernelspec": { "kernelspec": {
"name": "python3", "name": "python3",
...@@ -65,8 +66,22 @@ ...@@ -65,8 +66,22 @@
"source": [ "source": [
"# Get Started with Eager Execution\n", "# Get Started with Eager Execution\n",
"\n", "\n",
"Note: you can run **[this notebook, live in Google Colab](https://colab.research.google.com/github/tensorflow/models/blob/master/samples/core/get_started/eager.ipynb)** with zero setup.\n",
"\n", "\n",
"<table align=\"left\"><td>\n",
"<a target=\"_blank\" href=\"https://colab.sandbox.google.com/github/tensorflow/models/blob/master/samples/core/get_started/eager.ipynb\">\n",
" <img src=\"https://www.tensorflow.org/images/colab_logo_32px.png\" />Run in Google Colab</a> \n",
"</td><td>\n",
"<a target=\"_blank\" href=\"https://github.com/tensorflow/models/blob/master/samples/core/get_started/eager.ipynb\"><img width=32px src=\"https://www.tensorflow.org/images/GitHub-Mark-32px.png\" />View source on Github</a></td></table>\n",
"\n"
]
},
{
"metadata": {
"id": "LDrzLFXE8T1l",
"colab_type": "text"
},
"cell_type": "markdown",
"source": [
"This tutorial describes how to use machine learning to *categorize* Iris flowers by species. It uses [TensorFlow](https://www.tensorflow.org)'s eager execution to (1) build a *model*, (2) *train* the model on example data, and (3) use the model to make *predictions* on unknown data. Machine learning experience isn't required to follow this guide, but you'll need to read some Python code.\n", "This tutorial describes how to use machine learning to *categorize* Iris flowers by species. It uses [TensorFlow](https://www.tensorflow.org)'s eager execution to (1) build a *model*, (2) *train* the model on example data, and (3) use the model to make *predictions* on unknown data. Machine learning experience isn't required to follow this guide, but you'll need to read some Python code.\n",
"\n", "\n",
"## TensorFlow programming\n", "## TensorFlow programming\n",
...@@ -871,4 +886,4 @@ ...@@ -871,4 +886,4 @@
] ]
} }
] ]
} }
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment