hidevscommunity commited on
Commit
0272238
·
verified ·
1 Parent(s): 794407b

Create app.py

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