我一直在使用张量流来实现神经网络,但我不确定发生了什么,但我收到此错误消息:
h1=tf.nn.elu(tf.matmul(X,w_h1)+b_h1)
AttributeError: 'module' object has no attribute 'elu'
如果我将tf.nn.elu(tf.matmul(X,w_h1)+b_h1)
替换为tf.nn.relu(tf.matmul(X,w_h1)+b_h1)
,则效果很好。
但是,激活功能elu
列在here。
有人知道必须发生什么吗?