Stock Price Prediction Using Python & Machine Learning HD

22.12.2019
Stock Price Prediction Using Python & Machine Learning (LSTM). In this video you will learn how to create an artificial neural network called Long Short Term Memory to predict the future price of stock. NOTE: In the video to calculate the RMSE I put the following statement: rmse=np.sqrt(np.mean((predictions- y_test)**2)) When in fact I meant to put : rmse=np.sqrt(np.mean(((predictions- y_test)**2))) You can use the following statements to calculate RMSE: 1. rmse =np.sqrt(np.mean(((predictions- y_test)**2))) 2. rmse = np.sqrt(np.mean(np.power((np.array(y_test)-np.array(predictions)),2))) 3. rmse = np.sqrt(((predictions - y_test) ** 2).mean()) Please Subscribe ! ►Websites: http://everythingcomputerscience.com/ ►C-Programming Tutorial: https://www.udemy.com/c-programming-for-complete-beginners/learn/v4/overview ►Become a Patreot: https://www.patreon.com/randerson112358 ►PROGRAMMING BOOKS Python (Hands-Machine-Learning-Scikit-Learn-TensorFlow): https://www.amazon.com/gp/product/1491962291/ref=as_li_tl?ie=UTF8&tag=everythingc06-20&camp=1789&creative=9325&linkCode=as2&creativeASIN=1491962291&linkId=c364ada05263763500434993cc20b8f1 C-Programming : https://www.amazon.com/gp/product/0131103628/ref=as_li_tl?ie=UTF8&tag=everythingc06-20&camp=1789&creative=9325&linkCode=as2&creativeASIN=0131103628&linkId=764c7627ffb13944091b2ad15fb5de90 Head First Java: https://www.amazon.com/gp/product/0596009208/ref=as_li_tl?ie=UTF8&tag=everythingc06-20&camp=1789&creative=9325&linkCode=as2&creativeASIN=0596009208&linkId=58082f233879197beb1aeb73b03c1ed8 ►DISCRETE STRUCTURES/MATHEMATICS BOOKS Discrete Mathematics Workbook: https://www.amazon.com/gp/product/0130463272/ref=as_li_tl?ie=UTF8&tag=everythingc06-20&camp=1789&creative=9325&linkCode=as2&creativeASIN=0130463272&linkId=83220d3b9eb58fb0566fa51c0e5b5571 Practice Problems in Discrete Mathematics : https://www.amazon.com/gp/product/0130458031/ref=as_li_tl?ie=UTF8&tag=everythingc06-20&camp=1789&creative=9325&linkCode=as2&creativeASIN=0130458031&linkId=e6c98555ea0342d902afda0221a1a8fb ►ALGORITHMS BOOKS Algorithm Analysis : https://www.amazon.com/gp/product/0262033844/ref=as_li_tl?ie=UTF8&tag=everythingc06-20&camp=1789&creative=9325&linkCode=as2&creativeASIN=0262033844&linkId=ba3b1d4075fbd043bb4596a0df9402e9 #StockPrediction #Python #MachineLearning Get the code here: https://github.com/randerson112358/Python/blob/master/LSTM_Stock/LSTM2.ipynb

Похожие видео

Показать еще