aboutsummaryrefslogtreecommitdiff
path: root/model/bidirectional_tgtcls.py
blob: 36120f7e702f7399cb35d3937ffe19e4823c25bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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)