ops.py 3.6 KB
Newer Older
1
#   Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
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.
14 15

from __future__ import print_function
16
from .layer_function_generator import generate_layer_fn, generate_layer_fn_noattr
C
chengduo 已提交
17 18
from .. import core
from ..framework import convert_np_dtype_to_dtype_
Y
Yang Yu 已提交
19

20
__activations_noattr__ = [
21 22 23 24 25
    'sigmoid',
    'logsigmoid',
    'exp',
    'tanh',
    'tanh_shrink',
B
baiyf 已提交
26
    'softshrink',
27 28 29 30
    'sqrt',
    'abs',
    'ceil',
    'floor',
C
add cos  
chengduoZH 已提交
31
    'cos',
C
add sin  
chengduoZH 已提交
32
    'sin',
33 34 35 36 37
    'round',
    'reciprocal',
    'square',
    'softplus',
    'softsign',
Y
Yu Yang 已提交
38 39
]

X
Xin Pan 已提交
40
__all__ = []
Y
Yang Yu 已提交
41

Y
Yu Yang 已提交
42
for _OP in set(__all__):
43
    globals()[_OP] = generate_layer_fn(_OP)
Y
yuyang18 已提交
44

S
sneaxiy 已提交
45 46 47 48 49
# It is a hot fix in some unittest using:
#   fluid.layers.scale(x=x, scale=10.0, out=out_var)
# e.g.: test_program_code.py, test_dist_train.py
globals()['_scale'] = generate_layer_fn('scale')

S
sneaxiy 已提交
50 51
globals()['_elementwise_div'] = generate_layer_fn('elementwise_div')

52 53 54 55 56
__all__ += __activations_noattr__

for _OP in set(__activations_noattr__):
    globals()[_OP] = generate_layer_fn_noattr(_OP)

Y
yuyang18 已提交
57 58 59 60 61 62
__all__ += ["uniform_random"]

_uniform_random_ = generate_layer_fn('uniform_random')


def uniform_random(shape, dtype=None, min=None, max=None, seed=None):
C
chengduo 已提交
63 64 65
    locals_var = locals().keys()
    if not isinstance(dtype, core.VarDesc.VarType):
        dtype = convert_np_dtype_to_dtype_(dtype)
Y
yuyang18 已提交
66
    kwargs = dict()
C
chengduo 已提交
67
    for name in locals_var:
Y
yuyang18 已提交
68 69 70 71 72
        val = locals()[name]
        if val is not None:
            kwargs[name] = val
    return _uniform_random_(**kwargs)

Y
yuyang18 已提交
73

Y
yuyang18 已提交
74
uniform_random.__doc__ = _uniform_random_.__doc__ + """
Y
yuyang18 已提交
75 76 77 78
Examples:

    >>> result = fluid.layers.uniform_random(shape=[32, 784])
"""
Y
yuyang18 已提交
79 80 81 82 83 84 85

__all__ += ['hard_shrink']

_hard_shrink_ = generate_layer_fn('hard_shrink')


def hard_shrink(x, threshold=None):
C
chengduo 已提交
86
    locals_var = locals().keys()
Y
yuyang18 已提交
87
    kwargs = dict()
C
chengduo 已提交
88
    for name in locals_var:
Y
yuyang18 已提交
89 90 91 92 93 94
        val = locals()[name]
        if val is not None:
            kwargs[name] = val
    return _hard_shrink_(**kwargs)


Y
yuyang18 已提交
95
hard_shrink.__doc__ = _hard_shrink_.__doc__ + """
Y
yuyang18 已提交
96 97 98 99 100
Examples:

    >>> data = fluid.layers.data(name="input", shape=[784])
    >>> result = fluid.layers.hard_shrink(x=data, threshold=0.3)
"""
Y
yuyang18 已提交
101 102 103 104 105 106 107

__all__ += ['cumsum']

_cum_sum_ = generate_layer_fn('cumsum')


def cumsum(x, axis=None, exclusive=None, reverse=None):
C
chengduo 已提交
108
    locals_var = locals().keys()
Y
yuyang18 已提交
109
    kwargs = dict()
C
chengduo 已提交
110
    for name in locals_var:
Y
yuyang18 已提交
111 112 113 114 115 116 117 118 119 120 121 122
        val = locals()[name]
        if val is not None:
            kwargs[name] = val
    return _cum_sum_(**kwargs)


cumsum.__doc__ = _cum_sum_.__doc__ + """
Examples:

    >>> data = fluid.layers.data(name="input", shape=[32, 784])
    >>> result = fluid.layers.cumsum(data, axis=0)
"""
Y
yuyang18 已提交
123 124 125 126 127 128 129

__all__ += ['thresholded_relu']

_thresholded_relu_ = generate_layer_fn('thresholded_relu')


def thresholded_relu(x, threshold=None):
C
chengduo 已提交
130
    locals_var = locals().keys()
Y
yuyang18 已提交
131
    kwargs = dict()
C
chengduo 已提交
132
    for name in locals_var:
Y
yuyang18 已提交
133 134 135 136 137 138 139 140 141 142 143 144 145
        val = locals()[name]
        if val is not None:
            kwargs[name] = val

    _thresholded_relu_(**kwargs)


thresholded_relu.__doc__ = _thresholded_relu_.__doc__ + """
Examples:

    >>> data = fluid.layers.data(name="input", shape=[1])
    >>> result = fluid.layers.thresholded_relu(data, threshold=0.4)
"""