arctic-captions
arctic-captions copied to clipboard
f_init = theano.function([ctx], [ctx]+init_state+init_memory, name='f_init', profile=False)
Excuse me, I don't quite understand what the output of [ctx]+init_state+init_memory
means in this theano.function finit
.Besides in functions of rval = f_init(ctx0)
,ctx0 = rval[0]
, next_state.append(rval[1+lidx])
, what exactly is f_init. As far as I am concerned, init_state
and init_memory
are just we want. Why do we bother to add them up? Thank you.