作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
与 tf.variable_scope('layer1-conv1'):
conv1_weights = tf.get_variable("weight",[3,3,3,32],initializer=tf.truncated_normal_initializer(stddev=0.1))
conv1_biases = tf.get_variable("bias", [32], initializer=tf.constant_initializer(0.0))
conv1 = tf.nn.conv2d(input_tensor, conv1_weights, strides=[1, 1, 1, 1], padding='SAME')
relu1 = tf.nn.relu(tf.nn.bias_add(conv1, conv1_biases))
以上层为例,如何将tf.nn.relu替换为sin(x)? tf.nn.bias_add(conv1, conv1_biases) 是一个张量,但是 math.sin() 的参数是一个数字。我希望你能帮助我。谢谢!!!
最佳答案
使用tf.math.sin作为您的激活函数,因为它将在您的张量上按元素计算函数。
关于python - 如何在卷积神经网络中使用余弦函数作为激活函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54087448/
我是一名优秀的程序员,十分优秀!