Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
The TensorFlow Workshop

You're reading from   The TensorFlow Workshop A hands-on guide to building deep learning models from scratch using real-world datasets

Arrow left icon
Product type Paperback
Published in Dec 2021
Publisher Packt
ISBN-13 9781800205253
Length 600 pages
Edition 1st Edition
Languages
Arrow right icon
Authors (4):
Arrow left icon
Matthew Moocarme Matthew Moocarme
Author Profile Icon Matthew Moocarme
Matthew Moocarme
Abhranshu Bagchi Abhranshu Bagchi
Author Profile Icon Abhranshu Bagchi
Abhranshu Bagchi
Anthony Maddalone Anthony Maddalone
Author Profile Icon Anthony Maddalone
Anthony Maddalone
Anthony So Anthony So
Author Profile Icon Anthony So
Anthony So
Arrow right icon
View More author details
Toc

Table of Contents (13) Chapters Close

Preface
1. Introduction to Machine Learning with TensorFlow 2. Loading and Processing Data FREE CHAPTER 3. TensorFlow Development 4. Regression and Classification Models 5. Classification Models 6. Regularization and Hyperparameter Tuning 7. Convolutional Neural Networks 8. Pre-Trained Networks 9. Recurrent Neural Networks 10. Custom TensorFlow Components 11. Generative Models Appendix

3. TensorFlow Development

Activity 3.01: Using TensorBoard to Visualize Tensor Transformations

Solution:

  1. Import the TensorFlow library and set a seed:
    import tensorflow as tf
    tf.random.set_seed(42)
  2. Set the log directory and initialize a file writer object to write the trace:
    logdir = 'logs/'
    writer = tf.summary.create_file_writer(logdir)
  3. Create a TensorFlow function to multiply two tensors and add a value of 1 to all elements in the resulting tensor using the ones_like function to create a tensor of the same shape as the result of the matrix multiplication. Then, apply a sigmoid function to each value of the tensor:
    @tf.function
    def my_func(x, y):
        r1 = tf.matmul(x, y)
        r2 = r1 + tf.ones_like(r1)
        r3 = tf.keras.activations.sigmoid(r2)
        return r3
  4. Create two tensors with the shape 5x5x5:
    x = tf.random.uniform((5, 5, 5))
    y = tf.random.uniform((5, 5, 5))
  5. Turn...
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 €18.99/month. Cancel anytime