Skip to content

Instantly share code, notes, and snippets.

View KayneWest's full-sized avatar
💭
polluting, litering, and throwin' extra food in the trash

Matt Krzus KayneWest

💭
polluting, litering, and throwin' extra food in the trash
View GitHub Profile
@KayneWest
KayneWest / DropoutConvolutionalNet.py
Last active November 6, 2015 04:04
DropoutConvolutionalNet.py
import re
import numpy, theano, sys, math
from theano import tensor as T
from theano import shared
from theano.tensor.signal import downsample
from theano.tensor.nnet import conv
from theano.tensor.shared_randomstreams import RandomStreams
from collections import OrderedDict
BATCH_SIZE=200
@KayneWest
KayneWest / CNN.py
Last active August 29, 2015 14:07
CNN
import re
import numpy, theano, sys, math
from theano import tensor as T
from theano import shared
from theano.tensor.signal import downsample
from theano.tensor.nnet import conv
from theano.tensor.shared_randomstreams import RandomStreams
from collections import OrderedDict
BATCH_SIZE=200