Completed
Push — master ( 8e81bf...e89cf9 )
by Dmitry
99:20 queued 42:52
created

blocks/bricks/__init__.py (1 issue)

1
"""Bricks are parameterized Theano operations."""
2
from __future__ import absolute_import
3
4
from .base import application, Brick, lazy
5
from .bn import (BatchNormalization, SpatialBatchNormalization,
6
                 BatchNormalizedMLP)
7
from .interfaces import (Activation, Feedforward, Initializable, LinearLike,
8
                         Random)
9
from .recurrent import (BaseRecurrent, SimpleRecurrent, LSTM, GatedRecurrent,
10
                        Bidirectional, RecurrentStack, RECURRENTSTACK_SEPARATOR,
0 ignored issues
show
This line is too long as per the coding-style (80/79).

This check looks for lines that are too long. You can specify the maximum line length.

Loading history...
11
                        recurrent)
12
from .simple import (Linear, Bias, Maxout, LinearMaxout, Identity, Tanh,
13
                     Logistic, Softplus, Rectifier, LeakyRectifier,
14
                     Softmax, NDimensionalSoftmax)
15
from .sequences import Sequence, FeedforwardSequence, MLP
16
from .wrappers import WithExtraDims
17
18
__all__ = ('application', 'Brick', 'lazy', 'BatchNormalization',
19
           'SpatialBatchNormalization', 'BatchNormalizedMLP',
20
           'Activation', 'Feedforward', 'Initializable', 'LinearLike',
21
           'Random', 'Linear', 'Bias', 'Maxout', 'LinearMaxout', 'Identity',
22
           'Tanh', 'Logistic', 'Softplus', 'Rectifier', 'LeakyRectifier',
23
           'Softmax', 'NDimensionalSoftmax', 'Sequence',
24
           'FeedforwardSequence', 'MLP', 'WithExtraDims',
25
           'BaseRecurrent', 'SimpleRecurrent', 'LSTM', 'GatedRecurrent',
26
           'Bidirectional', 'RecurrentStack', 'RECURRENTSTACK_SEPARATOR',
27
           'recurrent')
28