Ci-Dave commited on
Commit
887ad5e
·
1 Parent(s): 3d5be31
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -17,9 +17,9 @@ def load_data():
17
  df = load_data()
18
 
19
  # Load machine learning models for prediction
20
- model = joblib.load(r"C:\Users\ACER\Desktop\Feature_Prediction_of_Pokemon\random_forest.pkl")
21
- model = joblib.load(r"C:\Users\ACER\Desktop\Feature_Prediction_of_Pokemon\logistic_regression.pkl")
22
- model = joblib.load(r"C:\Users\ACER\Desktop\Feature_Prediction_of_Pokemon\naive_bayes.pkl")
23
  # Sidebar Navigation
24
  st.sidebar.title("🔍 Pokémon Explorer")
25
  st.sidebar.markdown("Navigate through different sections!")
 
17
  df = load_data()
18
 
19
  # Load machine learning models for prediction
20
+ model = joblib.load("random_forest.pkl")
21
+ model = joblib.load("logistic_regression.pkl")
22
+ model = joblib.load("naive_bayes.pkl")
23
  # Sidebar Navigation
24
  st.sidebar.title("🔍 Pokémon Explorer")
25
  st.sidebar.markdown("Navigate through different sections!")