Spread the word.

Share the link on social media.

Share
  • Facebook
Have an account? Sign In Now

Sign Up

Have an account? Sign In Now

Sign In

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

Sorry, you do not have permission to ask a question, You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here
Sign InSign Up

SIKSHAPATH

SIKSHAPATH Logo SIKSHAPATH Logo

SIKSHAPATH Navigation

  • Home
  • Questions
  • Blog
    • Computer Science(CSE)
    • NPTEL
    • Startup
  • Shop
    • Internshala Answers
Search
Ask A Question

Mobile menu

Close
Ask A Question
  • Home
  • Questions
  • Blog
    • Computer Science(CSE)
    • NPTEL
    • Startup
  • Shop
    • Internshala Answers
Home/ Questions/Q 26817
Next
In Process

SIKSHAPATH Latest Questions

Saurav kumar
  • 0
  • 0
Saurav kumar
Asked: January 23, 20242024-01-23T20:59:45+05:30 2024-01-23T20:59:45+05:30In: Computer Science

TensorFlow Advanced Techniques Specialization

  • 0
  • 0

1.

Question 1

Lambda layer allows to execute an arbitrary function only within a Sequential API model.

 

False

True

 

2.

Question 2

Which one of the following is the correct syntax for mapping an increment of 2 to the value of “x” using a Lambda layer? (tf = Tensorflow)

 

tf.keras.layers.Lambda(x: tf.math.add(x, 2.0))

tf.keras.layers.Lambda(lambda x: tf.math.add(x, 2.0))

tf.keras.Lambda(x: tf.math.add(x, 2.0))

tf.keras.layers(lambda x: tf.math.add(x, 2.0))

 

3.

Question 3

One drawback of Lambda layers is that you cannot call a custom built function from within them.

 

True

False

 

4.

Question 4

A Layer is defined by having “States” and “Computation”. Consider the following code and check all that are true:

TensorFlow Advanced Techniques Specialization

 

def call(self, inputs): performs the computation and is called when the Class is instantiated.

 

You use def build(self, input_shape): to create the state of the layers and specify local input states.

 

After training, this class will return a w*X + b computation, where X is the input, w is the weight/kernel tensor with trained values, and b is the bias tensor with trained values.

 

In def __init__(self, units=32): you use the super keyword to initialize all of the custom layer attributes

 

5.

Question 5

Consider the following code snippet.

TensorFlow Advanced Techniques Specialization

What are the function modifications that are needed for passing an activation function to this custom layer implementation?

a>def build(self, input_shape):

 

.

 

.

 

self.activation = tf.keras.activations.get(activation)

 

 

def call(self, inputs):

 

return self.activation(tf.matmul(inputs, self.w) + self.b)

 

 

b>def build(self, units=32, activation=None):

 

.

 

.

 

self.activation = activation

 

 

def call(self, inputs):

 

return self.activation(tf.matmul(inputs, self.w) + self.b)

 

 

c>def __init__(self, units=32):

 

.

 

.

 

self.activation = tf.keras.activations.get(activation)

 

 

def call(self, inputs):

 

return self.activation(tf.matmul(inputs, self.w) + self.b)

 

 

d>def __init__(self, units=32, activation=None):

 

.

 

.

 

self.activation = tf.keras.activations.get(activation)

 

 

def call(self, inputs):

 

return self.activation(tf.matmul(inputs, self.w) + self.b)

and loss functions with tensorflowcustom modelslayerstensorflow-advanced-techniques-specialization
  • 1 1 Answer
  • 1k Views
  • 0 Followers
  • 0
Answer
Share
  • Facebook

    1 Answer

    • Voted
    • Oldest
    • Recent
    1. I'M ADMIN
      I'M ADMIN
      2024-01-27T21:33:13+05:30Added an answer on January 27, 2024 at 9:33 pm
      This answer was edited.

      1.

      Question 1

      Lambda layer allows to execute an arbitrary function only within a Sequential API model.

      False

      True

      Answer: False

       

      2.

      Question 2

      Which one of the following is the correct syntax for mapping an increment of 2 to the value of “x” using a Lambda layer? (tf = Tensorflow)

       

      tf.keras.layers.Lambda(x: tf.math.add(x, 2.0))

      tf.keras.layers.Lambda(lambda x: tf.math.add(x, 2.0))

      tf.keras.Lambda(x: tf.math.add(x, 2.0))

      tf.keras.layers(lambda x: tf.math.add(x, 2.0))

       

      Answer: tf.keras.layers.Lambda(lambda x: tf.math.add(x, 2.0))

       

       

      3.

      Question 3

      One drawback of Lambda layers is that you cannot call a custom built function from within them.

      True

      False

      Answer: False

       

       

      4.

      Question 4

      A Layer is defined by having “States” and “Computation”. Consider the following code and check all that are true:

      TensorFlow Advanced Techniques Specialization

       

      def call(self, inputs): performs the computation and is called when the Class is instantiated.

      You use def build(self, input_shape): to create the state of the layers and specify local input states.

       

      After training, this class will return a w*X + b computation, where X is the input, w is the weight/kernel tensor with trained values, and b is the bias tensor with trained values.

       

      In def __init__(self, units=32): you use the super keyword to initialize all of the custom layer attributes

       

      Answer: You use def build(self, input_shape): to create the state of the layers and specify local input states.

       

       

      5.

      Question 5

      Consider the following code snippet.

      TensorFlow Advanced Techniques Specialization

      What are the function modifications that are needed for passing an activation function to this custom layer implementation?

       

      Answer: 

      def __init__(self, units=32, activation=None):

       

      .

       

      .

       

      self.activation = tf.keras.activations.get(activation)

       

       

      def call(self, inputs):

       

      return self.activation(tf.matmul(inputs, self.w) + self.b)

        • 0
      • Reply
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn

    Leave an answer
    Cancel reply

    You must login to add an answer.

    Forgot Password?

    Need An Account, Sign Up Here

    Sidebar

    store ads

    Stats

    • Questions 1k
    • Answers 1k
    • Posts 149
    • Best Answers 89
    • This Free AI Tool Translates Entire Books in Minute !
    • AI News: 🎬 Hollywood’s AI Studios, 🎓 OpenAI’s Latest Gift to Educators, 🚚 Class8 Bags $22M, 🧠 Google Gemini’s Memory Upgrade
    • AI NEWS: Legal Action Against OpenAI, $16M Paid, & Elon Musk’s Praise from Investor 🤖💰📑 | AI Boosts Cloud Seeding for Water Security 🌱💧
    • AI News: 🎬AI Video Tool Scam Exposed🤯, 🛰️ AI-Powered Drones to Ukraine 😱, Google’s $20M AI Push, Sam Altman Joins SF’s Leadership Team
    • AI News: 🤝 Biden Meets Xi on AI Talks, 💡 Xavier Niel’s Advice for Europe, ♻️ Hong Kong’s Smart Bin Revolution, 🚀 AI x Huawei

    Explore

    • Recent Questions
    • Questions For You
    • Answers With Time
    • Most Visited
    • New Questions
    • Recent Questions With Time

    Footer

    SIKSHAPATH

    Helpful Links

    • Contact
    • Disclaimer
    • Privacy Policy Notice
    • TERMS OF USE
    • FAQs
    • Refund/Cancellation Policy
    • Delivery Policy for Sikshapath

    Follow Us

    © 2021-24 Sikshapath. All Rights Reserved

    Insert/edit link

    Enter the destination URL

    Or link to existing content

      No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.