我是theano和神经网络的新手。我正在尝试评估平方成本函数MyTopComponent
,其中x是常量,y是向量。
summation_over_components_of_y((y-x)**2)
我使用扫描功能来获取组件。如何获得所需的值components,updates = theano.scan(fn=lambda coeff, power, free_var:
coeff * (free_var ** power),
outputs_info=None,
sequences=[input_vector, full_range],
non_sequences=x)
?
答案 0 :(得分:0)
theano.tensor.sum((y-x)*(y-x))
附注,如果x
是标量常量,则会进行广播。