Skip to content

Instantly share code, notes, and snippets.

View niklas88's full-sized avatar

Niklas Schnelle niklas88

View GitHub Profile
@niklas88
niklas88 / min-byte-rnn.py
Last active March 23, 2018 12:54 — forked from karpathy/min-char-rnn.py
Karpathy's original minimal char rnn + Python 3 + bytes directly instead of chars
#!/usr/bin/env python3
"""
Minimal character-level Vanilla RNN model. Written by Andrej Karpathy (@karpathy)
BSD License
"""
import numpy as np
import sys
import time
# data I/O