Skip to content
View jaweed3's full-sized avatar

Block or report jaweed3

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
jaweed3/README.md

/**
 * @file    README.md
 * @author  Jawwad
 * @brief   Computer Engineer. Edge ML. Systems Optimization.
 *          Indonesia · UNIDA Gontor · Erasmus+ KA171 Scholar @ Univ. of Seville
 */

#include <edge_ai.h>
#include <ambition.h>
#include <no_excuses.h>

struct Engineer {
    const char* name        = "Jawwad";
    const char* focus       = "Edge ML · Quantization · MLOps";
    const char* location    = "Indonesia — currently Seville, Spain";
    const char* target      = "NAIST (Robotics) via MEXT · GSoC 2026";

    constexpr bool cloud_required() const { return false; }
};

map<Domain, vector<Skill>> stack = {
    { ML_INFERENCE,   { "PyTorch", "ONNX", "OpenVINO", "TFLite", "YOLOv8" } },
    { EDGE_HARDWARE,  { "ESP32-S3", "ARM Cortex", "Apple M4"               } },
    { SYSTEMS,        { "C++", "Python", "Bash"                             } },
    { MLOPS,          { "FastAPI", "Docker", "MLflow", "DVC"               } },
    { ENVIRONMENT,    { "Arch Linux", "macOS", "Neovim", "Hyprland"        } },
};

void ask_me_about() {
    quantization();        // INT8, zero-point folding, fake-quant graphs
    graph_optimization();  // OpenVINO graph_optimizer, ACL executor wiring
    edge_deployment();     // sub-10ms inference, no cloud, no excuses
}

Project projects[] = {
    {
        .name   = "RescueVision Edge",
        .desc   = "SAR victim detection on drone imagery. "
                  "YOLOv8n ONNX, fully on-device, <40ms latency.",
        .stack  = { "YOLOv8n", "ONNX Runtime", "FastAPI", "DJI EXIF GPS" },
        .status = SUBMITTED,   // FindIT! 2026 Hackathon — Track A: Edge Vision
    },
    {
        .name   = "BitJETS-M4",
        .desc   = "1.58-bit TTS on Apple Silicon. "
                  "Ternary weights {-1,0,1}, ~90% size reduction vs FP32.",
        .stack  = { "PyTorch", "BitNet b1.58", "MPS", "HiFi-GAN" },
        .status = RESEARCH_PREVIEW,
    },
    {
        .name   = "PerpusGate",
        .desc   = "Library access system with face recognition. Running in production.",
        .stack  = { "InsightFace", "FastAPI", "MySQL", "Vanilla JS" },
        .status = PRODUCTION,
    },
};

int main() {
    Engineer me;
    assert(!me.cloud_required());

    while (alive) {
        ship(projects);
        optimize(stack[ML_INFERENCE]);
        ignore(noise);
    }
}

Pinned Loading

  1. bitts bitts Public

    BitJETS-M4: Extreme Edge TTS with 1.58-bit Quantization

    Python 1

  2. web-ml-ops web-ml-ops Public

    End-to-end MLOps pipeline for SAR edge AI: DVC versioning → YOLOv8n training → ONNX/TFLite INT8 export → FastAPI serving → Prometheus/Grafana monitoring

    Python

  3. esp32-jarvis esp32-jarvis Public

    ESP32 S3 wake-up command and face recognition on fully-offline and quantized model using C++.

    C 1 1

  4. are-you-fit are-you-fit Public

    AI Resume System Analyzer

    Python

  5. RescueVision RescueVision Public

    Lightweight Sovereign AI for On-Device Victim Localization in Post-Disaster Aerial Assessment

    Jupyter Notebook

  6. burn-recsys burn-recsys Public

    Deep Learning Recommendation System in Rust.

    Rust