File size: 10,247 Bytes
36261a0 6a2acd0 5a9382e 67f5e6f 5a9382e 36261a0 ad89fdd 36261a0 ad89fdd 36261a0 5a9382e 67f5e6f 5a9382e 36261a0 6a2acd0 3db1a2f 6a2acd0 3db1a2f 6a2acd0 3db1a2f 6a2acd0 36261a0 |
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 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 |
import gradio as gr
import os
custom_css = """
.gradio-container {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.portfolio-header {
text-align: center;
padding: 2rem 0;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border-radius: 10px;
margin-bottom: 2rem;
}
.section {
margin: 2rem 0;
padding: 1.5rem;
background: #f8f9fa;
border-radius: 8px;
border-left: 4px solid #667eea;
}
.skill-tag {
display: inline-block;
padding: 0.5rem 1rem;
margin: 0.3rem;
background: #667eea;
color: white;
border-radius: 20px;
font-size: 0.9rem;
}
.tech-tag {
display: inline-block;
padding: 0.4rem 0.8rem;
margin: 0.2rem;
background: #764ba2;
color: white;
border-radius: 15px;
font-size: 0.85rem;
}
.project-card {
padding: 1.5rem;
margin: 1rem 0;
background: white;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
border-top: 3px solid #667eea;
}
.contact-info {
padding: 1.5rem;
margin: 1rem 0;
background: white;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.contact-link {
color: #667eea;
text-decoration: none;
font-weight: 500;
}
.contact-link:hover {
color: #764ba2;
text-decoration: underline;
}
.proof-of-work {
text-align: center;
padding: 2rem;
margin: 2rem 0;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 10px;
}
.proof-of-work-link {
font-size: 1.5rem;
font-weight: 900;
color: white;
text-decoration: none;
display: inline-block;
padding: 1rem 2rem;
margin: 0.5rem;
background: rgba(255, 255, 255, 0.2);
border-radius: 8px;
border: 2px solid white;
transition: all 0.3s ease;
}
.proof-of-work-link:hover {
background: rgba(255, 255, 255, 0.3);
transform: scale(1.05);
text-decoration: none;
color: white;
}
"""
def create_portfolio():
profile_image_path = None
possible_image_paths = [
"IMG_4098.JPG", "IMG_4098.jpg", "IMG_4098.jpeg",
"profile.jpg", "profile.jpeg", "profile.png",
"dp.jpg", "dp.jpeg", "dp.png",
"portfolio.jpg", "portfolio.jpeg", "portfolio.png"
]
# Check for any JPG/JPEG/PNG files in current directory
for path in possible_image_paths:
if os.path.exists(path):
profile_image_path = path
break
# If still not found, search for any image file
if not profile_image_path:
for file in os.listdir("."):
if file.lower().endswith(('.jpg', '.jpeg', '.png', '.gif', '.webp')):
profile_image_path = file
break
if not profile_image_path:
profile_image_path = None
with gr.Blocks(css=custom_css, theme=gr.themes.Soft()) as portfolio:
gr.HTML("""
<div class="portfolio-header">
<h1>AI Engineer & Founding Engineer</h1>
<p style="font-size: 1.2rem; margin-top: 0.5rem;">Building Production-Ready AI Systems</p>
</div>
""")
with gr.Row():
with gr.Column(scale=1):
if profile_image_path:
gr.Image(value=profile_image_path, label="Profile Picture", height=300, show_label=True)
else:
gr.Image(label="Profile Picture", height=300, show_label=True, value=None)
with gr.Column(scale=2):
# About Me Section
gr.Markdown("""
## About Me
I am an AI Engineer and Founding Engineer with strong experience in building real-world AI systems end-to-end: from data, model development, infrastructure, to deployment. I specialize in creating production-ready ML pipelines, LLM applications, agent systems, and scalable backend services.
I blend machine learning, software engineering, and product thinking to turn ideas into working AI solutions.
**Yes, I use AI tools** β for further research, faster debugging, and as a tool to enhance my development workflow and productivity.
""")
# Proof of Work Section
gr.HTML("""
<div class="proof-of-work">
<h2 style="color: white; margin-bottom: 1rem;">Proof of Work</h2>
<div style="display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;">
<a href="https://huggingface.co/nexusbert" class="proof-of-work-link" target="_blank">
View My Work on Hugging Face
</a>
<a href="https://github.com/neuralnex" class="proof-of-work-link" target="_blank">
View My Work on GitHub
</a>
</div>
</div>
""")
# Core Skills Section
gr.Markdown("""
## Core Skills
""")
with gr.Tabs():
with gr.Tab("Machine Learning / Deep Learning"):
gr.Markdown("""
- **Model training, fine-tuning & evaluation**
- **NLP, CV, Multimodal systems**
- **RAG, embeddings**
- **Deployment on GPU instances (Huggingface)**
- **MLOps (TGI, vLLM, Docker)**
""")
with gr.Tab("LLM Engineering"):
gr.Markdown("""
- **Prompt engineering**
- **Agentic workflows**
- **Custom tools & function calling**
- **Fine-tuning models (LoRA, QLoRA)**
- **Building AI assistants & APIs**
- **RAG pipelines with structured knowledge**
""")
with gr.Tab("Software / Backend Engineering"):
gr.Markdown("""
- **Node.js (TypeScript), Python**
- **FAST APIs**
- **Microservices architecture**
- **Authentication, payments, dashboards**
- **Real-time systems, event queues**
""")
with gr.Tab("AI Infrastructure"):
gr.Markdown("""
- **Docker & containerization**
- **TGI / vLLM inference servers**
- **Load balancing & scaling**
- **On-prem & cloud GPU orchestration**
""")
# Technologies Section
gr.Markdown("""
## Technologies I Use
""")
with gr.Row():
with gr.Column():
gr.Markdown("""
### Languages
- **Python**
- **TypeScript (Node.js)**
""")
with gr.Column():
gr.Markdown("""
### Frameworks & Tools
- **PyTorch**
- **Hugging Face**
- **Transformers**
- **Gradio**
- **FastAPI / Express**
- **Docker**
- **GitHub Actions**
- **Nginx**
""")
gr.Markdown("""
## Featured Projects
""")
with gr.Column():
# Project 1: Zurri
with gr.Group():
gr.Markdown("""
### Zurri β AI Agent Marketplace & Model Proxy
**Role:** Founding Engineer
**Tech Stack:** Node.js, TypeScript, Docker, TGI, HuggingFace models
**Highlights:**
- Built scalable API proxy for creators to sell AI models/agents
- Integration with Stripe & Flutterwave
- Dynamic UI rendering for purchased agents
- Backend architecture and optimization
- Model access rate-limiting, security, and analytics
""")
# Project 2: Think Inclusion
with gr.Group():
gr.Markdown("""
### Think Inclusion β AI Sign Language + Speech Translator
**Role:** Architecture Designer
**Status:** Model in production
**Tech Stack:** Deep learning, computer vision, transformers
**Highlights:**
- Real-time translation of sign language + speech
- Multimodal pipeline design
- Optimized for speed and accuracy
""")
# Project 3: AI Agriculture Intelligence System
with gr.Group():
gr.Markdown("""
### AI Agriculture Intelligence System
**Role:** STT/TTS engineer
**Models Used:**
- NCAIR models
- Yarngpt
- Multi-model ecosystem
""")
# Contact Section
gr.Markdown("""
## Contact Me
""")
gr.HTML("""
<div class="contact-info">
<p style="font-size: 1.1rem; margin-bottom: 1rem;">
<strong>π§ Email:</strong>
<a href="mailto:omezirizion@gmail.com" class="contact-link">omezirizion@gmail.com</a>
</p>
<p style="font-size: 1.1rem; margin-bottom: 1rem;">
<strong>π Phone:</strong>
<a href="tel:+2347052284817" class="contact-link">+2347052284817</a>
</p>
<p style="font-size: 1.1rem; margin-bottom: 0;">
<strong>π¬ WhatsApp:</strong>
<a href="https://wa.me/2349123809756" class="contact-link" target="_blank">09123809756</a>
</p>
</div>
""")
# Footer
gr.Markdown("""
---
<div style="text-align: center; padding: 2rem; color: #666;">
<p>Built with Gradio</p>
</div>
""")
return portfolio
if __name__ == "__main__":
portfolio = create_portfolio()
portfolio.launch()
|