- Recurrent Neural Networks with Python Quick Start Guide
- Simeon Kostadinov
- 87字
- 2021-06-10 18:50:38
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.