The framework in PySpark and the data are now complete. It is time to move on to building the neural network. Regardless of the complexity of the neural network, the development follows a similar path:
- Input data
- Add the weights and biases
- Sum the product of the data and weights
- Apply an activation function
- Evaluate the output and compare it to the desired outcome
This section will focus on setting the weights that create the input which feeds into the activation function.