Skip to content
View Yusufteppei's full-sized avatar

Block or report Yusufteppei

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.

Content in all repositories owned by your account will be closed.
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
yusufteppei/README.md

Hi, I'm Zaid πŸ‘‹

ML / Bio / Research β€” I build the machinery underneath the tools, instead of just calling them.

The arc

This year moved in one direction: from using ML systems to implementing the machinery underneath them.

Software engineering β†’ ML β†’ mathematical foundations β†’ computational biology
    β†’ database internals β†’ geometric diffusion β†’ LLM internals β†’ AI infra

Each stage was chosen to force the next question down a level β€” how attention actually works as tensor contractions, how a database persists a B+ tree to disk, how a diffusion model has to be reparameterized to run on a manifold like SO(3) instead of flat Euclidean space.

What I've built

  • fenstersql β€” a relational database engine from scratch in C: SQL parsing (Flex/Bison), page-based storage, B+ tree indexing, catalogs, disk persistence. Built to actually understand what a database is doing, not just to query one.
  • protdiffusion β€” a research-oriented diffusion model over protein backbone geometry. Represents structure as SE(3) rigid frames, implements Invariant Point Attention, and works through the SO(3) rotation-diffusion problem directly. Started as a from-scratch reconstruction of RFdiffusion's ideas, not a reproduction of it.
  • scgpt-mini β€” an implementation of the scGPT paper for single-cell foundation models.
  • alphafold2-mini β€” an implementation of the AlphaFold2 folding transformer.
  • bio-agent β€” a biology-focused, tool-calling agent, SFT/LoRA fine-tuned on an open-source LLM.
  • breast-cancer-prognosis β€” prognosis prediction from TCGA transcriptomic and clinical data, including catching and correcting a data-leakage issue that was quietly inflating model accuracy.

Currently exploring

  • LLM inference and serving β€” vLLM, GPU/VRAM sizing, throughput/latency tradeoffs, scaling and routing strategies
  • AI agent architecture β€” tool boundaries, idempotency, retry and failure handling
  • Kubernetes / AI infrastructure (CKA/CKS)
  • Robotics and reinforcement learning as a next direction

Elsewhere

Pinned Loading

  1. bio-agent bio-agent Public

    A biology-focused tool-calling AI agent fined-tuned using SFT/LoRA on open-source LLMs.

    Jupyter Notebook

  2. protdiffusion protdiffusion Public

    A protein structure prediction model using diffusion using pytorch.

    Python

  3. alphafold2-mini alphafold2-mini Public

    An Implementation of the AlphaFold2 protein folding transformer neural network.

    Python 1 1

  4. scgpt-mini scgpt-mini Public

    An implementation of the scGPT paper

    Jupyter Notebook

  5. breast-cancer-prognosis breast-cancer-prognosis Public

    A project predicting prognosis using transcriptomic and clinical data.

    Jupyter Notebook

  6. fenstersql fenstersql Public

    A relational database system.

    C