calling RandomUniform.__init__ (from tensorflow.python.ops.init_ops) with dtype is deprecated and will be removed in a future version.
时间: 2024-04-24 19:23:07 浏览: 265
This warning message is indicating that using the `dtype` argument in the `RandomUniform.__init__` function from `tensorflow.python.ops.init_ops` is deprecated and will be removed in a future version of TensorFlow.
To resolve this issue, you should omit the `dtype` argument when calling the `RandomUniform` initializer. The dtype will be automatically inferred from the variable or tensor being initialized.
Here's an example of how to use `RandomUniform` initializer without specifying the `dtype`:
```python
import tensorflow as tf
initializer = tf.keras.initializers.RandomUniform(minval=-1.0, maxval=1.0)
```
Make sure to update your code accordingly to remove the `dtype` argument in the `RandomUniform` initializer call.
阅读全文
相关推荐


















