Skip to content

Instantly share code, notes, and snippets.

View lowener's full-sized avatar

Micka lowener

  • NVIDIA
  • Paris
  • 03:33 (UTC +01:00)
View GitHub Profile
@jrhemstad
jrhemstad / ninja_instructions.md
Last active December 8, 2025 20:55
How to build with Ninja

How to Use Ninja

  1. Install Ninja
sudo apt install ninja-build
  1. Configure CMake to create Ninja build files
mkdir build && cd build
@karpathy
karpathy / min-char-rnn.py
Last active March 21, 2026 03:14
Minimal character-level language model with a Vanilla Recurrent Neural Network, in Python/numpy
"""
Minimal character-level Vanilla RNN model. Written by Andrej Karpathy (@karpathy)
BSD License
"""
import numpy as np
# data I/O
data = open('input.txt', 'r').read() # should be simple plain text file
chars = list(set(data))
data_size, vocab_size = len(data), len(chars)