howardroark commited on
Commit
bc50a9f
1 Parent(s): 67fdf96

added video

Browse files
Files changed (1) hide show
  1. app.py +5 -2
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
- # embed Loom video on the page
46
- # st.video("loom.mp4")
 
 
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 info@neurons-lab.com")
51
 
52
  if tabs == "Data generation":
53