Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Hands-On Neural Networks with TensorFlow 2.0

You're reading from  Hands-On Neural Networks with TensorFlow 2.0

Product type Book
Published in Sep 2019
Publisher Packt
ISBN-13 9781789615555
Pages 358 pages
Edition 1st Edition
Languages
Author (1):
Paolo Galeone Paolo Galeone
Profile icon Paolo Galeone

Table of Contents (15) Chapters

Preface Section 1: Neural Network Fundamentals
What is Machine Learning? Neural Networks and Deep Learning Section 2: TensorFlow Fundamentals
TensorFlow Graph Architecture TensorFlow 2.0 Architecture Efficient Data Input Pipelines and Estimator API Section 3: The Application of Neural Networks
Image Classification Using TensorFlow Hub Introduction to Object Detection Semantic Segmentation and Custom Dataset Builder Generative Adversarial Networks Bringing a Model to Production Other Books You May Enjoy

Exercises

Once again, you are invited to answer all the following questions. You will struggle to find answers when the problems are hard, since this is the only way to master Estimator and Data APIs:

  1. What is an ETL process?
  2. How is an ETL process related to the tf.data API?
  3. Why can't a tf.data.Dataset object can't be manipulated directly, but every non-static method returns a new dataset object that's the result of the transformation applied?
  4. Which are the most common optimizations in the context of the tf.data API? Why is prefetching so important?
  5. Given the two datasets of the next question, which one loops faster? Explain your response.
  6. Given the following two datasets:
data = tf.data.Dataset.range(100)
data2 = tf.data.Dataset.from_generator(lambda: range(100), (tf.int32))

def l1():
for v in data:
tf.print(v)
def l2():
for v in data2:
tf.print...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}