cchaimin commited on
Commit
befdefe
·
verified ·
1 Parent(s): 8b61600

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +1 -2
src/streamlit_app.py CHANGED
@@ -10,8 +10,7 @@ st.title("Customer Experience Analyzer")
10
  st.write("Analyze customer sentiment from restaurant reviews.")
11
 
12
  # Load data (IMPORTANT: correct path for Hugging Face)
13
- DATA_PATH = Path(__file__).resolve().parent.parent / "reviews.csv"
14
- df = pd.read_csv(DATA_PATH)
15
 
16
  # KPIs
17
  total_reviews = len(df)
 
10
  st.write("Analyze customer sentiment from restaurant reviews.")
11
 
12
  # Load data (IMPORTANT: correct path for Hugging Face)
13
+ df = pd.read_csv("reviews.csv")
 
14
 
15
  # KPIs
16
  total_reviews = len(df)