Skip to content

Instantly share code, notes, and snippets.

@under0tech
Created September 26, 2022 17:53
Show Gist options
  • Save under0tech/2960080ab6056d844bc2ac8734ae7a13 to your computer and use it in GitHub Desktop.
Save under0tech/2960080ab6056d844bc2ac8734ae7a13 to your computer and use it in GitHub Desktop.
# 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