zhuofupan / Tensorflow-Deep-Neural-Networks

用Tensorflow实现的深度神经网络。

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

高斯-伯努利RBM

cjlhxls opened this issue · comments

您好,请问一下在guass-bin的重建过程中,act_function为什么用affine而不是guass?
即 def reconstruction(self,h):
logits = tf.matmul(h, tf.transpose(self.W)) + self.bv
prob_v=self.v_func(logits)
return logits,prob_v

你想要他是什么那就是什么