上QQ阅读APP看书,第一时间看更新
Basic neural network overview
At the highest level, a neural network, which solves supervised problems, works as follows:
- Obtain training data (such as images for image recognition or sentences for generating text)
- Encode the data (neural networks work with numbers so a numeric representation of the data is required)
- Build the architecture of your neural network model
- Train the model until you are satisfied with the results
- Evaluate your model by making a fresh new prediction
Let's see how these steps are applied for an RNN.