Skip to content

Instantly share code, notes, and snippets.

View dbamman's full-sized avatar

David Bamman dbamman

View GitHub Profile
@dbamman
dbamman / gist:e7da85f8ee7d7b76061f
Last active August 29, 2015 14:12
PCA on random walk data
# generate 100-dimensional random walk data so that each data point in a sequence is similar to the last data point
import numpy as np
last=np.random.normal(0, .1, 100)
for i in range(1000):
new=last+np.random.normal(0, .1, 100)
last=new
print ' '.join(str(x) for x in new)
@dbamman
dbamman / gist:5151925
Last active December 14, 2015 21:29
A Proposal for Posting Digital Humanities 2013 Extended Abstracts to ArXiv
A Proposal for Posting Digital Humanities 2013 Extended Abstracts to ArXiv
David Bamman
@dbamman
Here's an idea for #DH2013: the official DH long abstract is limited to 1500
words. Let's post our abstracts to ArXiv right now and fill them out as we see
fit until the conference rolls around. These extended versions can include lots
more detail, including:
- implementational details (good/necessary for reproducibility)