python 自动微分の例5

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 自动微分の例5相关的知识,希望对你有一定的参考价值。

#coding: utf-8
import theano
import theano.tensor as T
import numpy as np

x = T.dscalar('x')

# 微分される数式のシンボルを定義
y = (x - 4) * (x ** 2 + 6)

# yをxに関して微分
gy = T.grad(cost=y, wrt=x)

# 微分係数を求める関数を定義
f = theano.function(inputs=[x], outputs=gy)
print theano.pp(f.maker.fgraph.outputs[0])

# 具体的なxを与えて微分係数を求める
print f(0)
print f(1)
print f(2)

以上是关于python 自动微分の例5的主要内容,如果未能解决你的问题,请参考以下文章

python 自动微分の例3

python 自动微分の例2

python 自动微分の例1

python 偏微分の例

- 第五节:自动微分

python中几种自动微分库