Skip to content

Instantly share code, notes, and snippets.

@zetavg
Created January 10, 2015 06:36
Show Gist options
  • Save zetavg/ea285d6335b742f1dd4d to your computer and use it in GitHub Desktop.
Save zetavg/ea285d6335b742f1dd4d to your computer and use it in GitHub Desktop.
https://github.com/Neson/date-parser
https://raw.githubusercontent.com/Neson/date-parser/master/script/date-parser.min.js
dateParser.parse('')
https://github.com/karpathy/convnetjs
http://cs.stanford.edu/people/karpathy/convnetjs/demo/mnist.html
---
layer_defs = [];
layer_defs.push({type:'input', out_sx:24, out_sy:24, out_depth:1});
layer_defs.push({type:'softmax', num_classes:10});
net = new convnetjs.Net();
net.makeLayers(layer_defs);
trainer = new convnetjs.SGDTrainer(net, {method:'adadelta', batch_size:20, l2_decay:0.001});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment