Spaces:
Runtime error
Runtime error
Commit
·
ab08b2a
1
Parent(s):
bfb5f4e
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,86 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
import numpy as np
|
3 |
+
import pickle
|
4 |
+
import streamlit.components.v1 as components
|
5 |
+
|
6 |
+
# Load the pickled model
|
7 |
+
def load_model():
|
8 |
+
return pickle.load(open('medical_insurance_pred_rr.pkl', 'rb')) #change
|
9 |
+
|
10 |
+
# Function for model prediction
|
11 |
+
def model_prediction(model, features):
|
12 |
+
predicted = str(model.predict(features)[0])
|
13 |
+
return predicted
|
14 |
+
|
15 |
+
def app_design():
|
16 |
+
# Add input fields for High, Open, and Low values
|
17 |
+
image = '22.png' #change
|
18 |
+
st.image(image, use_column_width=True)
|
19 |
+
|
20 |
+
st.subheader("Enter the following values:") #change
|
21 |
+
|
22 |
+
Age = st.number_input("Age")
|
23 |
+
Sex = st.selectbox("Sex",('Male','Female'))
|
24 |
+
if Sex == 'Male':
|
25 |
+
Sex = 1
|
26 |
+
else:
|
27 |
+
Sex = 0
|
28 |
+
bmi = st.number_input("bmi")
|
29 |
+
children = st.number_input("children")
|
30 |
+
smoker = st.number_input("smoker")
|
31 |
+
region = st.number_input("region")
|
32 |
+
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
# Create a feature list from the user inputs
|
38 |
+
features = [[Age, Sex, bmi, children, smoker, region]]
|
39 |
+
|
40 |
+
# Load the model
|
41 |
+
model = load_model()
|
42 |
+
|
43 |
+
# Make a prediction when the user clicks the "Predict" button
|
44 |
+
if st.button('Predict Claim'):
|
45 |
+
predicted_value = model_prediction(model, features)
|
46 |
+
|
47 |
+
st.success(f"The claim is: {predicted_value}")
|
48 |
+
|
49 |
+
|
50 |
+
def about_hidevs():
|
51 |
+
|
52 |
+
components.html("""
|
53 |
+
<div>
|
54 |
+
<h4>🚀 Unlock Your Dream Job with HiDevs Community!</h4>
|
55 |
+
<p class="subtitle">🔍 Seeking the perfect job? HiDevs Community is your gateway to career success in the tech industry. Explore free expert courses, job-seeking support, and career transformation tips.</p>
|
56 |
+
<p class="subtitle">💼 We offer an upskill program in <b>Gen AI, Data Science, Machine Learning</b>, and assist startups in adopting <b>Gen AI</b> at minimal development costs.</p>
|
57 |
+
<p class="subtitle">🆓 Best of all, everything we offer is <b>completely free</b>! We are dedicated to helping society.</p>
|
58 |
+
<p class="subtitle">Book free of cost 1:1 mentorship on any topic of your choice — <a class="link" href="https://topmate.io/deepakchawla1307">topmate</a></p>
|
59 |
+
<p class="subtitle">✨ We dedicate over 30 minutes to each applicant’s resume, LinkedIn profile, mock interview, and upskill program. If you’d like our guidance, check out our services <a class="link" href="https://hidevscommunity.wixsite.com/hidevs">here</a></p>
|
60 |
+
<p class="subtitle">💡 Join us now, and turbocharge your career!</p>
|
61 |
+
<p class="subtitle"><a class="link" href="https://hidevscommunity.wixsite.com/hidevs" target="__blank">Website</a>
|
62 |
+
<a class="link" href="https://www.youtube.com/@HidevsCommunity1307/" target="__blank">YouTube</a>
|
63 |
+
<a class="link" href="https://www.instagram.com/hidevs_community/" target="__blank">Instagram</a>
|
64 |
+
<a class="link" href="https://medium.com/@hidevscommunity" target="__blank">Medium</a>
|
65 |
+
<a class="link" href="https://www.linkedin.com/company/hidevs-community/" target="__blank">LinkedIn</a>
|
66 |
+
<a class="link" href="https://github.com/hidevscommunity" target="__blank">GitHub</a></p>
|
67 |
+
</div>
|
68 |
+
""",
|
69 |
+
height=600)
|
70 |
+
|
71 |
+
def main():
|
72 |
+
|
73 |
+
# Set the app title and add your website name and logo
|
74 |
+
st.set_page_config(
|
75 |
+
page_title="Medical Insurance",
|
76 |
+
page_icon=":chart_with_upwards_trend:",
|
77 |
+
)
|
78 |
+
|
79 |
+
st.title("Welcome to our Medical Insurance Claim App!")
|
80 |
+
|
81 |
+
app_design()
|
82 |
+
st.header("About HiDevs Community")
|
83 |
+
about_hidevs()
|
84 |
+
|
85 |
+
if __name__ == '__main__':
|
86 |
+
main()
|