changeset 415:319bf28c2dd5

Small bugfix
author Joseph Turian <turian@iro.umontreal.ca>
date Fri, 11 Jul 2008 15:33:27 -0400
parents 643dbccde1fc
children 8849eba55520 0f366ecb11ee
files cost.py
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/cost.py	Fri Jul 11 15:29:37 2008 -0400
+++ b/cost.py	Fri Jul 11 15:33:27 2008 -0400
@@ -2,6 +2,8 @@
 Cost functions.
 """
 
+import theano.tensor as T
+
 def quadratic(target, output, axis=1):
     return T.mean(T.sqr(target - output), axis)