import streamlit as st import numpy as np import pickle import streamlit.components.v1 as components # Load the pickled model def load_model(): return pickle.load(open('Social_Media _Ads_prediction_RandomForest.pkl', 'rb')) # Function for model prediction def model_prediction(model, features): predicted = str(model.predict(features)[0]) return predicted def app_design(): # Add input fields for High, Open, and Low values image = '33.png' st.image(image, use_column_width=True) st.subheader("Enter the following values:") Age = st.number_input("Age") EstimatedSalary = st.number_input("EstimatedSalary") # Create a feature list from the user inputs features = [[Age,EstimatedSalary]] # Load the model model = load_model() # Make a prediction when the user clicks the "Predict" button if st.button('Predict Ads'): predicted_value = model_prediction(model, features) if predicted_value=='1': st.success('The Person will buy the product') else: st.success('The Person will not buy the product') def about_hidevs(): components.html("""

🚀 Unlock Your Dream Job with HiDevs Community!

🔍 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.

đź’Ľ We offer an upskill program in Gen AI, Data Science, Machine Learning, and assist startups in adopting Gen AI at minimal development costs.

🆓 Best of all, everything we offer is completely free! We are dedicated to helping society.

Book free of cost 1:1 mentorship on any topic of your choice — topmate

✨ 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 here

đź’ˇ Join us now, and turbocharge your career!

Website YouTube Instagram Medium LinkedIn GitHub

""", height=600) def main(): # Set the app title and add your website name and logo st.set_page_config( page_title="Social Media Ads Classification", page_icon=":chart_with_upwards_trend:", ) st.title("Welcome to our Social Media Ads Classification App!") app_design() st.header("About HiDevs Community") about_hidevs() if __name__ == '__main__': main()