TensorFlow函數(shù)教程:tf.nn.xw_plus_b

2019-02-14 14:54 更新

tf.nn.xw_plus_b函數(shù)

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

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

計(jì)算matmul(x, weights) + biases。

參數(shù):

  • x:2D Tensor。維度通常為:batch,in_units
  • weights:2D Tensor。維度通常為:in_units,out_units
  • biases:1D Tensor。維度為:out_units
  • name:操作的名稱(chēng)(可選)。如果未指定,則使用“xw_plus_b”。

返回:

2-D Tensor用來(lái)計(jì)算matmul(x, weights) + biases。維度通常為:batch,out_units。

以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)