bills commited on
Commit
4214aa7
1 Parent(s): 6eb0286

Add some changes

Browse files
Files changed (2) hide show
  1. README.md +1 -1
  2. app.py +1 -1
README.md CHANGED
@@ -6,7 +6,7 @@ colorTo: pink
6
  sdk: streamlit
7
  sdk_version: 1.10.0
8
  app_file: app.py
9
- pinned: true
10
  ---
11
 
12
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
6
  sdk: streamlit
7
  sdk_version: 1.10.0
8
  app_file: app.py
9
+ pinned: false
10
  ---
11
 
12
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
app.py CHANGED
@@ -120,4 +120,4 @@ real_data = np.reshape(real_data, (real_data.shape[0], real_data.shape[1], 1))
120
 
121
  real_prediction = stock_lstm.predict(real_data)
122
  real_prediction = scaler.inverse_transform(real_prediction)
123
- st.text(f"Real-time prediction stock prices on Google is {real_prediction[0]}")
 
120
 
121
  real_prediction = stock_lstm.predict(real_data)
122
  real_prediction = scaler.inverse_transform(real_prediction)
123
+ st.text(f"Real-time prediction on Google stock prices is {real_prediction[0]}")