import tensorflow as tf print(tf.__version__) # 2.3.1 x = tf.constant([[-1.0, 2.0], [3.0, -4.0]]) tf.keras.layers.PReLU()(x) # <tf.Tensor: shape=(2, 2), ...
確定! 回上一頁