Theano.function等效于Tensorflow

Mih*_*kar 1 python numpy theano tensorflow

我想知道是否有任何相当于

theano.function(inputs=[x,y], # list of input variables
outputs=..., # what values to be returned
updates=..., # “state” values to be modified
givens=...,  # substitutions to the graph)
Run Code Online (Sandbox Code Playgroud)

在TensorFlow中

kev*_*man 5

run对方法tf.Session类是相当接近theano.function.它fetchesfeed_dict参数是道德等价物outputsgivens.