hidevscommunity commited on
Commit
8b1c9f0
·
1 Parent(s): 5813877

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +77 -0
app.py ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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('future_sales_pred_li.pkl', 'rb'))
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 = '14.png'
18
+ st.image(image, use_column_width=True)
19
+
20
+ st.subheader("Enter the following values:")
21
+
22
+
23
+
24
+ Television= st.number_input("Stag")
25
+ Radio= st.number_input("Stag")
26
+ Newspaper= st.number_input("Stag")
27
+
28
+
29
+ # Create a feature list from the user inputs
30
+ features = [Television, Radio, Newspaper]
31
+
32
+ # Load the model
33
+ model = load_model()
34
+
35
+ # Make a prediction when the user clicks the "Predict" button
36
+ if st.button('Predict Sales'):
37
+ predicted_value = model_prediction(model, features)
38
+ st.success(f"The Future Sales is: {predicted_value}")
39
+
40
+
41
+ def about_hidevs():
42
+
43
+ components.html("""
44
+ <div>
45
+ <h4>🚀 Unlock Your Dream Job with HiDevs Community!</h4>
46
+ <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>
47
+ <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>
48
+ <p class="subtitle">🆓 Best of all, everything we offer is <b>completely free</b>! We are dedicated to helping society.</p>
49
+ <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>
50
+ <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>
51
+ <p class="subtitle">💡 Join us now, and turbocharge your career!</p>
52
+ <p class="subtitle"><a class="link" href="https://hidevscommunity.wixsite.com/hidevs" target="__blank">Website</a>
53
+ <a class="link" href="https://www.youtube.com/@HidevsCommunity1307/" target="__blank">YouTube</a>
54
+ <a class="link" href="https://www.instagram.com/hidevs_community/" target="__blank">Instagram</a>
55
+ <a class="link" href="https://medium.com/@hidevscommunity" target="__blank">Medium</a>
56
+ <a class="link" href="https://www.linkedin.com/company/hidevs-community/" target="__blank">LinkedIn</a>
57
+ <a class="link" href="https://github.com/hidevscommunity" target="__blank">GitHub</a></p>
58
+ </div>
59
+ """,
60
+ height=600)
61
+
62
+ def main():
63
+
64
+ # Set the app title and add your website name and logo
65
+ st.set_page_config(
66
+ page_title="Future Sales Prediction",
67
+ page_icon=":chart_with_upwards_trend:",
68
+ )
69
+
70
+ st.title("Welcome to our Future Sales Prediction App!")
71
+
72
+ app_design()
73
+ st.header("About HiDevs Community")
74
+ about_hidevs()
75
+
76
+ if __name__ == '__main__':
77
+ main()