TensorFlow activatefunction

Posted francischeng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TensorFlow activatefunction相关的知识,希望对你有一定的参考价值。

import tensorflow as tf


def add_layer(inputs, in_size, out_size, activation_function=None):
    Weight = tf.Variable(tf.random_normal([in_size, out_size]))  # 随机变量会比全部都是0好很多
    biases = tf.Variable(tf.zeros(1, out_size)) + 0.1
    Wx_plus_b = tf.matmul(inputs, Weight) + biases
    if activation_function is None:
        out_put = Wx_plus_b

    else:
        out_put = activation_function(Wx_plus_b)
    return out_put

 

以上是关于TensorFlow activatefunction的主要内容,如果未能解决你的问题,请参考以下文章

如何让 Tensorflow Profiler 在 Tensorflow 2.5 中使用“tensorflow-macos”和“tensorflow-metal”工作

python [test tensorflow] test tensorflow installation #tensorflow

关于tensorflow的显存占用问题

java调用tensorflow训练好的模型

tensorflow新手必看,tensorflow入门教程,tensorflow示例代码

tensorflow 如何在线训练模型