Mercurial > pylearn
view simple_autoassociator/graph.py @ 389:ec8aadb6694d
Renamed simple AA directory
author | Joseph Turian <turian@gmail.com> |
---|---|
date | Tue, 08 Jul 2008 17:41:45 -0400 |
parents | simple_autoassociator.py/graph.py@98ca97cc9910 |
children | e2cb8d489908 |
line wrap: on
line source
""" Theano graph for a simple autoassociator. @todo: Make nearly everything private. """ from pylearn.nnet_ops import sigmoid, binary_crossentropy from theano import tensor as t from theano.tensor import dot x = t.dvector() w1 = t.dmatrix() b1 = t.dvector() w2 = t.dmatrix() b2 = t.dvector() h = sigmoid(dot(x, w1) + b1) y = sigmoid(dot(h, w2) + b2) loss_unsummed = binary_crossentropy(y, x) loss = t.sum(loss_unsummed) (gw1, gb1, gw2, gb2) = t.grad(loss, [w1, b1, w2, b2]) import theano.compile inputs = [x, w1, b1, w2, b2] outputs = [y, h, loss, loss_unsummed, gw1, gb1, gw2, gb2] trainfn = theano.compile.function(inputs, outputs)