TensorFlow函数教程:tf.nn.xw_plus_b

2019-02-14 14:54 更新

tf.nn.xw_plus_b函数

tf.nn.xw_plus_b(
    x,
    weights,
    biases,
    name=None
)

定义在:tensorflow/python/ops/nn_ops.py。

计算matmul(x, weights) + biases。

参数:

  • x:2D Tensor。维度通常为:batch,in_units
  • weights:2D Tensor。维度通常为:in_units,out_units
  • biases:1D Tensor。维度为:out_units
  • name:操作的名称(可选)。如果未指定,则使用“xw_plus_b”。

返回:

2-D Tensor用来计算matmul(x, weights) + biases。维度通常为:batch,out_units。

以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号