:help - main help portal (with links to more help pages)
:viusage - show a huge cheat sheet listing every command
0 - (zero) start of line
| """ | |
| 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 |
| """ | |
| 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 |