Created
September 26, 2022 17:53
-
-
Save under0tech/2960080ab6056d844bc2ac8734ae7a13 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Get predictions from LSTM neural network | |
def Predict(stock): | |
predictions = [100.24, 155.33, 140.55] | |
# Here we have to organize communication between our algorithm and LSTM Model \ | |
# to get predictions by ticker for the particular stock. | |
# But this is the question to the infrastructure. | |
# I am gonna consider it in the next article "Infrastructure itself". | |
return predictions |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment