Skip to content
View dylan-sutton-chavez's full-sized avatar
🦀
🦀

Block or report dylan-sutton-chavez

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

Dylan Sutton Chavez

IEEE WCCI 2026 Peer Reviewer · ML Researcher · Systems Developer @ Amazon Audible


Systems Developer at Amazon Audible, peer reviewer for IEEE WCCI 2026, and independent ML researcher with work currently under journal review.

I work on resource-constrained machine learning, compiler design, and production systems engineering. From migrating Player Services across AWS regions to building Edge Python, a single-pass SSA compiler and bytecode VM in Rust and WebAssembly (>240 stars, externally sponsored), and proposing uncertainty-aware classifiers for TinyML deployment validated on NASA IMS and SemEval.

Most of what I build is small, fast, and deterministic. Open to collaborations on tiny compilers, selective classification, and embedded ML.


Research

Revisiting Rosenblatt Perceptron: Robust High-Entropy Classification via Uncertainty Margins Author of paper, introducing an uncertainty-aware linear classifier with adaptive abstention margin for TinyML deployment. ~1 KB memory footprint, 9 ms latency, benchmarked against Bonsai, FastGRNN, ProtoNN, and LSTM.

Systems

Edge Python Single-pass SSA bytecode compiler and threaded-code stack VM for a sandboxed Python subset: NaN-boxed values, inline caching, super-instruction fusion, pure-function memoization, mark-sweep GC. Coverage-guided fuzzing; sub-200 KB WebAssembly module runs in the browser.

Edge Python Official Packages:

  • Host Packages: Official packages that embed host-side bridge code (e.g., JS) and expose it to Python through the capability protocol. Includes modules like requests for networking and DOM bindings for browser interaction.
  • Standard Packages: Official .wasm standard-library packages, where each capability is a Rust crate compiled to wasm32 against the wasm-pdk ABI. Hosts load the resulting .wasm over the standard plugin contract, no custom embedder, no Rust on the consumer side.

github-snake

Pinned Loading

  1. edge-python edge-python Public

    Single-pass SSA bytecode compiler and threaded-code stack VM for a sandboxed Python subset: NaN-boxed values, inline caching, super-instruction fusion, pure-function memoization, mark-sweep GC. Cov…

    Rust 241 12

  2. uncertainty-simple-perceptron uncertainty-simple-perceptron Public

    A linear perceptron leveraging Cover's Theorem via high-dimensional vectorization. It employs a modified step function with a defined epsilon threshold to quantify uncertainty, effectively filterin…

    Python