| CARVIEW |
Machine Learning
What models am I actually using in this collection?
LSTM Recurrent Neural Network >
I'm sorry... what the heck is that?
To answer that, first let's cover a few things. You have a brain. In that brain, there are cells called neurons that communicate with each other. This is what makes you think. Now, in the field of machine learning, we want the computer to be able to think.
How do we do that?
By letting the computer mimic our brain.
A neural network uses nodes called neurons to process data. You can add layers of neurons to alter the way you want the computer to "think", and that's a neural network for you!
Now, there are three types.
- Artificial Neural Networks - There's an input layer, a/many hidden ( processing ) layer/s, and an output layer. The network tries to learn distinguishable "weights" so that it eventually can figure out patterns in data.
- Convolutional Neural Networks - These make up of filters, also known as "kernels". Kernels are used to extract relevant characteristics of the data. Mostly used in image and video processing, still pretty hyped up.
- Recurrent Neural Networks - This is what I'm using, basically an artificial neural network. But, the hidden layers loop onto each other. This results in the data ( sequential; meaning in a sequence ) being stored in the network. Used in time-series forecasting where you need to remember the past to predict the future.
What's LSTM?
LSTM stands for Long Short-Term Memory. The model has one input layer, one hidden layer, and one output layer. The self-connected hidden layer contains memory cells and corresponding gate units. But apart from inputting, storing, and outputting data, it can also forget data. All communications between the net and cells are through the gates. This helps bridge gaps between data, which was a challenge in the original recurrent neural network.
At the end, I add a regression line to the output to find a trend in the data, which is the line you will see in all the graphs.
By using this website, you agree and consent to the Terms and Conditions and the Privacy Policy set forth by Vesa Terra.
© 2024 Punya Syon Pandey