aboutsummaryrefslogblamecommitdiff
path: root/model/dest_simple_mlp_tgtcls.py
blob: 2d650970dd6156a23b09b971170041f9a3d733c6 (plain) (tree)
1
2
3
4
5
6
7
8
9
            

                         
                                              
 
            
                                   
 
 



                                                                                                            
 



                                                         
 


                               
 




                                                                                  
 
                                            
 


                                                                              
import numpy
import theano
from theano import tensor
from blocks.bricks import application, Softmax

import error
from model.mlp import FFMLP, Stream


class Model(FFMLP):
    def __init__(self, config, **kwargs):
        super(Model, self, output_layer=Softmax).__init__(config, **kwargs)
        self.classes = theano.shared(numpy.array(config.tgtcls, dtype=theano.config.floatX), name='classes')

    @application(outputs=['destination'])
    def predict(self, **kwargs):
        cls_probas = super(Model, self).predict(**kwargs)
        return tensor.dot(cls_probas, self.classes)

    @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']