sidoncode / StockPrice-DeepLearning-Python

The Repository Used Stacked LSTM(Long Short Term Memory) compiled with Deep Learning Techniques.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

StockPrice-DeepLearning-Python

MODULES USED IN THE PROJECT:

  1. Numpy as NP
  2. Pandas as pd
  3. Keras(A.P.I) Application Programming Interface.
  4. TensorFlow using Cuda cores
  5. Collab Virtual Cuda Cores
  6. Recurrent Neural Networks.

Difference between Machine Learning and Deep Learning?


Deep learning is just a subset of machine learning. In fact, deep learning technically is machine learning and functions in a similar way (hence why the terms are sometimes loosely interchanged). However, its capabilities are different.


While basic machine learning models do become progressively better at whatever their function is, they still need some guidance. If an AI algorithm returns an inaccurate prediction, then an engineer has to step in and make adjustments. With a deep learning model, an algorithm can determine on its own if a prediction is accurate or not through its own neural network.

LSTM Model

Long short-term memory (LSTM) is an artificial recurrent neural network (RNN) architecture used in the field of deep learning. Unlike standard feedforward neural networks, LSTM has feedback connections. It can not only process single data points (such as images), but also entire sequences of data (such as speech or video). For example, LSTM is applicable to tasks such as unsegmented, connected handwriting recognition, speech recognition and anomaly detection in network traffic or IDSs (intrusion detection systems).

A common LSTM unit is composed of a cell, an input gate, an output gate and a forget gate. The cell remembers values over arbitrary time intervals and the three gates regulate the flow of information into and out of the cell.

LSTM networks are well-suited to classifying, processing and making predictions based on time series data, since there can be lags of unknown duration between important events in a time series. LSTMs were developed to deal with the vanishing gradient problem that can be encountered when training traditional RNNs. Relative insensitivity to gap length is an advantage of LSTM over RNNs, hidden Markov models and other sequence learning methods in numerous applications.

Why to use Neural Networks?

A deep neural network analyzes data with learned representations akin to the way a person would look at a problem. In traditional machine learning, the algorithm is given a set of relevant features to analyze, however, in deep learning, the algorithm is given raw data and derives the features itself.

What's the difference between LSTM and GRU?

-LSTM (Long Short Term Memory): LSTM has three gates (input, output and forget gate)

-GRU (Gated Recurring Units): GRU has two gates (reset and update gate).

-GRU couples forget as well as input gates. GRU use less training parameters and therefore use less memory, execute faster and train
faster than LSTM's whereas LSTM is more accurate on
dataset using longer sequence. In short, if sequence is large or accuracy is very critical, please go for LSTM whereas for less memory consumption and faster operation go for GRU.
If you donot have much floating point operations per second (FLOP's) to spare switch to GRU. LSTM has three values at output (output, hidden and cell) whereas GRU has two values at
output (output and hidden).

***### Q) Is there any difference between in LSTM and ML?


Points to be remember while performing this project:
1) The individual shud have a grasp of good knowledge of numpy and pandas.
2) The individual shud have a grasp of knowledge of using jupyter notebook

Creating and Saving a local .CSV file in local directory

The saved CSV file in local directory

saved csv file

We Will plot the dataframe using the matplotlib module so in order to do that, Before we need to do the scaling

scalling of dataframe before plotting

We will be using the sklear.prepocessing import minmax scaler, for scalling of the dataframe

Why is the use of scaling the data(s) in the dataframe?

minmax scaler

Trainning data scaling -> we have kept the percentage as 65

trainning data 65 percentage

BEFORE CREATING OUR LSTM MODEL WE HAVE TO RESHAPE OUR TRAINING DATA & TEST DATA( X_TRAIN AND X_TEST)

reshape LSTM

Introduction of the sequential Model of Keras.Sequential of Tensorflow.


Keras Tuner is an easy-to-use, scalable hyperparameter optimization framework that solves the pain points of hyperparameter search. Easily configure your search space with a define-by-run syntax, then leverage one of the available search algorithms to find the best hyperparameter values for your models. Keras Tuner comes with Bayesian Optimization, Hyperband, and Random Search algorithms built-in, and is also designed to be easy for researchers to extend in order to experiment with new search algorithms.

sequential model

Importing the keras model

import model keras

Below are the two main points.


Sequential groups a linear stack of layers into a tf.keras.Model.
Sequential provides training and inference features on this model.

for the keras Model Documentation please refer the below links.

  1. -> https://keras.io/api/models/model/

After setting the epochs value and after executing it we need to set the test/train data do check the highlighted texts setting the test and train data

Why to use Keras Model Library API?*

The Keras Python library makes creating deep learning models fast and easy.

The sequential API allows the user to create models layer-by-layer for most problems. It is limited in that it does not allow you to create models that share layers or have multiple inputs
or outputs.

The functional API in Keras is an alternate way of creating models that offers a lot more flexibility, including creating more complex models.

About

The Repository Used Stacked LSTM(Long Short Term Memory) compiled with Deep Learning Techniques.

License:GNU General Public License v2.0


Languages

Language:Jupyter Notebook 100.0%Language:Python 0.0%