Sowmith22 commited on
Commit
8eee061
Β·
verified Β·
1 Parent(s): f8fbe08

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -25,7 +25,7 @@ page = st.sidebar.radio("πŸ“‚ Navigate", ["πŸ” EDA", "πŸ€– Model Training", "
25
  # -------------------------
26
  @st.cache_data
27
  def load_data():
28
- df=pd.read_csv(r"C:\Users\91879\Downloads\fertility_synthetic_50000\fertility_synthetic_50000.csv")
29
  df.drop_duplicates(inplace=True)
30
  return df
31
 
 
25
  # -------------------------
26
  @st.cache_data
27
  def load_data():
28
+ df=pd.read_csv("fertility_synthetic_50000.csv")
29
  df.drop_duplicates(inplace=True)
30
  return df
31