ops.py 1.4 KB
Newer Older
D
dzhwinter 已提交
1
#   Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserve.
D
dzhwinter 已提交
2
#
3 4 5
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
D
dzhwinter 已提交
6
#
D
dzhwinter 已提交
7
#     http://www.apache.org/licenses/LICENSE-2.0
D
dzhwinter 已提交
8
#
9 10 11 12 13
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
F
update  
fengjiayi 已提交
14

Y
Yu Yang 已提交
15
from ..registry import register_layer
Y
Yang Yu 已提交
16 17

__activations__ = [
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
    '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 已提交
46 47
]

Y
Yang Yu 已提交
48
__all__ = [
F
fengjiayi 已提交
49 50
    'mean', 'mul', 'reshape', 'scale', 'transpose',
    'sigmoid_cross_entropy_with_logits', 'elementwise_add', 'elementwise_div',
51
    'elementwise_sub', 'elementwise_mul', 'elementwise_max', 'elementwise_min',
F
fengjiayi 已提交
52
    'clip', 'clip_by_norm', 'sequence_softmax'
Y
Yang Yu 已提交
53 54
] + __activations__

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