美文网首页
二次函数求最小值

二次函数求最小值

作者: small瓜瓜 | 来源:发表于2021-06-08 17:32 被阅读0次
    import tensorflow as tf
    
    
    x = tf.constant(3.0)
    y = tf.constant(2.0)
    r = tf.constant(.1)
    while True:
        with tf.GradientTape(persistent=False) as tape:
            tape.watch([x, y])
            y = 5 * x ** 2 - 3 * x + 10
            dy = tape.gradient(y, x)
            x -= dy * r
            print(dy, x, y)
    

    相关文章

      网友评论

          本文标题:二次函数求最小值

          本文链接:https://www.haomeiwen.com/subject/tvsjeltx.html