Update app.py
Browse files
app.py
CHANGED
@@ -54,19 +54,19 @@ def app_design(le):
|
|
54 |
if st.button('Predict Online Payment Fraud'):
|
55 |
predicted_value = model_prediction(model, features)
|
56 |
if predicted_value == '1':
|
57 |
-
|
58 |
else:
|
59 |
-
|
60 |
|
61 |
def about_RamDevs():
|
62 |
components.html("""
|
63 |
<div>
|
64 |
-
<h4>🚀 Unlock Your
|
65 |
-
<p class="subtitle">🔍 Seeking the perfect
|
66 |
-
<p class="subtitle">💼 We offer
|
67 |
<p class="subtitle">🆓 Best of all, everything we offer is <b>completely free</b>! We are dedicated to helping society.</p>
|
68 |
<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>
|
69 |
-
<p class="subtitle">✨ We dedicate over 30 minutes to each applicant’s
|
70 |
<p class="subtitle">💡 Join us now, and turbocharge your career!</p>
|
71 |
<p class="subtitle">
|
72 |
<a class="link" href="https://RamDevscommunity.wixsite.com/RamDevs" target="__blank">Website</a>
|
|
|
54 |
if st.button('Predict Online Payment Fraud'):
|
55 |
predicted_value = model_prediction(model, features)
|
56 |
if predicted_value == '1':
|
57 |
+
st.success("Online payment fraud not happened")
|
58 |
else:
|
59 |
+
st.success("Online payment fraud happened")
|
60 |
|
61 |
def about_RamDevs():
|
62 |
components.html("""
|
63 |
<div>
|
64 |
+
<h4>🚀 Unlock Your Dream Job with RamDevs Community!</h4>
|
65 |
+
<p class="subtitle">🔍 Seeking the perfect job? RamDevs Community is your gateway to career success in the tech industry. Explore free expert courses, job-seeking support, and career transformation tips.</p>
|
66 |
+
<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>
|
67 |
<p class="subtitle">🆓 Best of all, everything we offer is <b>completely free</b>! We are dedicated to helping society.</p>
|
68 |
<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>
|
69 |
+
<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://RamDevscommunity.wixsite.com/RamDevs">here</a></p>
|
70 |
<p class="subtitle">💡 Join us now, and turbocharge your career!</p>
|
71 |
<p class="subtitle">
|
72 |
<a class="link" href="https://RamDevscommunity.wixsite.com/RamDevs" target="__blank">Website</a>
|