Skip to content

Instantly share code, notes, and snippets.

View cogfor's full-sized avatar
🇳🇱
Enjoying {Clojure}

Rene Nederhand cogfor

🇳🇱
Enjoying {Clojure}
  • PrimedIO
  • Groningen, Netherlands
  • 15:27 (UTC +02:00)
View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@cogfor
cogfor / kernel.json
Created June 29, 2016 14:16
Jupyter kernel for PySpark on Yarn
{
"display_name": "PySpark",
"language": "python",
"argv": [
"/home/rnederhand/venv/bin/python",
"-m",
"ipykernel",
"-f",
"{connection_file}"
],
{
"comment" : "J. Prante, 14.08.2012",
"settings" : {
"index" : {
"analysis" : {
"filter" : {
"germansnow" : {
"type" : "snowball",
"language" : "German2"
},
@cogfor
cogfor / rnn.py
Created August 18, 2015 08:29
Simple Vanilla Recurrent Neural Network using Python & Theano
import numpy
import theano
import theano.tensor as TT
# number of hidden units
n = 50
# number of input units
nin = 5
# number of output units
nout = 5