NeuralNetwork.forward¶
- NeuralNetwork.forward(input_data, weights)[source]¶
Forward pass of the network.
- প্যারামিটার
input_data (
Union
[List
[float
],ndarray
,float
,None
]) -- input data of the shape (num_inputs). In case of a single scalar input it is directly cast to and interpreted like a one-element array.weights (
Union
[List
[float
],ndarray
,float
,None
]) -- trainable weights of the shape (num_weights). In case of a single scalar weight it is directly cast to and interpreted like a one-element array.
- রিটার্ন টাইপ
Union
[ndarray
,SparseArray
]- রিটার্নস
The result of the neural network of the shape (output_shape).