Skip to content
View bquast's full-sized avatar
๐ŸŽฏ
๐ŸŽฏ

Highlights

  • Pro

Block or report bquast

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

Bastiaan Quast

Code ๐Ÿ’ป here on Github ๐Ÿ™; datasets ๐Ÿ“Š and models (weights) ๐Ÿ“ˆ on Hugging Face ๐Ÿค—

Gists are even more elegant than repos, I add instructions in the comments below the code file.

Current projects

  • mlx-profiler - operation-level profiler for Apple Silicon / MLX, torch.profiler equivalent for MLX
  • simple-agent-harness - bare-bones AI agent harnass (like OpenClaw ๐Ÿฆž), using a local LLM via Ollama (default gemma4:e2b)
  • autoresearch-mesa - adaptation of Karpathy's autoresearch, in turn an OpenClaw ๐Ÿฆž style AI agent (agent harness), to explore hyperparameters. Uses the python ABM framework mesa.
  • autoresearch-mesa-prompt - using the autoresearch paradigm to probe ABM models using the mesa framework, using only prompts in Claude web.
  • eurotrip dataset - a jsonl dataset of conversations that are walking directions in historic city centers, e.g. for SFT use with nanochat-d34
  • eurotrip model - a SFT version of nanochat-d34, which provides directions

Long-term projects

  • rrn - (2013-) native R implementations of recurrent neural network algorithms: vanilla RNN, LSTM, GRU, etc, >100k downloads from CRAN
  • transformer - (2020-) native R implementation of the transformer algorithm, available on CRAN
  • HomomorphicEncryption - (2021-) perform computations, functions, such as AI models on encrypted data, native R implementations of the major FHE schema: BFV, BGV, CKKS

iOS / MacOS App Store

  • SwissWallet (iOS + MacOS): swift implementations of barcode, QR code, MicroQR, etc. rendering
  • Big Files Tree Map (MacOS): Square multi-level pie chart to vizualize large files on disk, for saving space
  • LiteText (MacOS): ObjectiveC no-dependencies flat text editor in Y2K style, include line and column indicators
  • KneeBoard (MacOS): menubar quick text widget, always at hand for taking notes or copying text, just like a pilot's kneeboard

full resume online / PDF

Pinned Loading

  1. mlx-profiler mlx-profiler Public

    Operation-level profiler for Apple Silicon / MLX. The missing torch.profiler equivalent for the MLX ecosystem.

    Python

  2. bare-bones no-deps GPT algo in R lan... bare-bones no-deps GPT algo in R language, Functional Programming
    1
    input_file <- "input.txt"
    2
    if (!file.exists(input_file)) {
    3
      names_url <- "https://raw.githubusercontent.com/karpathy/makemore/refs/heads/master/names.txt"
    4
      download.file(names_url, input_file)
    5
    }
  3. rnn rnn Public

    Recurrent Neural Networks in R since 2013

    R 77 27

  4. transformer transformer Public

    simple from-scratch implementation of the Transformer architecture in R

    R 1 1

  5. calm animation for blog charts live,... calm animation for blog charts live, example in the comments
    1
    (function () {
    2
      function parseDuration(value) {
    3
        var text = String(value || "").trim();
    4
    
                  
    5
        if (text.endsWith("ms")) {
  6. HomomorphicEncryption HomomorphicEncryption Public

    Implementation of HomomorphicEncryption schema: BFV, BGV, CKKS

    R 1