Spaces:
Running
Running
File size: 4,612 Bytes
27818c1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 |
import streamlit as st
from streamlit_extras.switch_page_button import switch_page
import os
import sys
# Add the project root to the path
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
# Set page configuration
st.set_page_config(
page_title="Samuel Lima Braz | CV Journey",
page_icon="🧠",
layout="wide",
initial_sidebar_state="expanded",
)
# Custom CSS for better styling
st.markdown(
"""
<style>
.main .block-container {
padding-top: 2rem;
}
h1, h2, h3 {
margin-top: 0;
}
.stTabs [data-baseweb="tab-list"] {
gap: 2rem;
}
.stTabs [data-baseweb="tab"] {
height: 4rem;
white-space: pre-wrap;
background-color: transparent;
border-radius: 4px 4px 0 0;
gap: 1rem;
padding-top: 1rem;
padding-bottom: 1rem;
}
a {
text-decoration: none;
}
.badge {
display: inline-block;
padding: 0.25em 0.4em;
font-size: 75%;
font-weight: 700;
line-height: 1;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
border-radius: 0.25rem;
margin-right: 0.5rem;
margin-bottom: 0.5rem;
}
.badge-primary {
color: #fff;
background-color: #007bff;
}
.badge-secondary {
color: #fff;
background-color: #6c757d;
}
.badge-success {
color: #fff;
background-color: #28a745;
}
.badge-info {
color: #fff;
background-color: #17a2b8;
}
.tech-list {
list-style-type: none;
padding-left: 0;
}
.tech-list li {
margin-bottom: 0.5rem;
}
.tech-list li::before {
content: "•";
color: #ff4b4b;
font-weight: bold;
display: inline-block;
width: 1em;
margin-left: -1em;
}
</style>
""",
unsafe_allow_html=True,
)
# Title and introduction
st.title("My Computer Vision Journey")
st.subheader("Presented by Samuel Lima Braz")
# Profile image - create a column layout
col1, col2 = st.columns([1, 3])
with col1:
st.image("assets/profile.jpg", width=200)
with col2:
st.markdown(
"""
Hi, I'm **Samuel Lima Braz**, a Computer Engineering student at UNIFEI (Universidade Federal de Itajubá)
and Machine Learning Engineer at Tech4Humans in Brazil.
My programming journey began in 2018 with C during my technical course in Industrial Automation.
I entered the world of Computer Vision in 2023 when I joined Black Bee Drones, the first autonomous
drone team in Latin America, where I continue to develop cutting-edge solutions for autonomous flight.
"""
)
st.markdown("---")
st.markdown("#### Presentation Goal:")
st.markdown(
"""
This interactive presentation, built entirely with Streamlit, walks you through my key projects in Computer Vision,
from autonomous drones to fine-tuning Vision Language Models. We'll explore concepts, challenges, and see some live demos along the way!
"""
)
# Navigation section
st.markdown("### Navigate Through My Journey")
col1, col2, col3 = st.columns(3)
with col1:
black_bee_btn = st.button("🐝 Black Bee Drones", use_container_width=True)
if black_bee_btn:
switch_page("black_bee_drones")
cafe_dl_btn = st.button("☕ CafeDL Project", use_container_width=True)
if cafe_dl_btn:
switch_page("cafe_dl")
with col2:
asimov_btn = st.button("🤖 Asimo Foundation", use_container_width=True)
if asimov_btn:
switch_page("asimo_foundation")
tech4humans_btn = st.button("💼 Tech4Humans", use_container_width=True)
if tech4humans_btn:
switch_page("tech4humans")
with col3:
conclusion_btn = st.button("✅ Conclusion", use_container_width=True)
if conclusion_btn:
switch_page("conclusion")
# Add information about this presentation
st.sidebar.markdown("## About This Presentation")
st.sidebar.markdown(
"""
This interactive presentation was built with Streamlit as an alternative to traditional slides.
Navigate through the sections using the buttons above or the pages in the sidebar.
Each section includes:
- Project description
- Technologies used
- Interactive demos (where applicable)
- Code examples & visualizations
"""
)
# Add contact information in the sidebar
st.sidebar.markdown("## Connect With Me")
st.sidebar.markdown(
"""
- [GitHub](https://github.com/samuellimabraz)
- [LinkedIn](https://www.linkedin.com/in/samuel-lima-braz/)
- [Hugging Face](https://huggingface.co/samuellimabraz)
"""
)
|