Python的theano库符号求导示例代码

2018-07-20    来源:open-open

容器云强势上线!快速搭建集群,上万Linux镜像随意使用
#coding=utf-8
""" Symbolic computation of python theano

@Author: zhang zewang
@Date: 2016-3-2
"""
import sys
sys.path.append('../utils/')
import theano
import theano.tensor as T
import numpy as np
from functionUtils import shared_normal,shared_zeros
w = 1.5
def step(input):
    return w*input
input = T.dscalar('input')
output = step(input)
f = theano.function([input],[output])
gf = T.grad(output,input)
gf = theano.function([input],[gf])
i = 4
print f(4)
print gf(4)



#coding=utf-8
""" Symbolic computation of python theano

@Author: zhang zewang
@Date: 2016-3-2
"""
import sys
sys.path.append('../utils/')
import theano
import theano.tensor as T
import numpy as np
from functionUtils import shared_normal,shared_zeros
w = [[1.5,2],[3,4]]
w = np.array(w)
input = T.dmatrix('input')
output = w*(input)
f = theano.function([input],[output])
gf = T.grad(output.sum(),input)
gf = theano.function([input],[gf])
i = [[1,2],[5,6]]
print f(i)
print gf(i)




标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。

上一篇:C#封装的常用文件操作代码类

下一篇:C#读写文本文件代码片段