Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -4,6 +4,7 @@ import matplotlib.pyplot as plt
|
|
| 4 |
import seaborn as sns
|
| 5 |
import streamlit as st
|
| 6 |
import pickle
|
|
|
|
| 7 |
|
| 8 |
st.title("Health Insurance Cross Sell Prediction")
|
| 9 |
st.sidebar.header('Customer Data')
|
|
@@ -68,4 +69,6 @@ user_data = user_report()
|
|
| 68 |
st.header("Customer Data")
|
| 69 |
st.write(user_data)
|
| 70 |
|
|
|
|
|
|
|
| 71 |
|
|
|
|
| 4 |
import seaborn as sns
|
| 5 |
import streamlit as st
|
| 6 |
import pickle
|
| 7 |
+
from main import prediction
|
| 8 |
|
| 9 |
st.title("Health Insurance Cross Sell Prediction")
|
| 10 |
st.sidebar.header('Customer Data')
|
|
|
|
| 69 |
st.header("Customer Data")
|
| 70 |
st.write(user_data)
|
| 71 |
|
| 72 |
+
y_response = prediction(user_data)
|
| 73 |
+
|
| 74 |
|