Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -44,7 +44,7 @@ def price_pred(make, model, trim, mileage, car_type, cylinder, liter, doors, cru
|
|
44 |
return prediction
|
45 |
|
46 |
def main():
|
47 |
-
st.title('
|
48 |
st.write('Enter Car Details to predict the price')
|
49 |
make = st.selectbox('Make', df['Make'].unique())
|
50 |
models = df[df['Make'] == make]['Model'].unique()
|
|
|
44 |
return prediction
|
45 |
|
46 |
def main():
|
47 |
+
st.title('Car Price Prediction :red_car:')
|
48 |
st.write('Enter Car Details to predict the price')
|
49 |
make = st.selectbox('Make', df['Make'].unique())
|
50 |
models = df[df['Make'] == make]['Model'].unique()
|