Method Dense
Dense(TensorFloat, TensorFloat, TensorFloat)
Performs a matrix multiplication operation: f(X, w, b) = X x W + B.
This supports numpy-style broadcasting of input tensors.
Declaration
public TensorFloat Dense(TensorFloat X, TensorFloat W, TensorFloat B)
Parameters
| Type | Name | Description |
|---|---|---|
| TensorFloat | X | The input tensor. |
| TensorFloat | W | The weights tensor. |
| TensorFloat | B | The bias tensor. |
Returns
| Type | Description |
|---|---|
| TensorFloat | The computed output tensor. |