Skip to content

Instantly share code, notes, and snippets.

View zoevanhavre's full-sized avatar

Zoe van Havre zoevanhavre

  • Brisbane, Australia
View GitHub Profile
@zoevanhavre
zoevanhavre / mnist.R
Created April 29, 2016 03:28 — forked from primaryobjects/mnist.R
MNIST machine learning example in R.
library(caret)
library(doParallel)
# Enable parallel processing.
cl <- makeCluster(detectCores())
registerDoParallel(cl)
# Load the MNIST digit recognition dataset into R
# http://yann.lecun.com/exdb/mnist/
# assume you have all 4 files and gunzip'd them
@zoevanhavre
zoevanhavre / 0_reuse_code.js
Created January 31, 2016 08:01
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console