From 98139f573eb179c8f5a06ba6c8d8883376814ccf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89tienne=20Simon?= Date: Thu, 2 Jul 2015 12:59:15 -0400 Subject: Remove _simple --- model/dest_mlp.py | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 model/dest_mlp.py (limited to 'model/dest_mlp.py') diff --git a/model/dest_mlp.py b/model/dest_mlp.py new file mode 100644 index 0000000..78d7131 --- /dev/null +++ b/model/dest_mlp.py @@ -0,0 +1,32 @@ +from theano import tensor +from blocks.bricks import application, Identity + +import data +import error +from model.mlp import FFMLP, Stream + + +class Model(FFMLP): + def __init__(self, config, **kwargs): + super(Model, self).__init__(config, output_layer=Identity, **kwargs) + + @application(outputs=['destination']) + def predict(self, **kwargs): + outputs = super(Model, self).predict(**kwargs) + return data.train_gps_std * outputs + data.train_gps_mean + + @predict.property('inputs') + def predict_inputs(self): + return self.inputs + + @application(outputs=['cost']) + def cost(self, **kwargs): + y_hat = self.predict(**kwargs) + y = tensor.concatenate((kwargs['destination_latitude'][:, None], + kwargs['destination_longitude'][:, None]), axis=1) + + return error.erdist(y_hat, y).mean() + + @cost.property('inputs') + def cost_inputs(self): + return self.inputs + ['destination_latitude', 'destination_longitude'] -- cgit v1.2.3