diff options
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 |
commit | f768d3e770216d4227ffd989cf98f1628fc476a3 (patch) | |
tree | b5620a34eaebac5290b74882018bab16f4658e27 /data.py | |
parent | 61e0d47b6c6a570feebb43d474138020b13495aa (diff) | |
download | taxi-f768d3e770216d4227ffd989cf98f1628fc476a3.tar.gz taxi-f768d3e770216d4227ffd989cf98f1628fc476a3.zip |
Adapt model to hdf5 dataset. WIP
Diffstat (limited to 'data.py')
-rw-r--r-- | data.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |