Skip to content

Instantly share code, notes, and snippets.

View lowener's full-sized avatar

Micka lowener

  • NVIDIA
  • Paris
  • 03:40 (UTC +02:00)
View GitHub Profile
@jrhemstad
jrhemstad / ninja_instructions.md
Last active June 14, 2025 08:08
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 July 10, 2025 01:16
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)