Spaces:
Sleeping
Sleeping
Commit
·
bc50a9f
1
Parent(s):
67fdf96
added video
Browse files
app.py
CHANGED
@@ -42,9 +42,12 @@ if tabs == "Overview":
|
|
42 |
st.write("""
|
43 |
This app demonstrates the use of uplift modeling to understand the effect of different actions (like promotions) on customer behavior. We generate a simulated dataset and use it to train a model that predicts the uplift effect of different treatments on customer behavior. We then evaluate the model using the Qini curve, which measures the uplift effect of a model compared to a random model.
|
44 |
""")
|
45 |
-
|
46 |
-
|
|
|
|
|
47 |
st.write("To get started, select the 'Data generation' tab from the sidebar.")
|
|
|
48 |
|
49 |
if tabs == "Data generation":
|
50 |
|
|
|
42 |
st.write("""
|
43 |
This app demonstrates the use of uplift modeling to understand the effect of different actions (like promotions) on customer behavior. We generate a simulated dataset and use it to train a model that predicts the uplift effect of different treatments on customer behavior. We then evaluate the model using the Qini curve, which measures the uplift effect of a model compared to a random model.
|
44 |
""")
|
45 |
+
|
46 |
+
VIDEO_URL = "https://www.youtube.com/watch?v=AIL0QZWSWBY"
|
47 |
+
st.video(VIDEO_URL)
|
48 |
+
|
49 |
st.write("To get started, select the 'Data generation' tab from the sidebar.")
|
50 |
+
st.write("For more details, reach out to [email protected]")
|
51 |
|
52 |
if tabs == "Data generation":
|
53 |
|