« Previous
Next »
TF HOME
Welcome to the iwantcoding.com TensorFlow Tutorial. TensorFlow is Google’s end-to-end deep-learning platform. Keras is the high-level API; tf.* drops down when you need to. Train on a laptop, scale to a TPU pod, ship to the browser via TF.js or to mobile via TF Lite.
What this tutorial covers
| Chapter | You will learn |
|---|---|
| TF Basics | Install / Colab, tensors, variables, GradientTape, tf.data. |
| Keras | Sequential, Functional API, subclassing, layers, losses, optimizers, metrics, callbacks, compile / fit. |
| Architectures | MLP, CNN, RNN / LSTM, Transformer intro, transfer learning, embeddings. |
| Serve & Ship | Save / load, TensorFlow.js, TF Lite, TF Serving, TensorBoard, distributed training. |
| Examples | Cheatsheet, runnable snippets, quiz, exercises, bootcamp, certificate. |
Who this is for
- ML engineers shipping production models.
- Researchers using Colab + TPUs.
- Mobile / web devs running on-device inference.
How to use this tutorial: read the chapter, run the example with Try it Yourself », do the exercise, then take the quiz at the bottom. Hit Mark complete when you're done — the sidebar will track your progress.
Example
Example
import tensorflow as tf
print('TF', tf.__version__, '| GPUs:', tf.config.list_physical_devices('GPU'))
Try it Yourself »
Exercise
Canonical TF alias.
import tensorflow as
Two letters.
« Previous
Next »
Discussion
Loading…