From f768d3e770216d4227ffd989cf98f1628fc476a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89tienne=20Simon?= Date: Wed, 29 Apr 2015 15:40:05 -0400 Subject: Adapt model to hdf5 dataset. WIP --- data.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'data.py') diff --git a/data.py b/data.py index 351c90a..d38df10 100644 --- a/data.py +++ b/data.py @@ -21,8 +21,8 @@ def get_client_id(n): else: return 0 -porto_center = numpy.array([[ -8.61612, 41.1573]], dtype=theano.config.floatX) -data_std = numpy.sqrt(numpy.array([[ 0.00333233, 0.00549598]], dtype=theano.config.floatX)) +porto_center = numpy.array([41.1573, -8.61612], dtype=theano.config.floatX) +data_std = numpy.sqrt(numpy.array([0.00549598, 0.00333233], dtype=theano.config.floatX)) class CallType(Enum): CENTRAL = 0 -- cgit v1.2.3