Tensorflow没有属性relu(指数线性单元)

Tensor flow has no attribute elu (exponential linear unit)

我一直在使用张量流来实现神经网络,但我不确定发生了什么,但我收到了这条错误消息:

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

有人知道一定会发生什么吗?

这个错误肯定是tensorflow的版本造成的