# 在tensorflow中这样用,其他的库均类似~
softInput = tf.matmul(output, Wl_h_l) + Bl_h_l
softmax = tf.nn.softmax(softInput / tempreture)
# 在tensorflow中这样用,其他的库均类似~
softInput = tf.matmul(output, Wl_h_l) + Bl_h_l
softmax = tf.nn.softmax(softInput / tempreture)