|
1
|
|
|
"""Bricks are parameterized Theano operations.""" |
|
2
|
|
|
from .base import application, Brick, lazy |
|
3
|
|
|
from .bn import (BatchNormalization, SpatialBatchNormalization, |
|
4
|
|
|
BatchNormalizedMLP) |
|
5
|
|
|
from .interfaces import Activation, Feedforward, Initializable, Random |
|
6
|
|
|
from .simple import (Linear, Bias, Maxout, LinearMaxout, Identity, Tanh, |
|
7
|
|
|
Logistic, Softplus, Rectifier, Softmax, |
|
8
|
|
|
NDimensionalSoftmax) |
|
9
|
|
|
from .sequences import Sequence, FeedforwardSequence, MLP |
|
10
|
|
|
from .wrappers import WithExtraDims |
|
11
|
|
|
|
|
12
|
|
|
__all__ = ('application', 'Brick', 'lazy', 'BatchNormalization', |
|
13
|
|
|
'SpatialBatchNormalization', 'BatchNormalizedMLP', |
|
14
|
|
|
'Activation', 'Feedforward', 'Initializable', 'Random', |
|
15
|
|
|
'Linear', 'Bias', 'Maxout', 'LinearMaxout', 'Identity', |
|
16
|
|
|
'Tanh', 'Logistic', 'Softplus', 'Rectifier', 'Softmax', |
|
17
|
|
|
'NDimensionalSoftmax', 'Sequence', 'FeedforwardSequence', |
|
18
|
|
|
'MLP', 'WithExtraDims') |
|
19
|
|
|
|