start new:
tmux
start new with session name:
tmux new -s myname
| """ | |
| 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) |
| #!/bin/bash -eu | |
| # | |
| # Color log4j-style logs for easier visual parsing. | |
| # | |
| # Usage: | |
| # tail foo.log | log-color | |
| # run-service | log-color | |
| black="` tput setaf 0; tput bold`" | |
| red="` tput setaf 1; tput bold`" |