ops.py 811 字节
Newer Older
Y
Yu Yang 已提交
1
from ..registry import register_layer
Y
Yang Yu 已提交
2 3

__activations__ = [
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
    'sigmoid',
    'logsigmoid',
    'exp',
    'relu',
    'tanh',
    'tanh_shrink',
    'softshrink',
    'sqrt',
    'abs',
    'ceil',
    'floor',
    'round',
    'reciprocal',
    'log',
    'square',
    'softplus',
    'softsign',
    'brelu',
    'leaky_relu',
    'soft_relu',
    'elu',
    'relu6',
    'pow',
    'stanh',
    'hard_shrink',
    'thresholded_relu',
    'hard_sigmoid',
    'swish',
Y
Yu Yang 已提交
32 33
]

Y
Yang Yu 已提交
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
__all__ = [
    'mean',
    'mul',
    'reshape',
    'scale',
    'transpose',
    'sigmoid_cross_entropy_with_logits',
    'elementwise_add',
    'elementwise_div',
    'elementwise_sub',
    'elementwise_mul',
    'clip',
    'sequence_softmax',
] + __activations__

Y
Yu Yang 已提交
49 50
for _OP in set(__all__):
    globals()[_OP] = register_layer(_OP)