Spaces:
Runtime error
Runtime error
Commit
·
e0df567
1
Parent(s):
6837c74
Update app.py
Browse files
app.py
CHANGED
@@ -17,7 +17,7 @@ st.title('Stock Future Predicter')
|
|
17 |
use_input = st.text_input('Enter stock Ticker', 'AAPL')##############
|
18 |
|
19 |
if st.button('Predict'):
|
20 |
-
df = yf.download(use_input, start
|
21 |
|
22 |
|
23 |
#describing data
|
@@ -69,7 +69,7 @@ if st.button('Predict'):
|
|
69 |
|
70 |
#load Model
|
71 |
|
72 |
-
model = load_model('
|
73 |
|
74 |
#testing past
|
75 |
pass_100_days = data_training.tail(100)
|
|
|
17 |
use_input = st.text_input('Enter stock Ticker', 'AAPL')##############
|
18 |
|
19 |
if st.button('Predict'):
|
20 |
+
df = yf.download(use_input, start)
|
21 |
|
22 |
|
23 |
#describing data
|
|
|
69 |
|
70 |
#load Model
|
71 |
|
72 |
+
model = load_model('keras_model1.h5')
|
73 |
|
74 |
#testing past
|
75 |
pass_100_days = data_training.tail(100)
|