我一直在使用张量流来实现神经网络,但我不确定发生了什么,但我收到了以下错误消息:
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
列出了激活函数。
有人知道必须发生什么吗?