Tensorflow GradientTape - Simple Example

preview_player
Показать описание
What does Tensorflow's GradientTape do? Why is GradientTape used?

This video will provide you with a very quick example of how GradientTape is used. You will first see the very easy math (Calculus Power Rule) to show how to get a derivative. Then, an application of this in a Jupyter Notebook.

Also, please Like and Subscribe!

Рекомендации по теме
Комментарии
Автор

Very helpful and so easily explained. We need more teachers like you!

Techdadphd
Автор

Short, sweet and straight forward. Thanks Bill!

Roshan-xdtl
Автор

great example, that's exactly what I was looking for. Thank you!

laiscarraro
Автор

wow, the Goddess Saraswathi (Goddess of Learning) is hung on the wall.

muralidhar
Автор

That's very helpful for me. Thanks Bill!

NguyenPhuc-zony
Автор

Hey, thanks for the explanation. I was a bit confuse, but you gave me some light

isotonicahacendada
Автор

Very helpful!. This was a simple and an excellent explanation of what gradientTape is and how it works.

jafetsierra
Автор

In a book tape.gradient is called outside of with block
I am confused there

input_var = tf.Variable(initial_value=3.)
with tf.GradientTape() as tape:
result = tf.square(input_var)
grad =tape.gradient(result, input_var)

kartiksaini
Автор

You are very positive which is very nice

OFaruk
Автор

I see the picture of Godess Saraswati in the background, the Godess of knowledge. That's nice.

Thank you for the video

arkadebmisra
Автор

How to manipulate the calculated grads?

theunnamed