Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- 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 |
-
|
| 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)
|