Falcao Zane Vijay commited on
Commit
7cc2daf
·
1 Parent(s): 325763b
Files changed (1) hide show
  1. src/streamlit_app.py +2 -2
src/streamlit_app.py CHANGED
@@ -182,8 +182,8 @@ with tab1:
182
  st.metric("RSI14", f"{latest_data['RSI14']:.2f}")
183
 
184
 
185
- model = pickle.load(open('models/logistic_regression_model.pkl', 'rb'))
186
- scaler = pickle.load(open('models/scaler.pkl', 'rb'))
187
 
188
  # Create feature vector
189
  feature_vector = latest_data[FEATURES].values.reshape(1, -1)
 
182
  st.metric("RSI14", f"{latest_data['RSI14']:.2f}")
183
 
184
 
185
+ model = pickle.load(open('src/models/logistic_regression_model.pkl', 'rb'))
186
+ scaler = pickle.load(open('src/models/scaler.pkl', 'rb'))
187
 
188
  # Create feature vector
189
  feature_vector = latest_data[FEATURES].values.reshape(1, -1)