Skip to content
View back99's full-sized avatar

Highlights

  • Pro

Block or report back99

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
back99/README.md

Hi, I'm Seung Bum Jung

πŸ”§ The Problem I Solve

Most engineering teams hit a wall when production reliability and HPC/research-grade infrastructure need to coexist. Web-scale distributed systems engineers don't speak HPC. HPC researchers don't ship production AWS code. Healthcare AI teams need both, and almost no one has both.

⚠️ Why It Gets Worse

I've watched the same pattern repeat:

  • Legacy systems quietly cap throughput, but nobody redesigns the data path β€” they tune it
  • Research code lives on a laptop until it dies on the cluster
  • "We'll add compliance later" becomes "we shipped, now what?"

The cost? 50% over-spending, 30% latency you can't fix with caching, and an LLM you can't actually ship into a regulated environment.

βœ… What I Bring

The rare engineer who bridges production AWS at scale, HPC-based ML/AI research, and regulated healthcare LLM deployment β€” three intersecting depths that almost never coexist in one person.

πŸ₯ Regulated Healthcare LLM (funded RA, Summer 2026 β†’):

  • HIPAA-oriented clinical LLM chatbot for MCI patient support at SLU HPC Lab β€” working prototype deployed (Docker + AWS ECR, TLS): device pairing, onboarding, AI-initiated proactive conversation, hands-free voice, coordinator dashboard, 690+ automated tests β€” Read More
  • Server-side crisis detection (Code Blue escalation, 988 lockout) + prompt-level safety guardrails for a vulnerable population
  • BAA-grounded data architecture (engagement metadata only, no raw audio/transcripts) feeding a future NIH R01 application

πŸ”¬ HPC + ML Research at SLU HPC Lab (M.S. CS, Dec 2026):

  • Federated Learning parallelization with empirical Amdahl analysis (1.27Γ— stable speedup, ~24% parallel fraction ceiling proven); now extending to multi-node FL + FedAsync on the SLU Libra cluster
  • Gaussian Process Regression + LSTM pipeline for clinical force prediction with uncertainty estimation, on NVIDIA L40S under SLURM
  • CARLA distributed autonomous-driving data collection with GIST (2 nodes Γ— 8 A100, SLURM + Singularity) β€” contributed the watchdog + auto-resubmission job chain; targeting an SC2026 workshop paper

☁️ Production AWS at scale (4 years at Doverunner):

  • Redesigned a synchronous-RDB watermark token system into a Lambda + Redis + SNS architecture β†’ 5M+ race-free tokens across Seoul, Oregon, Frankfurt with 30% peak-latency reduction
  • Replaced a Hybrik-based encoding SaaS with a self-hosted AWS EKS pipeline β†’ 50% cost cut, 30% throughput lift
  • Reduced 100-user video conference room initialization from 0.6s to 0.1s β€” a 6Γ— user-facing latency improvement at TmaxWAPL

πŸ“© What I'm Looking For

Mid-level (SDE II / SWE II) roles in:

  • ☁️ Cloud / Distributed Systems Infrastructure
  • πŸ€– ML / AI Platform Engineering
  • 🎬 Video / Streaming Infrastructure
  • πŸ₯ Healthcare AI

πŸ“ St. Louis, MO | Open to relocation anywhere in the U.S. | F-1 OPT + 3-year STEM extension eligible | Available January 2027

β†’ Reach me via LinkedIn or email tofoth@gmail.com.

Research

βœ… Clinical LLM Chatbot for MCI Patient Support β€” Ongoing (funded RA, Summer 2026 β†’) πŸ“„ Read More

  • Funded RA project at SLU HPC Lab (advisor: Prof. Ted Ahn) β€” an iPad-based conversational AI for patients with Mild Cognitive Impairment (MCI), designed for a HIPAA-compliant clinical deployment as a feasibility pilot supporting a future NIH R01 application. Code private (clinical constraints) β€” architecture, safety design, and voice pipeline documented in the public showcase repo
  • Working prototype deployed end-to-end (Docker Compose + AWS ECR behind TLS/nginx, CI/CD via GitHub Actions + SSM): React/TypeScript PWA kiosk, FastAPI backend, PostgreSQL with de-identified metadata only β€” covered by 690+ automated tests (pytest + Vitest, E2E smoke in CI)
  • Safety enforced server-side: crisis detection with Code Blue escalation and a 988-crisis lockout flow before any LLM call, plus prompt-level guardrails. Data architecture captures engagement metadata only β€” no raw audio or full conversation transcripts
  • Hands-free voice implemented: turn-based, server-relayed via AWS Transcribe / Polly with latency engineering β€” per-sentence streaming TTS, speculative early STT, prompt caching. Pilot: ~15 participants, 6 months
    Stack: FastAPI, React + TypeScript, PostgreSQL, Claude API, prompt engineering + safety guardrails, AWS (Transcribe, Polly, ECR), Docker, pytest + Vitest

