Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +2 -3
src/streamlit_app.py
CHANGED
|
@@ -12,10 +12,9 @@ def load_data():
|
|
| 12 |
df = pd.read_csv("src/Car.csv") # Make sure this file exists in your directory
|
| 13 |
return df
|
| 14 |
|
| 15 |
-
|
| 16 |
st.title("🚗 Car Price Predictor App")
|
| 17 |
-
|
| 18 |
-
st.dataframe(df.head())
|
| 19 |
|
| 20 |
# === Data Preprocessing ===
|
| 21 |
X = df.drop(columns=['selling_price'])
|
|
|
|
| 12 |
df = pd.read_csv("src/Car.csv") # Make sure this file exists in your directory
|
| 13 |
return df
|
| 14 |
|
| 15 |
+
|
| 16 |
st.title("🚗 Car Price Predictor App")
|
| 17 |
+
|
|
|
|
| 18 |
|
| 19 |
# === Data Preprocessing ===
|
| 20 |
X = df.drop(columns=['selling_price'])
|