aboutsummaryrefslogtreecommitdiff
path: root/model/bidirectional_tgtcls.py
blob: 4dfbad5e8be99268420aeed03a80f323db08bd75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import numpy
import theano
from theano import tensor
from blocks.bricks.base import lazy
from blocks.bricks import Softmax

from model.bidirectional import BidiRNN, Stream


class Model(BidiRNN):
    @lazy()
    def __init__(self, config, **kwargs):
        super(Model, self).__init__(config, output_dim=config.tgtcls.shape[0], **kwargs)

        self.classes = theano.shared(numpy.array(config.tgtcls, dtype=theano.config.floatX),
                                     name='classes')
        self.softmax = Softmax()
        self.children.append(self.softmax)

    def process_outputs(self, outputs):
        return tensor.dot(self.softmax.apply(outputs), self.classes)