Spaces:
Sleeping
Sleeping
Upload app.py
Browse files
app.py
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
st.title("'Zero to Hero' in ML 🚀")
|
4 |
+
|
5 |
+
st.markdown(
|
6 |
+
"""
|
7 |
+
Welcome to **Zero to Hero in Machine Learning**—the place where your Machine Learning journey begins!
|
8 |
+
This app is designed to guide you through the world of ML in a simple and interactive way, whether you're starting from scratch or building on existing knowledge.
|
9 |
+
|
10 |
+
Here's what you'll find:
|
11 |
+
- **Clear Tutorials**: Learn each concept step by step with interactive content that makes learning ML easier and enjoyable.
|
12 |
+
- **Real-World Insights**: Explore how ML is being used across industries, from healthcare to finance, and discover its impact on our daily lives.
|
13 |
+
- **Practical Projects**: Work on projects that let you apply what you've learned and see the power of ML in action.
|
14 |
+
|
15 |
+
Your path to learn ML starts here! Let’s begin your learning journey.
|
16 |
+
"""
|
17 |
+
)
|
18 |
+
|
19 |
+
st.header("About the Author 👩💻")
|
20 |
+
|
21 |
+
st.markdown(
|
22 |
+
"""
|
23 |
+
Hi there! I'm ** Shaik Zoya**,an aspiring Data Scientist and I’m here to guide you through the exciting world of Machine Learning.
|
24 |
+
a passionate learner excited to share the world of Machine Learning with you.
|
25 |
+
I believe that anyone can master ML with the right approach, and I’m here to make it as easy as possible for you to get started.
|
26 |
+
|
27 |
+
**Skills and Expertise** (That Keep Me Busy and Sometimes Awake at Night):
|
28 |
+
- **Programming**: Python (the language of data!), SQL (for working with databases)
|
29 |
+
- **Data Analysis & Visualization**: Power BI, Pandas NumPy and Matplotlib to transform raw data into meaningful insights.
|
30 |
+
- **Machine Learning**: I build and train models that can predict, classify, and solve problems—without the magic wand!
|
31 |
+
"""
|
32 |
+
|
33 |
+
)
|
34 |
+
|
35 |
+
# LinkedIn Button for Professional Networking
|
36 |
+
if st.button("Connect with me on LinkedIn 🌐"):
|
37 |
+
st.markdown(
|
38 |
+
'[Check out my LinkedIn]https://www.linkedin.com/in/shaik-zoya-54b213268/',
|
39 |
+
unsafe_allow_html=True
|
40 |
+
)
|
41 |
+
|
42 |
+
st.subheader("Let’s Get Started 🚀")
|
43 |
+
|
44 |
+
st.markdown(
|
45 |
+
"""
|
46 |
+
You're about to embark on an exciting journey where data and algorithms come together to make powerful predictions and decisions.
|
47 |
+
|
48 |
+
**So, let’s dive in and start building something amazing!**
|
49 |
+
"""
|
50 |
+
)
|