Shri Raj Bisaria
I’m an AI/ML engineer and researcher specializing in deep learning infrastructure, systems security, and optimizer theory. Founder of EdgeCI (YC W27 applicant, adopted upstream by RapidMLX) and author of an ICLR 2027 paper on spectral optimizer geometry.
Previously, I won the Trae AI Hackathon and was a global finalist in the Meta PyTorch OpenEnv Hackathon (from 70,000+ teams). I am pursuing a B.Tech in Computer Science and Engineering.
github.com/subwaycookiecrunch
linkedin.com/in/shri-raj-bisaria
huggingface.co/lucid987654
Research & Publications
-
TL;DR: We classify when adaptive spectral normalization yields a fixed convex geometry and when positive scalar rescaling can recover a norm-derived direction.
Solo Author. Proved when spectral optimizers (Muon, Newton–Schulz, Jordan polynomials) admit a fixed convex potential. Proved cubic Newton–Schulz is norm-derived, while repeated steps and Taylor-quintic compositions are not despite preserving order. Derived a sharp filter-preserving condition-number frontier; certified all critical points via exact FLINT/Arb rational certificates over ℚ. Registered submission #8176 on OpenReview. Finite spectral updates can approximate the polar direction without implementing one fixed convex geometry. We classify this distinction for qi(s) = h(si / α(s)), where the scale depends on the spectrum. With one initial Frobenius normalization in dimension at least three, one cubic Newton–Schulz step admits a norm-derived direction, whereas repeated cubic steps and every positive-depth Taylor-quintic composition do not, even after positive scalar rescaling and despite preserving order. More generally, an odd real-analytic filter in dimension at least four, or an odd polynomial in dimension at least three, admits a positive C1 integrating factor exactly when h(t) = at + ct2k+1. We also classify adaptive normalizers whose displayed response belongs to one fixed convex subdifferential. Under stated regularity, boundary, and critical-point assumptions in dimension at least two, the principal modular family is exhaustive and yields unitarily invariant norms. Exact incompatibility has an important limit: a classical perspective construction gives one norm per depth whose gradient approximates the Taylor fields uniformly as depth increases at fixed dimension, including near rank loss. Additional shape assumptions yield a sharp filter-preserving conditioning frontier. Exact Jordan certificates and dependent replay of 4,728 unique stored spectra characterize geometric separation, not a training-performance penalty.
spectral optimization, convex analysis, adaptive normalization, matrix functions, Newton-Schulz iteration, MuonOpenReview Submission #8176 · Abstract & MetadataFinite spectral updates can approximate the polar direction without implementing one fixed convex geometry. We classify this distinction for qi(s) = h(si / α(s)), where the scale depends on the spectrum. With one initial Frobenius normalization in dimension at least three, one cubic Newton–Schulz step admits a norm-derived direction, whereas repeated cubic steps and every positive-depth Taylor-quintic composition do not, even after positive scalar rescaling and despite preserving order. More generally, an odd real-analytic filter in dimension at least four, or an odd polynomial in dimension at least three, admits a positive C1 integrating factor exactly when h(t) = at + ct2k+1. We also classify adaptive normalizers whose displayed response belongs to one fixed convex subdifferential. Under stated regularity, boundary, and critical-point assumptions in dimension at least two, the principal modular family is exhaustive and yields unitarily invariant norms. Exact incompatibility has an important limit: a classical perspective construction gives one norm per depth whose gradient approximates the Taylor fields uniformly as depth increases at fixed dimension, including near rank loss. Additional shape assumptions yield a sharp filter-preserving conditioning frontier. Exact Jordan certificates and dependent replay of 4,728 unique stored spectra characterize geometric separation, not a training-performance penalty.
Keywords: spectral optimization convex analysis adaptive normalization matrix functions Newton-Schulz iteration MuonNewton–Schulz Isometry & Gram Matrix Convergencef(σ) = 0.5 σ(3 − σ²) κ = 7.502D Matrix Isometry Map Δ → 0.82Gram Matrix X_k^T X_k (Target: Identity Matrix I) ‖X^T X - I‖_F: 0.82040.0324 0.1420 0.08100.1420 0.1764 0.05200.0810 0.0520 0.5776Initial Spectrum (k=0): σ = [0.180, 0.420, 0.760, 1.050, 1.350] Condition number κ = 7.50 | Spectral Error Δ = 0.82 Move slider to hear harmonic sonification and watch Gram matrix snap to identity I!Formal Verification · Lean 4 & FLINT/Arb Rational Proof Tree1
2
3
4
5
6
7
8
9
10
11
12Tactic State · Open Goals (1 goal)FLINT/Arb Rational Critical Point Certificate Lookup (ℚ): Sample #0042 / 4,728verification/flint_rational_cert.py — FLINT / Arb exact certification# Exact rational certificate over Q verified across 4,728 stored spectra from fractions import Fraction import flint def verify_cubic_isometry(sigma_vec: list[Fraction]) -> bool: for sigma in sigma_vec: # Cubic Newton-Schulz map: f(sigma) = 0.5 * sigma * (3 - sigma^2) sigma_next = Fraction(1, 2) * sigma * (3 - sigma**2) # Assert monotonic contractive convergence to fixed-point attractor 1.0 assert abs(sigma_next - 1) < abs(sigma - 1) return True # Norm-derived potential guaranteed over Q
Interactive Research Proof // Spectral Isometry
Real-Time SVD · Newton–Schulz ContractionFounder Experience
-
EdgeCI — Founder & Core Engineer
YC W27 Applicant. Statistical performance-release gate for llama.cpp (121k+ ★) and MLX across Apple Silicon fleets. Paired ABBA/BAAB scheduling with thermal preflight settling and log-ratio confidence intervals produce rigorous PASS/FAIL/INCONCLUSIVE verdicts on sub-5% regressions across continuous 12-hour thermal stress runs (500+ sustained tokens/sec throughput). Established first M5 community benchmarks, adopted upstream by RapidMLX as the official hardware reference data, and actively utilized by edge LLM maintainers.
Apple Silicon, MLX, llama.cpp, Distributed CI, Hardware TelemetryEdgeCI Statistical Regression Gate · M5 Apple SiliconreadyClick "Run ABBA/BAAB Trial" to simulate thermal preflight settling and statistical ratio confidence intervals on llama.cpp Q4_K_M.edgeci/scheduler/statistical_gate.py — Interleaved ABBA/BAAB# Paired ABBA/BAAB scheduling with thermal preflight settling import numpy as np from scipy.stats import t, sem def evaluate_gate(baseline_toks, candidate_toks, alpha=0.05): log_ratios = np.log(candidate_toks) - np.log(baseline_toks) ci_low, ci_high = t.interval(1 - alpha, len(log_ratios) - 1, loc=np.mean(log_ratios), scale=sem(log_ratios)) if ci_low > -0.05: return "PASS" # Sub-5% regression gate confirmed return "FAIL" if ci_high < 0 else "INCONCLUSIVE"
Selected Projects
-
Thinking Budget — Adaptive Reasoning for LLMs
RL environment teaching a 1.7B model dynamic reasoning effort allocation across 150 real CVEs. Multi-objective reward for calibration, difficulty awareness, and adversarial robustness. Full SFT → GRPO pipeline pushed calibration accuracy 33% → 88% and triage F1 0.14 → 1.00. Global Finalist at the Meta PyTorch OpenEnv Hackathon 2026 (selected top finalist from 70,000+ teams). Live on HuggingFace Spaces.
Python, PyTorch, GRPO, TRL, Qwen3 1.7B, OpenEnvThinking Budget · Dynamic Reasoning AllocatorAllocated Tokens: 512 tokens | Calibration Confidence: 94.2% Policy: Dynamic self-consistency branch + verification pass. Adversarial probe defeated. -
drift — Apple Neural Engine Monitor
htop-style zero-entitlement ANE monitor for Apple Silicon: reads per-PID
Python, XNU Kernel (ctypes), IOKit, Textual TUI, SQLiteri_neural_footprintandri_energy_njviaproc_pid_rusagewithout root. Detects active neural models via FD scanning. 140-test suite (~91% coverage), multi-threaded TOPS benchmark, AppleSMC thermals. Distributed on Homebrew.drift · Live ANE Telemetry Sparkline (proc_pid_rusage)ANE Power: 342 mJ/tok Footprint: 2.14 GB Sampling: 30 Hz$ drift --top-models [PID 3108] llama-cli (Qwen-2.5-Coder-7B) → ANE Footprint: 2.14 GB | Energy: 412 mJ/tok [PID 8941] MLX (Whisper-v3) → ANE Footprint: 480 MB | Energy: 84 mJ/tok Privileges: Rootless (proc_pid_rusage). Test suite: 140 passing (91% coverage).drift/telemetry/xnu_bridge.py — proc_pid_rusage ctypes# Zero-entitlement Apple Neural Engine monitor via XNU kernel syscall import ctypes class rusage_info_v4(ctypes.Structure): _fields_ = [ ("ri_uuid", ctypes.c_uint8 * 16), ("ri_neural_footprint", ctypes.c_uint64), ("ri_energy_nj", ctypes.c_uint64), ] libSystem = ctypes.CDLL("/usr/lib/libSystem.B.dylib") # Reads hardware neural footprint without requiring root privileges libSystem.proc_pid_rusage(pid, 4, ctypes.byref(info))
-
godmode — Zero-Config Agent Prompt Compiler & CLI
Published CLI (
TypeScript, Node.js, sqlite-vec, BM25, Ink / React TUI@godmode/cli) auto-generating configs for 11 coding agents (Claude Code, Cursor, Copilot). Built local hybrid BM25 + sqlite-vec vector search compressing context windows from 1.2M to 87K tokens (93% reduction). Includes prompt compiler and Claude pre-hook interceptors.godmode Hybrid Context Compressor (BM25 + sqlite-vec)Ready: 1,200,000 raw tokensClick "Execute Context Compression" to run local hybrid lexical BM25 + dense sqlite-vec filtering across 11 coding agent context slots. -
ZenTorrent — Open-Source CLI Streaming Engine
Streams torrents directly into VLC by prioritizing initial 5% piece chunks via an embedded HTTP server. Multi-threaded peer-wire parsing and piece verification. 90+ GitHub stars, 50K+ Reddit views, #1 Trending on r/golang & r/commandline. Distributed via Homebrew, Winget, and Chrome extension.
Go, BitTorrent Wire Protocol, Embedded HTTP, Homebrew, WingetZenTorrent · Real-Time Peer Wire Swarm VisualizerConnected: 12 peer nodes Inbound: 14.8 MB/s → VLC pipe Buffer: 5.0% Head (Live)[Swarm]: 12 peer wire channels active · embedded HTTP server streaming directly to VLC localhost:4040. [Piece Scheduling]: Initial 5% pieces prioritized · zero disk write overhead.zentorrent/stream/http_pipe.go — BitTorrent wire to VLC HTTP pipe// Streams piece chunks into VLC stdout directly from peer wire package stream func (s *Streamer) ServeHTTP(w http.ResponseWriter, r *http.Request) { w.Header().Set("Content-Type", "video/mp4") w.Header().Set("Accept-Ranges", "bytes") // Prioritize first 5% piece chunks for instant VLC playback for chunk := range s.torrent.PrioritizeHead(0.05) { w.Write(chunk.Bytes()) } }
-
PARASITE EVOLVED — Codebase Security Organism
Multi-agent security tool combining Tree-sitter AST parsing across 5 languages, genetic attack mutation search, and automated patch synthesis, visualized in an interactive 3D graph. Scans 2,000+ Java files in ~4s. Finalist, QuantCraft Hackathon.
Tree-sitter AST, LangGraph, Genetic Algorithms, Three.jsPARASITE EVOLVED · Genetic AST Patch Synthesizer// Automated Genetic Patch for CVE-2026-TAINT − Runtime.getRuntime().exec(user_input); + ProcessBuilder(sanitizeTokenList(user_input)).start();[AST Taint Analysis]: Command injection vector detected via parameter taint propagation. [Patch Synthesis]: Generation 14 genetic mutation converged → zero regressions · 0 zero-day bypasses. -
VOID Zero — Local Agent Control Plane
$0-runtime local control plane translating Anthropic Messages API to local MLX/OpenAI endpoints on Apple Silicon with asynchronous SSE streaming, memory-pressure gating, and proposal → critique → action deliberation loops.
TypeScript, Node.js, MLX, Apple Silicon