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

__activations__ = [
F
fengjiayi 已提交
4 5
    'abs', 'tanh', 'sigmoid', 'relu', 'sqrt', 'ceil', 'floor', 'log', 'round',
    'pow'
Y
Yu Yang 已提交
6 7
]

Y
Yang Yu 已提交
8
__all__ = [
F
fengjiayi 已提交
9 10 11 12
    'mean', 'mul', 'reshape', 'scale', 'transpose',
    'sigmoid_cross_entropy_with_logits', 'elementwise_add', 'elementwise_div',
    'elementwise_sub', 'elementwise_mul', 'clip', 'clip_by_norm',
    'sequence_softmax', 'reduce_sum'
Y
Yang Yu 已提交
13 14
] + __activations__

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