Skip to content

Instantly share code, notes, and snippets.

View pushpendrapratap's full-sized avatar
🎧

pushpendra pratap pushpendrapratap

🎧
View GitHub Profile
@pushpendrapratap
pushpendrapratap / tabular-rf.ipynb
Created October 13, 2018 03:15 — forked from dienhoa/tabular-rf.ipynb
data preprocessing with Tabular Module fast.ai
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@pushpendrapratap
pushpendrapratap / osx_setup.md
Created October 9, 2018 10:17 — forked from millermedeiros/osx_setup.md
Mac OS X setup

Setup Mac OS X

Edit: I've done the same process every couple years since 2013 (Mountain Lion, Mavericks and High Sierra).

I just replaced the hard drive of my mbp and decided to do a clean install of Mountain Lion (10.8.5) since I was still using Snow Leopard (10.6.8).

I kinda regret for not using Boxen to automate the process, but TBH I have this laptop for almost 3yrs and this is the first

@pushpendrapratap
pushpendrapratap / System Design.md
Created January 5, 2018 16:18 — forked from vasanthk/System Design.md
System Design Cheatsheet

System Design Cheatsheet

Picking the right architecture = Picking the right battles + Managing trade-offs

Basic Steps

  1. Clarify and agree on the scope of the system
  • User cases (description of sequences of events that, taken together, lead to a system doing something useful)
    • Who is going to use it?
    • How are they going to use it?
@pushpendrapratap
pushpendrapratap / labels_1024.tsv
Created November 13, 2017 19:36 — forked from teamdandelion/labels_1024.tsv
TensorBoard: TF Dev Summit Tutorial
We can make this file beautiful and searchable if this error is corrected: No tabs found in this TSV file in line 0.
7
2
1
0
4
1
4
9
5
9
@pushpendrapratap
pushpendrapratap / min-char-rnn.py
Created October 9, 2017 06:03 — 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
"""
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)