-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
141 lines (130 loc) · 7.27 KB
/
index.html
File metadata and controls
141 lines (130 loc) · 7.27 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ryan Bieber - Lead Data Scientist | Agentic AI & Decision Intelligence</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<nav>
<ul>
<li><a href="index.html" class="active">Home</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="blog.html">Blog</a></li>
</ul>
</nav>
<div class="hero">
<h1>Ryan Bieber</h1>
<p>Lead Data Scientist building production agentic AI systems</p>
<div class="cta-buttons">
<a href="resume.html" class="btn btn-primary">View Resume</a>
<a href="projects.html" class="btn btn-secondary">See Projects</a>
</div>
</div>
<div class="content">
<section id="about">
<h2>About Me</h2>
<p class="summary">
I build AI systems and production products that solve real problems. Over the past 6+ years, I've worked across
the full spectrum—from designing intelligent agents that automate complex workflows, to developing high-performance
time-series infrastructure, to creating tools that help people make better decisions with data.
</p>
<p class="summary" style="margin-top: 1rem;">
My work sits at the intersection of research and engineering. I take emerging techniques in AI and machine learning
and turn them into reliable, scalable systems that deliver value. The common thread is building production-grade
software that people actually use and trust.
</p>
</section>
<section id="highlights">
<h2>What I Do</h2>
<div class="skills-grid">
<div class="skill-category">
<h3>🤖 Agentic AI Systems</h3>
<p>Design and deploy multi-agent platforms using LangGraph, LangSmith, and RAG. Built enterprise systems
handling $80B+ in annual business processes with 20+ FTEs freed.</p>
</div>
<div class="skill-category">
<h3>⚡ Production ML</h3>
<p>Deploy ML systems on Kubernetes that actually scale. Rewrote critical forecasting libraries in Rust for
10x performance improvements in production pipelines.</p>
</div>
<div class="skill-category">
<h3>💬 Conversational AI</h3>
<p>Build conversational analytics agents that let business users query complex data warehouses in natural
language and get context-aware insights.</p>
</div>
<div class="skill-category">
<h3>🔧 MLOps & Infrastructure</h3>
<p>Set up CI/CD pipelines, Kubernetes deployments, and observability frameworks for production AI systems
on GCP and AWS.</p>
</div>
<div class="skill-category">
<h3>🎯 Decision Intelligence</h3>
<p>Build costing engines, pricing algorithms, and predictive models that form the backbone of business
strategy and drive real ROI.</p>
</div>
<div class="skill-category">
<h3>📊 AI Governance</h3>
<p>Create "trust but verify" frameworks for production AI, handling model validation, observability,
and responsible deployment of business-critical systems.</p>
</div>
</div>
</section>
<section id="featured-work">
<h2>Featured Work</h2>
<div class="project-grid">
<div class="project">
<h3>Farseer</h3>
<div class="project-type">Open Source Project</div>
<p class="project-description">
High-performance time-series forecasting library in Rust. Prophet reimplementation running in production
for mission-critical decision systems.
</p>
<div class="project-tech">
<span class="tech-tag">Rust</span>
<span class="tech-tag">Time-Series</span>
<span class="tech-tag">Production ML</span>
</div>
<a href="https://ryanbieber.github.io/farseer" target="_blank">View Project →</a>
</div>
</div>
<p style="text-align: center; margin-top: 2rem;">
<a href="projects.html" class="btn btn-secondary">View All Projects</a>
</p>
</section>
<section id="recent-posts">
<h2>Recent Blog Posts</h2>
<article class="blog-preview">
<h3><a href="blog/prophet-rust-rewrite.html">Rewriting Prophet in Rust: Lessons and Discoveries</a></h3>
<div class="blog-meta">October 31, 2025 • 8 min read</div>
<div class="project-tech" style="margin: 1rem 0;">
<span class="tech-tag">Rust</span>
<span class="tech-tag">Prophet</span>
<span class="tech-tag">Time Series</span>
<span class="tech-tag">Performance</span>
</div>
<p>Exploring the challenges and interesting discoveries from reimplementing Facebook's Prophet forecasting library in Rust.</p>
<a href="blog/prophet-rust-rewrite.html" class="btn btn-secondary">Read More →</a>
</article>
<p style="text-align: center; margin-top: 2rem;">
<a href="blog.html" class="btn btn-secondary">View Blog</a>
</p>
</section>
<section id="connect">
<h2>Let's Connect</h2>
<p class="summary" style="text-align: center;">
Interested in agentic AI, production ML systems, or building AI that drives real business value?
Let's connect on <a href="https://linkedin.com/in/ryan-bieber" target="_blank" style="color: #667eea; font-weight: 600;">LinkedIn</a>
or check out my code on <a href="https://github.com/ryanbieber" target="_blank" style="color: #667eea; font-weight: 600;">GitHub</a>.
</p>
</section>
</div>
<footer>
<p>© 2025 Ryan Bieber. Built with passion for AI and data science.</p>
</footer>
</div>
</body>
</html>