|
|
import streamlit as st |
|
|
|
|
|
|
|
|
st.title("π AI & Data Science Hub") |
|
|
st.write("### Unlock Your Potential with Artificial Intelligence and Data Science") |
|
|
|
|
|
|
|
|
st.info(""" |
|
|
Welcome to the **AI & Data Science Hub**! Whether you're a **beginner** exploring the world of AI or an **expert** looking to sharpen your skills, this platform offers hands-on tutorials, resources, and project workflows to level up your career. |
|
|
""") |
|
|
|
|
|
|
|
|
st.write("## π Key Features") |
|
|
features = [ |
|
|
"π **Step-by-Step Tutorials**: Understand AI & ML concepts with beginner-friendly lessons.", |
|
|
"π€ **Hands-on Algorithms**: Implement popular ML algorithms with code examples.", |
|
|
"π **Real-World Datasets**: Practice on curated datasets for practical learning.", |
|
|
"π **End-to-End Projects**: Build complete AI/ML projects from scratch.", |
|
|
"π‘ **Interview Preparation**: Crack technical interviews with focused Q&A resources." |
|
|
] |
|
|
|
|
|
|
|
|
for feature in features: |
|
|
st.markdown(f"- {feature}") |
|
|
|
|
|
|
|
|
st.markdown("---") |
|
|
|
|
|
|
|
|
st.markdown("<hr style='border:1px solid #ddd;'>", unsafe_allow_html=True) |
|
|
|
|
|
|
|
|
st.write("## π Build Real Projects") |
|
|
st.write(""" |
|
|
Gain real experience by building complete AI projects step-by-step. Below are some examples to get you started: |
|
|
""") |
|
|
project_examples = { |
|
|
"β
Crop Recommendation System": "Suggest which crop is better for their fields by collecting samples like Rainfall, PH, Temperature, Humidity, Nitrogen, Phosphorus, etc.", |
|
|
"β
Automating Government Services using AI": "Take feedback from people to check satisfaction with government services using text and video capturing processes.", |
|
|
} |
|
|
|
|
|
for project, description in project_examples.items(): |
|
|
st.markdown(f"### {project}") |
|
|
st.write(f"{description}\n") |
|
|
|
|
|
|
|
|
st.markdown("<br>", unsafe_allow_html=True) |
|
|
st.markdown("<center>", unsafe_allow_html=True) |
|
|
st.button("Get Started With Projects π") |
|
|
st.markdown("</center>", unsafe_allow_html=True) |
|
|
|
|
|
|
|
|
st.markdown("---") |
|
|
st.write("## π€ About the Creator") |
|
|
st.markdown(""" |
|
|
**Hi there! π I'm Mende Jagadeesh, a passionate AI enthusiast and Data Science professional. |
|
|
With a background in Machine Learning and Big Data Technologies, I specialize in: |
|
|
""") |
|
|
|
|
|
|
|
|
skills_col1, skills_col2 = st.columns(2) |
|
|
|
|
|
with skills_col1: |
|
|
st.write("### Skills") |
|
|
st.write(""" |
|
|
- Programming: **Python, R, SQL** |
|
|
- Data Visualization: **Tableau, Power BI, Matplotlib** |
|
|
- Machine Learning: **Scikit-Learn** |
|
|
""") |
|
|
|
|
|
|
|
|
st.write("### π Connect with Me") |
|
|
col1, col2, col3, col4 = st.columns(4) |
|
|
|
|
|
with col1: |
|
|
st.link_button("LinkedIn", "https://www.linkedin.com/in/mende-jagadeesh-02922323a/", type="primary") |
|
|
with col2: |
|
|
st.link_button("GitHub", "https://github.com/Jagadeesh2411", type="secondary") |
|
|
with col3: |
|
|
st.link_button("Email Me", "mailto:jagadeesh.mende2401@gmail.com", type="primary") |
|
|
with col4: |
|
|
st.write("π **Contact Number**: 7032440692") |
|
|
|
|
|
|
|
|
st.markdown("---") |
|
|
st.markdown(""" |
|
|
<center> |
|
|
<p style='font-size:14px; color:#888;'> Β© 2024 AI & Data Science Hub. All Rights Reserved. </p> |
|
|
</center> |
|
|
""", unsafe_allow_html=True) |
|
|
|