VivekPa / IntroNeuralNetworks

Introducing neural networks to predict stock prices
MIT License
735 stars 207 forks source link

Fix output file name #1

Closed dkozuch closed 5 years ago

dkozuch commented 5 years ago

Great code! But I get an error when running:

get_prices.py attempts to create an output file with: stock_data.to_csv(f"{ticker}_prices.csv") which doesn't work, and the LSTM_model.py looks for a file called "stock_prices.csv". This word correct the conflict by saving all stock data as "stock_prices.csv", although one might alternatively change the LSTM_model.py file to look for the correct file.