aboutsummaryrefslogtreecommitdiff
path: root/data.py
diff options
context:
space:
mode:
authorÉtienne Simon <esimon@esimon.eu>2015-04-29 15:40:05 -0400
committerÉtienne Simon <esimon@esimon.eu>2015-04-29 15:40:51 -0400
commitf768d3e770216d4227ffd989cf98f1628fc476a3 (patch)
treeb5620a34eaebac5290b74882018bab16f4658e27 /data.py
parent61e0d47b6c6a570feebb43d474138020b13495aa (diff)
downloadtaxi-f768d3e770216d4227ffd989cf98f1628fc476a3.tar.gz
taxi-f768d3e770216d4227ffd989cf98f1628fc476a3.zip
Adapt model to hdf5 dataset. WIP
Diffstat (limited to 'data.py')
-rw-r--r--data.py4
1 files changed, 2 insertions, 2 deletions
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