Work
Four disciplines, one operating mode.
Most of this work comes from Hybridge, a dental implant company where I've been the only engineer in the building. Every project there runs the full arc: find the real problem, design the system, train the model or wire the LLM, ship it into someone's workflow, and teach people to run it. Different projects lean on different disciplines. Here's the work, told four ways.

AI Engineering
I build LLM pipelines for healthcare, where a made-up sentence isn't a quirk, it's a liability. Every system I ship forces the model into a schema, makes it cite its evidence, strips patient data before inference, and routes anything uncertain to a person.
-
Enterprise Search (RAG) An internal AI search over all of Hybridge's knowledge. Hybrid retrieval, reranking, deterministic conflict resolution, and citations, with an honest 'I don't know' when the evidence is thin. Built trustworthy-first and shipped stage by stage.
-
Doc Coach: Consultation QA Every Zoom consult scored against a 7-criterion clinical rubric by Gemini with structured output, delivered as color-coded coaching reports to doctors and the CEO within minutes of the call.
-
NPC Coach: Call Coaching A pipeline that coaches new-patient phone calls: it finds the relevant calls among thousands, scores each against the practice playbook with a verbatim quote behind every criterion, and writes per-coordinator trend reports. A full rebuild of an n8n prototype.

Forward-Deployed Engineering
At Hybridge, a dental implant company, I've been the only engineer in the building. That makes every project forward-deployed: sit with the person who has the problem, dig the requirements out of their actual data, ship into the tools they already use, then train them until they don't need me in the loop.
-
Centralized Diagnostic Filter The current frontier: a standardized diagnostic operating system built with the practice founder, unifying every imaging modality (CBCT, intraoral scans, photos, a risk survey) into one AI-assisted, doctor-validated report. The hardest forward-deployed job there is, turning a clinician's thirty-year mental model into a buildable, phased system.
-
Cowork Dashboard The operations dashboard Hybridge leadership runs the business on: weekly Monday.com exports parsed into a full funnel view, iterated live with the CSO, every metric independently verifiable.
-
AI Lab & Office Hours A company-wide enablement program: weekly AI Power Hour sessions plus open office hours for seven non-technical departments, grounded in a needs survey, privacy-first in every session.

Machine Learning Engineering
I train and ship models with the unglamorous parts done properly: versioned data pipelines with no train/serve skew, holdout gates that block bad models from promoting, experiment tracking, and honest evals. Flagship: a medical-imaging system that replaced a $98K vendor quote for about $25 a month.
-
CBCT Scan Validator An in-house medical-imaging quality gate that catches bad dental CT scans at upload time across 13 artifact classes, routing corrective actions to the front desk before a designer wastes hours.
-
LLM Persuasion (NYU research) Eighteen months of research on making Llama argue better: reward modeling over argument quality, then PPO and GRPO fine-tuning against it. The full RLHF stack, hands on.
-
Loan Radar End-to-end MLOps for a loan-default model: MLflow experiment tracking, Airflow orchestration, Kubernetes serving, and CI/CD that retrains and redeploys without a human.

Software Engineering
Every AI system I ship is wrapped in software built to last: databases that enforce their own rules, codebases held to strict typing and more than a thousand tests, Terraform for everything, and runbooks so the next engineer can pick it up without me.
-
Treatment Estimator The pricing tool Hybridge coordinators use chairside during live consults. Shipped in about a month after a vendor failed at it for ten years, now being rebuilt as a Next.js 16 + Postgres app with a five-model pricing engine.
-
Accounting automation platform FastAPI platform behind Cloud IAP: upload a file, the system recognizes it and recommends the right ETL script, runs it with live logs, hands back the output.
-
NPC pipeline engineering The software story under the AI: 19K lines of Python across 19 modules, 1,156 tests, strict typing, ports-and-adapters with dual-source dedup and an interim single-process pipeline ahead of the event-driven mesh.