Message from Navtej

Navtej Singh
Software Architect | Pre-Med
Colorado, USA
Hi! I'm a 20-year-old pre-med student and software architect, programming since I was 6. I build medical AI platforms, ML infrastructure, and distributed systems. I've recently been doing web dev for fun. I don't take compensation, I just love solving hard problems.20-year-old pre-med student & software architect. I build medical AI, ML infrastructure, and distributed systems.
Talk to Clover, an LLM I made, via the clover in the bottom middle.Tap the clover to chat with Clover AI.
What I'm Building
A collection of projects spanning medical AI, ML infrastructure, edtech, and industrial intelligence. Each one solving a different hard problem.
A study platform for students to study harder, smarter, deeper, and faster — maximizing information gained in the shortest time using AI and a suite of tools.
coming soon
A proprietary 12-billion parameter AI model. Not available to the public — built on the belief that LLMs aren't the future, and other AI models will benefit humankind more.
coming soon
A proprietary medical AI transcription platform to help healthcare providers spend more time with patients and less on paperwork. Discontinued after Doximity launched a free AI scribe.
no longer available
A pre-health web app for tracking applications, accessing resources, and preparing for every step of the admissions process.
coming soon
An AI-powered platform that detects fake, false, and semi-false research papers from paper mills — protecting scientific integrity at scale.
coming soon
A nonprofit helping high school students get into their dream college, discontinued due to scheduling conflicts among all founders.
no longer available
A proprietary AI-powered search for your files, support chat, receptionist, and more. Intelligent retrieval across your entire workflow.
coming soon
1 use std::tensor::{Tensor, SparseMask, RotaryEmbed}; 2 use std::ops::{einsum, softmax, dropout, rms_norm}; 3 use std::distribute::Mesh; 4 5 @kernel(grid=[N/256], block=[256]) 6 @autodiff(mode=reverse, order=2) 7 @quantize(precision=fp8_e4m3, fallback=bf16) 8 module TransformerBlock<T: TensorKind, D: Dim> { 9 10 // Flash attention w/ rotary position embeddings 11 @fuse(strategy=aggressive, mem_bound=shared) 12 fn multi_head_attn( 13 Q: Tensor<T, [B, H, S, D]>, 14 K: Tensor<T, [B, H, S, D]>, 15 V: Tensor<T, [B, H, S, D]>, 16 mask: SparseMask<[S, S], layout=causal>, 17 rope: RotaryEmbed<D, base=500000>, 18 ) -> Tensor<T, [B, H, S, D]> @where D % 128 == 0 { 19 20 let Q_rot = rope.apply(Q, dim=-1); 21 let K_rot = rope.apply(K, dim=-1); 22 23 let scale = 1.0 / D.sqrt().cast<T>(); 24 let attn = einsum("bhsd,bhtd->bhst", Q_rot, K_rot) 25 |> .mul(scale) 26 |> mask.apply(_, fill=-inf) 27 |> softmax(dim=-1, algo=online_safe) 28 |> dropout(p=0.0, @compile_only); 29 30 let out = einsum("bhst,bhtd->bhsd", attn, V); 31 return out |> rearrange("b h s d -> b s (h d)") 32 |> linear(self.Wo, bias=none); 33 } 34 35 // Gated FFN with SwiGLU activation 36 @pipeline(stages=4, interleave=1F1B) 37 @checkpoint(policy=selective, granularity=op) 38 fn feedforward( 39 x: Tensor<T, [B, S, E]>, 40 ) -> Tensor<T, [B, S, E]> { 41 let gate = x |> linear(self.Wg) |> silu(); 42 let up = x |> linear(self.Wu); 43 return (gate * up) 44 |> linear(self.Wd) 45 |> rms_norm(self.γ, eps=1e-6); 46 } 47 48 // Forward pass w/ residual + MoE routing 49 @distribute(mesh=[dp=8, tp=4, pp=2, ep=16]) 50 fn forward(x: Tensor<T, [B, S, E]>) -> Loss { 51 let residual = x; 52 let h = x |> rms_norm(self.γ1, eps=1e-6) 53 |> self.multi_head_attn(_, _, _) 54 |> residual.add(_); 55 let out = h |> rms_norm(self.γ2, eps=1e-6) 56 |> self.feedforward(_) 57 |> h.add(_); 58 return out |> sparse_moe( 59 experts=self.experts[0..E], 60 router=self.gate, 61 top_k=2, 62 capacity_factor=1.25, 63 @load_balance(aux_loss=0.01) 64 ); 65 } 66 }
A programming language purpose-built for ML pipelines. Tensor-native syntax, auto-differentiation, and GPU-first execution.
Available under Commons Clause. Free to use commercially but cannot be resold or charged to end users. Usage disclosure is required.
contact for more info
A proprietary Whole-Slide Imaging platform powered by AI. Automated labeling, annotation, and analysis of whole slides for faster, smarter pathology.
Available under Commons Clause. Free to use commercially but cannot be resold or charged to end users. Usage disclosure is required.
contact for more info
Proprietary high-resolution terrain mapping and analysis. Real-time 3D topographic generation from satellite and LiDAR data.
Available under Commons Clause. Free to use commercially but cannot be resold or charged to end users. Usage disclosure is required.
contact for more info
A proprietary AI model trained on biochemical processes and pathways, working to discover novel biochemical mechanisms across eukaryotes, prokaryotes, and archaea.
Available under Commons Clause. Free to use commercially but cannot be resold or charged to end users. Usage disclosure is required.
contact for more info
A proprietary AI-powered visual inspection platform. Sensor and imaging models that detect issues in robotic and packing machines to prevent downtime before it happens.
Available under Commons Clause. Free to use commercially but cannot be resold or charged to end users. Usage disclosure is required.
contact for more info
From the Blog
Writing about medical AI, ML infrastructure, and lessons from building things that matter.
The Lab
Interactive toys I build for fun and to explain concepts to others. Click into any to play with it.