WSYAM806 commited on
Commit
7b05577
1 Parent(s): 3114912

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -37,7 +37,10 @@ with Home:
37
 
38
  with App:
39
  st.subheader("Cluster Prediction and Product Recommendation")
40
- selected_features = joblib.load('selected_features.txt')
 
 
 
41
  n_components = joblib.load('n_components.txt')
42
  pipeline = joblib.load('pipeline.pkl')
43
 
 
37
 
38
  with App:
39
  st.subheader("Cluster Prediction and Product Recommendation")
40
+ selected_features = ['Trans Withdrawal_x', 'Interest', 'Trans_Debit', 'total_amount',
41
+ 'Trans Withdrawal_y', 'total_balance', 'Payment of Statement',
42
+ 'Interest Credit', 'Standard Payment', 'transaction_count',
43
+ 'Trans_Credit']
44
  n_components = joblib.load('n_components.txt')
45
  pipeline = joblib.load('pipeline.pkl')
46