view sandbox/simple_autoassociator/graph.py @ 404:8cc11ac97087

Debugging simple AA a bit
author Joseph Turian <turian@gmail.com>
date Thu, 10 Jul 2008 00:51:32 -0400
parents 36baeb7125a4
children faffaae0d2f9
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, gy, gh) = t.grad(loss, [w1, b1, w2, b2, y, h])

import theano.compile

inputs  = [x, w1, b1, w2, b2]
outputs = [y, h, loss, loss_unsummed, gw1, gb1, gw2, gb2, gy, gh]
trainfn = theano.compile.function(inputs, outputs)