Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abidshafee/google.colaboratory_projects
This repository contains the collections of interactive python notebooks (ipynb) that are some of my projects on Data Science, Machine Learning (ML), and Natural Language Processing (NLP).
https://github.com/abidshafee/google.colaboratory_projects
colaboratory data-analysis data-science lstm machine-learning nlp statistics time-series
Last synced: 14 days ago
JSON representation
This repository contains the collections of interactive python notebooks (ipynb) that are some of my projects on Data Science, Machine Learning (ML), and Natural Language Processing (NLP).
- Host: GitHub
- URL: https://github.com/abidshafee/google.colaboratory_projects
- Owner: abidshafee
- Created: 2020-07-12T18:10:57.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-03-08T05:17:26.000Z (almost 4 years ago)
- Last Synced: 2024-11-06T10:30:38.504Z (2 months ago)
- Topics: colaboratory, data-analysis, data-science, lstm, machine-learning, nlp, statistics, time-series
- Language: Jupyter Notebook
- Homepage:
- Size: 2.7 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### google.colaboratory_projects
## Description : The First Project : EURUSD Prediction Model
### This is a program that predict future currency price using artificial recurrent nural network
________________________________________________________________________________________________________
The Keras layer we are using in this program is an artificial recurrent neural network architecture which is also called 'Long Short Term Memory' or LSTM. LSTM architecture is mostly used in Deep Learning. Unlike Standard feed for neural networks LSTM has feedback connections. It not only process single data point such as images but also entire sequence of data such as spech and videos. LSTM are widely used for sequence prediction problems and proven to be extremely effective. The reason LSTM works so well is because it is able to store past information that is important and forgive the information that is not important..
________________________________________________________________________________________________________
##### So now, we will predict the closing price of the EURUSD currency pair from the past 60 days price.
![screan](https://github.com/abidshafee/google.colaboratory_projects/blob/master/EURESD%20price_Prediction_model.png)------------------------------------ END Description of FIRST-PROJECT ----------------------------------
## Description : Project-Two: Price-Prediction Model using SVM and LR