Skip to content

Instantly share code, notes, and snippets.

View hereismari's full-sized avatar
🎸
Focusing

Marianne Monteiro hereismari

🎸
Focusing
View GitHub Profile
@hereismari
hereismari / My Favorites.md
Last active February 9, 2021 10:38 — forked from m3nd3s/NERDTree.mkd
My Vim Cheat Sheet

My favorites

Help

:help - main help portal (with links to more help pages)
:viusage - show a huge cheat sheet listing every command

Edit

0 - (zero) start of line

@hereismari
hereismari / min-char-rnn-tensorflow.py
Created June 11, 2017 19:05 — forked from vinhkhuc/min-char-rnn-tensorflow.py
Vanilla Char-RNN using TensorFlow
"""
Vanilla Char-RNN using TensorFlow by Vinh Khuc (@knvinh).
Adapted from Karpathy's min-char-rnn.py
https://gist.github.com/karpathy/d4dee566867f8291f086
Requires tensorflow>=1.0
BSD License
"""
import random
import numpy as np
import tensorflow as tf
@hereismari
hereismari / min-char-rnn.py
Last active June 11, 2017 18:50 — forked from karpathy/min-char-rnn.py
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
Original code from: Andrej Karpathy (@karpathy)
Modified by: Marianne Linhares (@mari-linhares)
"""
import numpy as np