如下代码片段

outputs = tf.keras.layers.Bidirectional(tf.keras.layers.GRU(units=half_depth, use_bias=False, return_sequences=True,
return_state=False))(rnn_input)

​OP_REQUIRES failed at variable_ops.cc:104 Already exists: Resource​

在使用tensorflow 1.15版本执行gru时,抛出大量的的这个错误。

因为代码比较老旧,使用低版本tensorflow 1.12 或者 tensorflow 1.14时就没有问题了