βœ… Distributed Autonomous-Driving Data Collection on HPC (CARLA) β€” Ongoing, with GIST AIGS

  • Run CARLA simulation workloads across 2 nodes Γ— 8 NVIDIA A100 GPUs, scheduled with SLURM and containerized with Singularity, collecting data for the LAV and InterFuser autonomous-driving pipelines
  • Contributed the watchdog + automatic-resubmission job chain so long-running collection jobs survive transient failures without manual intervention
  • Targeting an SC 2026 workshop paper
    Stack: CARLA, SLURM, Singularity, NVIDIA A100, Python

βœ… Parallelizing Federated Learning Client Simulation πŸ“„ Read More

  • Identified the single-process bottleneck capping FL research throughput; prototyped Python ProcessPoolExecutor parallelization and diagnosed a PyTorch tensor-pickling deadlock at the IPC boundary, resolving it via NumPy serialization
  • Measured ~1.27Γ— stable speedup across 50–200 Non-IID MNIST clients on an 8-core CPU; proved an Amdahl ceiling (~24% parallel fraction), pointing the next iteration to multi-node FL rather than further single-machine tuning
  • In progress: scaling FL to multi-node SLU Libra HPC and Asynchronous FedAvg (FedAsync-style); planned: CIFAR-10 + ResNet-18 workloads
    Stack: Python, PyTorch, NumPy, multiprocessing, MNIST, FedAvg

βœ… Dental Aligner ML Force Prediction πŸ“„ Read More

  • GPR for thickness extrapolation: Found XGBoost collapsed to flat lines outside the training range (0.25/0.5mm), useless for predicting forces (Fx–Fz, Tx–Tz) on U6/U7 molars at unseen thicknesses (0.75/1.0/1.25mm). Re-architected with Gaussian Process Regression (Matern kernel) for ΞΌ Β± 2Οƒ uncertainty; augmented training with weighted-delta-method synthetic 0.75mm data to distinguish 1.0 vs 1.25mm predictions
  • LSTM LOO + Partial Observation forecasting: Reframed as "given a new patient's early measurements, forecast later force/moment trajectory." Designed a 60-experiment matrix (5 cohorts Γ— 3 horizons Γ— 4 sheets) β€” train on 4 other cohorts plus target cohort's first (11βˆ’k) points, predict the last k ∈ {1,2,3} points
  • Model: LSTM(128, 2 layers, dropout 0.2) β†’ Dense(64) β†’ scalar, 300 epochs with StepLR
  • Complementary design: GPR covers spatial extrapolation (thickness), LSTM covers temporal extrapolation (14-day window). Trained on NVIDIA L40S GPUs under SLURM on the SLU Libra HPC cluster
    Stack: Python, PyTorch, GPyTorch, XGBoost, scikit-learn, pandas, numpy, SLURM

Experience

βœ… Watermark Token Issuance Optimization πŸ“„ Read More

Redesigned the legacy synchronous-RDB token service into a non-linear-index Lambda + Redis + SNS event-driven architecture, to fix peak-time latency spikes and regional index collisions blocking scale-out, delivering 30% peak-latency reduction and 5M+ race-free tokens across Seoul, Oregon, and Frankfurt.

Stack: Kotlin, AWS Lambda, Redis, SNS, CloudWatch, RDS

βœ… Distributed Encoding System on AWS EKS πŸ“„ Read More

Designed and built a containerized encoding pipeline on AWS EKS with GOP-aware video partitioning and Redis-based job control with auto-failover, to replace a Hybrik-based external SaaS that was cost-prohibitive and inelastic at scale, cutting encoding cost 50% and lifting throughput 30%.

Stack: Kotlin, Spring Boot, AWS EKS, Docker, Redis, FFmpeg

Education

  • M.S. in Computer Science (in progress) β€” Saint Louis University, USA, Aug 2025 – Dec 2026 (expected)
    Advisor: Prof. Ted Ahn | Lab: High Performance Computing Lab | GPA: 3.63 / 4.0
  • B.S. in Computer Engineering β€” Ajou University, South Korea, 2015–2018

Pinned Loading

  1. dental-ml-force-prediction dental-ml-force-prediction Public

    GPR + LSTM pipeline predicting orthodontic aligner forces at unseen thicknesses and time points: Matern-kernel GPR with uncertainty bands, 60-experiment LSTM LOO forecasting, GPyTorch on NVIDIA L40…

    Python

  2. fl-simulation fl-simulation Public

    Parallelizing Federated Learning client simulation with ProcessPoolExecutor: 1.27x stable speedup, empirical Amdahl analysis (~24% parallel fraction), NumPy IPC to avoid PyTorch pickling deadlocks

    Python

  3. HPC-CARLA HPC-CARLA Public

    Forked from jeykang/HPC-CARLA

    Python

  4. mci-chatbot-showcase mci-chatbot-showcase Public

    Architecture showcase for a clinical LLM chatbot (MCI patients) - safety design, hands-free voice, HIPAA-oriented. Code private.