Skip to content

Instantly share code, notes, and snippets.

View venkywonka's full-sized avatar
🎯
Focusing

Venky venkywonka

🎯
Focusing
View GitHub Profile
@venkywonka
venkywonka / .tmux.conf
Created December 1, 2020 05:21
My tmux configuration dotfile
# Changes to this file aren't read by tmux automatically,
# compleletely close the tmux sesssion and reopen it or
# ~PREFIX :~ to open command mode and type "source-file ~/.tmux.conf" or
# "tsr" in terminal which is an alias in ~/.fishrc or use binding `M-f r` to make it work
#
# from FAQ file in tmux source code:
# to see the default session options by starting a new tmux server with no configuration file:
# $ tmux -Lfoo -f/dev/null start\; show -g
# Or the default window options:
# $ tmux -Lfoo -f/dev/null start\; show -gw
@venkywonka
venkywonka / GitCommitEmoji.md
Created November 10, 2020 09:55 — forked from parmentf/GitCommitEmoji.md
Git Commit message Emoji
@venkywonka
venkywonka / git aliases.sh
Last active October 28, 2020 05:10 — forked from tj/git aliases.sh
Some helpful git aliases
alias gd="git diff"
alias gclone="git clone"
alias ga="git add"
alias gbdel="git branch -D"
alias gst="git status"
alias gcommit="git commit -a -m"
alias gptags="git push --tags"
alias gp="git push"
alias gpr="git pull-request"
alias grhard="git reset --hard"
"""
This is a batched LSTM forward and backward pass
"""
import numpy as np
import code
class LSTM:
@staticmethod
def init(input_size, hidden_size, fancy_forget_bias_init = 3):