Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -94,12 +94,6 @@ Designation_vals = ['Manager', 'Executive', 'Senior Manager', 'AVP', 'VP']
|
|
| 94 |
|
| 95 |
CityType = [ "Tier 1", "Tier 2", "Tier 3"]
|
| 96 |
|
| 97 |
-
CityTier_vals = [1, 2, 3]
|
| 98 |
-
|
| 99 |
-
PreferredPropertyStar_vals = [3.0, 4.0, 5.0]
|
| 100 |
-
|
| 101 |
-
NumberOfTrips_vals = [1, 2, 7, 5, 6, 3, 4, 19, 21, 8, 20, 22]
|
| 102 |
-
|
| 103 |
PitchSatisfactionScore_vals = [1, 2, 3, 4, 5]
|
| 104 |
|
| 105 |
|
|
@@ -219,3 +213,7 @@ if st.button("🔍 Predict", use_container_width=True):
|
|
| 219 |
else "Customer is **unlikely** to purchase the product."
|
| 220 |
|
| 221 |
st.success(result)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 94 |
|
| 95 |
CityType = [ "Tier 1", "Tier 2", "Tier 3"]
|
| 96 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 97 |
PitchSatisfactionScore_vals = [1, 2, 3, 4, 5]
|
| 98 |
|
| 99 |
|
|
|
|
| 213 |
else "Customer is **unlikely** to purchase the product."
|
| 214 |
|
| 215 |
st.success(result)
|
| 216 |
+
|
| 217 |
+
# Show the etails of data frame prepared from user input
|
| 218 |
+
st.subheader("📦 Input Data Summary")
|
| 219 |
+
st.json(input_df)
|