chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:40:42 +08:00
commit e25996e7db
15472 changed files with 3536181 additions and 0 deletions
+128
View File
@@ -0,0 +1,128 @@
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
#
# 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
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# 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.
# TODO: define activation functions of neural network
from . import container, rnn, transformer # noqa: F401
from .activation import ( # noqa: F401
CELU,
LeakyReLU,
LogSoftmax,
PReLU,
ReLU,
ReLU6,
RReLU,
Sigmoid,
Softmax,
Softmax2D,
)
from .common import ( # noqa: F401
AlphaDropout,
Bilinear,
ConstantPad1D,
ConstantPad2D,
ConstantPad3D,
CosineSimilarity,
Dropout,
Dropout2D,
Dropout3D,
Embedding,
FeatureAlphaDropout,
Flatten,
Fold,
Identity,
Linear,
Pad1D,
Pad2D,
Pad3D,
ReflectionPad1D,
ReflectionPad2D,
ReflectionPad3D,
ReplicationPad1D,
ReplicationPad2D,
ReplicationPad3D,
Unflatten,
Upsample,
UpsamplingBilinear2D,
UpsamplingNearest2D,
ZeroPad2D,
)
from .container import LayerDict # noqa: F401
from .conv import ( # noqa: F401
Conv1D,
Conv1DTranspose,
Conv2D,
Conv2DTranspose,
Conv3D,
Conv3DTranspose,
)
from .distance import PairwiseDistance # noqa: F401
from .layers import Layer # noqa: F401
from .loss import ( # noqa: F401
AdaptiveLogSoftmaxWithLoss,
BCELoss,
BCEWithLogitsLoss,
CrossEntropyLoss,
CTCLoss,
GaussianNLLLoss,
HingeEmbeddingLoss,
KLDivLoss,
L1Loss,
MarginRankingLoss,
MSELoss,
MultiLabelMarginLoss,
MultiLabelSoftMarginLoss,
MultiMarginLoss,
NLLLoss,
PoissonNLLLoss,
RNNTLoss,
SmoothL1Loss,
SoftMarginLoss,
TripletMarginLoss,
TripletMarginWithDistanceLoss,
)
from .norm import ( # noqa: F401
BatchNorm1D,
BatchNorm2D,
BatchNorm3D,
GroupNorm,
LayerNorm,
LocalResponseNorm,
SpectralNorm,
SyncBatchNorm,
)
from .pooling import ( # noqa: F401
AdaptiveAvgPool1D,
AdaptiveAvgPool2D,
AdaptiveAvgPool3D,
AdaptiveMaxPool1D,
AdaptiveMaxPool2D,
AdaptiveMaxPool3D,
AvgPool1D,
AvgPool2D,
AvgPool3D,
FractionalMaxPool2D,
FractionalMaxPool3D,
LPPool1D,
LPPool2D,
MaxPool1D,
MaxPool2D,
MaxPool3D,
MaxUnPool1D,
MaxUnPool2D,
MaxUnPool3D,
)
from .vision import ChannelShuffle, PixelShuffle, PixelUnshuffle # noqa: F401
__all__ = []
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+871
View File
@@ -0,0 +1,871 @@
# Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved.
#
# 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
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# 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.
from __future__ import annotations
import typing
from collections import OrderedDict
from collections.abc import Iterable, Iterator, Mapping, Sequence
from itertools import chain
from typing import Any
from typing_extensions import Self
import paddle
from paddle import Tensor
from ...base.dygraph.base import param_guard
from ...base.framework import Parameter
from .layers import Layer
__all__ = []
from paddle.utils.decorator_utils import (
param_one_alias,
)
class LayerDict(Layer):
"""
LayerDict holds sublayers in the ordered dictionary, and sublayers it contains are properly registered.
Held sublayers can be accessed like a regular ordered python dictionary.
Parameters:
sublayers (LayerDict|OrderedDict|list[(key,Layer)...], optional): iterable of key/value pairs, the type of value is 'paddle.nn.Layer' .
Examples:
.. code-block:: pycon
>>> import paddle
>>> import numpy as np
>>> from collections import OrderedDict
>>> sublayers = OrderedDict(
... [
... ('conv1d', paddle.nn.Conv1D(3, 2, 3)),
... ('conv2d', paddle.nn.Conv2D(3, 2, 3)),
... ('conv3d', paddle.nn.Conv3D(4, 6, (3, 3, 3))),
... ]
... )
>>> layers_dict = paddle.nn.LayerDict(sublayers=sublayers)
>>> l = layers_dict['conv1d']
>>> for k in layers_dict:
... l = layers_dict[k]
>>> print(len(layers_dict))
3
>>> del layers_dict['conv2d']
>>> print(len(layers_dict))
2
>>> conv1d = layers_dict.pop('conv1d')
>>> print(len(layers_dict))
1
>>> layers_dict.clear()
>>> print(len(layers_dict))
0
"""
@param_one_alias(["sublayers", "modules"])
def __init__(
self,
sublayers: (
LayerDict
| typing.Mapping[str, Layer]
| Sequence[tuple[str, Layer]]
| None
) = None,
) -> None:
super().__init__()
if sublayers is not None:
self.update(sublayers)
def __getitem__(self, key: str) -> Layer:
return self._sub_layers[key]
def __setitem__(self, key: str, sublayer: Layer) -> Layer:
return self.add_sublayer(key, sublayer)
def __delitem__(self, key: str) -> None:
del self._sub_layers[key]
def __len__(self) -> int:
return len(self._sub_layers)
def __iter__(self) -> Iterator[str]:
return iter(self._sub_layers)
def __contains__(self, key: str) -> bool:
return key in self._sub_layers
def clear(self) -> None:
"""
Clear all the sublayers in the LayerDict.
Parameters:
None.
Examples:
.. code-block:: pycon
>>> import paddle
>>> from collections import OrderedDict
>>> sublayers = OrderedDict([
... ('conv1d', paddle.nn.Conv1D(3, 2, 3)),
... ('conv2d', paddle.nn.Conv2D(3, 2, 3)),
... ('conv3d', paddle.nn.Conv3D(4, 6, (3, 3, 3))),
>>> ])
>>> layer_dict = paddle.nn.LayerDict(sublayers=sublayers)
>>> len(layer_dict)
3
>>> layer_dict.clear()
>>> len(layer_dict)
0
"""
self._sub_layers.clear()
def pop(self, key: str) -> Layer:
"""
Remove the key from the LayerDict and return the layer of the key.
Parameters:
key (str): the key to be removed.
Examples:
.. code-block:: pycon
>>> import paddle
>>> from collections import OrderedDict
>>> sublayers = OrderedDict([
... ('conv1d', paddle.nn.Conv1D(3, 2, 3)),
... ('conv2d', paddle.nn.Conv2D(3, 2, 3)),
... ('conv3d', paddle.nn.Conv3D(4, 6, (3, 3, 3))),
>>> ])
>>> layer_dict = paddle.nn.LayerDict(sublayers=sublayers)
>>> len(layer_dict)
3
>>> layer_dict.pop('conv2d')
>>> len(layer_dict)
2
"""
v = self[key]
del self[key]
return v
def keys(self) -> Iterable[str]:
"""
Return the iterable of the keys in LayerDict.
Parameters:
None.
Examples:
.. code-block:: pycon
>>> import paddle
>>> from collections import OrderedDict
>>> sublayers = OrderedDict([
... ('conv1d', paddle.nn.Conv1D(3, 2, 3)),
... ('conv2d', paddle.nn.Conv2D(3, 2, 3)),
... ('conv3d', paddle.nn.Conv3D(4, 6, (3, 3, 3))),
>>> ])
>>> layer_dict = paddle.nn.LayerDict(sublayers=sublayers)
>>> for k in layer_dict.keys():
... print(k)
conv1d
conv2d
conv3d
"""
return self._sub_layers.keys()
def items(self) -> Iterable[tuple[str, Layer]]:
"""
Return the iterable of the key/value pairs in LayerDict.
Parameters:
None.
Examples:
.. code-block:: pycon
>>> import paddle
>>> from collections import OrderedDict
>>> sublayers = OrderedDict([
... ('conv1d', paddle.nn.Conv1D(3, 2, 3)),
... ('conv2d', paddle.nn.Conv2D(3, 2, 3)),
... ('conv3d', paddle.nn.Conv3D(4, 6, (3, 3, 3))),
>>> ])
>>> layer_dict = paddle.nn.LayerDict(sublayers=sublayers)
>>> for k, v in layer_dict.items():
... print(f"{k}:", v)
conv1d : Conv1D(3, 2, kernel_size=[3], data_format=NCL)
conv2d : Conv2D(3, 2, kernel_size=[3, 3], data_format=NCHW)
conv3d : Conv3D(4, 6, kernel_size=[3, 3, 3], data_format=NCDHW)
"""
return self._sub_layers.items()
def values(self) -> Iterable[Layer]:
"""
Return the iterable of the values in LayerDict.
Parameters:
None.
Examples:
.. code-block:: pycon
>>> import paddle
>>> from collections import OrderedDict
>>> sublayers = OrderedDict([
... ('conv1d', paddle.nn.Conv1D(3, 2, 3)),
... ('conv2d', paddle.nn.Conv2D(3, 2, 3)),
... ('conv3d', paddle.nn.Conv3D(4, 6, (3, 3, 3))),
>>> ])
>>> layer_dict = paddle.nn.LayerDict(sublayers=sublayers)
>>> for v in layer_dict.values():
... print(v)
Conv1D(3, 2, kernel_size=[3], data_format=NCL)
Conv2D(3, 2, kernel_size=[3, 3], data_format=NCHW)
Conv3D(4, 6, kernel_size=[3, 3, 3], data_format=NCDHW)
"""
return self._sub_layers.values()
@param_one_alias(["sublayers", "modules"])
def update(
self,
sublayers: (
LayerDict | typing.Mapping[str, Layer] | Sequence[tuple[str, Layer]]
),
) -> None:
"""
Update the key/values pairs in sublayers to the LayerDict, overwriting the existing keys.
Parameters:
sublayers (LayerDict|OrderedDict|list[(key,Layer)...]): iterable of key/value pairs, the type of value is 'paddle.nn.Layer' .
Examples:
.. code-block:: pycon
>>> import paddle
>>> from collections import OrderedDict
>>> sublayers = OrderedDict([
... ('conv1d', paddle.nn.Conv1D(3, 2, 3)),
... ('conv2d', paddle.nn.Conv2D(3, 2, 3)),
... ('conv3d', paddle.nn.Conv3D(4, 6, (3, 3, 3))),
>>> ])
>>> new_sublayers = OrderedDict([
... ('relu', paddle.nn.ReLU()),
... ('conv2d', paddle.nn.Conv2D(4, 2, 4)),
>>> ])
>>> layer_dict = paddle.nn.LayerDict(sublayers=sublayers)
>>> layer_dict.update(new_sublayers)
>>> for k, v in layer_dict.items():
... print(f"{k}:", v)
conv1d : Conv1D(3, 2, kernel_size=[3], data_format=NCL)
conv2d : Conv2D(4, 2, kernel_size=[4, 4], data_format=NCHW)
conv3d : Conv3D(4, 6, kernel_size=[3, 3, 3], data_format=NCDHW)
relu : ReLU()
"""
assert isinstance(sublayers, Iterable), (
"The type of sublayers is not iterable of key/value pairs, the type of sublayers is "
+ type(sublayers).__name__
)
if isinstance(sublayers, (OrderedDict, LayerDict, Mapping)):
for key, layer in sublayers.items():
self.add_sublayer(key, layer)
else:
# handle this format [(key1, layer1), (key2, layer2)...]
for i, kv in enumerate(sublayers):
if len(kv) != 2:
raise ValueError(
"The length of the "
+ str(i)
+ "'s element in sublayers is "
+ str(len(kv))
+ ", which must be 2."
)
self.add_sublayer(kv[0], kv[1])
class ParameterDict(Layer):
"""
Holds parameters in a dictionary.
ParameterDict can be indexed like a regular Python dictionary, but Parameters it contains are properly registered.
Parameters:
parameters (iterable, optional): a mapping (dictionary) of (string : Any) or an iterable of key-value pairs of type (string, Any)
alias: values
Examples:
.. code-block:: pycon
>>> import paddle
>>> class MyLayer(paddle.nn.Layer):
... def __init__(self, num_stacked_param):
... super().__init__()
... # create ParameterDict with iterable Parameters
... self.params = paddle.nn.ParameterDict(
... {f"t{i}": paddle.create_parameter(shape=[2, 2], dtype='float32') for i in range(num_stacked_param)}
... )
...
... def forward(self, x):
... for i, key in enumerate(self.params):
... x = paddle.matmul(x, self.params[key])
... return x
>>> x = paddle.uniform(shape=[5, 2], dtype='float32')
>>> num_stacked_param = 4
>>> model = MyLayer(num_stacked_param)
>>> print(len(model.params))
4
>>> res = model(x)
>>> print(res.shape)
paddle.Size([5, 2])
>>> replaced_param = paddle.create_parameter(shape=[2, 3], dtype='float32')
>>> model.params['t3'] = replaced_param # replace t3 param
>>> res = model(x)
>>> print(res.shape)
paddle.Size([5, 3])
>>> model.params['t4'] = paddle.create_parameter(shape=[3, 4], dtype='float32') # append param
>>> print(len(model.params))
5
>>> res = model(x)
>>> print(res.shape)
paddle.Size([5, 4])
"""
@param_one_alias(["parameters", "values"])
def __init__(
self,
parameters: (
ParameterDict
| Mapping[str, Tensor]
| Sequence[tuple[str, Tensor]]
| None
) = None,
) -> None:
super().__init__()
if parameters is not None:
self.update(parameters)
def __getitem__(self, key: str) -> Tensor:
with param_guard(self._parameters):
return self._parameters[key]
def __setitem__(self, key: str, param: Tensor) -> None:
assert isinstance(param, Parameter)
setattr(self, key, param)
def __len__(self) -> int:
return len(self._parameters)
def __iter__(self) -> Iterator[str]:
return iter(self._parameters)
def update(
self,
parameters: (
ParameterDict | Mapping[str, Tensor] | Sequence[tuple[str, Tensor]]
),
) -> None:
"""Update a given parameter at the end of the dict.
Parameters:
parameters (Parameter): parameter to update
"""
assert isinstance(parameters, Iterable), (
"The type of parameters is not iterable of key/value pairs, the type of sublayers is "
+ type(parameters).__name__
)
if isinstance(parameters, ParameterDict):
for key, parameter in parameters._parameters.items():
self.add_parameter(key, parameter)
elif isinstance(parameters, (OrderedDict, Mapping)):
for key, parameter in parameters.items():
self.add_parameter(key, parameter)
else:
for i, kv in enumerate(parameters):
if len(kv) != 2:
raise ValueError(
f"The length of the {i}'s element in parameters is {len(kv)}, which must be 2."
)
self.add_parameter(kv[0], kv[1])
def pop(self, key: str) -> Tensor:
"""Remove key from the ParameterDict and return its parameter.
Parameters:
key (str): the key to be removed.
"""
v = self[key]
del self._parameters[key]
return v
def keys(self) -> Iterable[str]:
"""Return an iterable of the keys in the ParameterDict.
Parameters:
None.
"""
return self._parameters.keys()
def values(self) -> Iterable[Tensor]:
"""Return an iterable of the parameters in the ParameterDict.
Parameters:
None.
"""
with param_guard(self._parameters):
return list(self._parameters.values())
class ParameterList(Layer):
"""ParameterList Container.
This container acts like a Python list, but parameters it contains will be properly added.
Parameters:
parameters (iterable, optional): Iterable Parameters to be added.
Alias: ``values``.
Examples:
.. code-block:: pycon
>>> import paddle
>>> class MyLayer(paddle.nn.Layer):
... def __init__(self, num_stacked_param):
... super().__init__()
... # create ParameterList with iterable Parameters
... self.params = paddle.nn.ParameterList(
... [paddle.create_parameter(shape=[2, 2], dtype='float32') for _ in range(num_stacked_param)]
... )
...
... def forward(self, x):
... for i, p in enumerate(self.params):
... x = paddle.matmul(x, p)
... return x
>>> x = paddle.uniform(shape=[5, 2], dtype='float32')
>>> num_stacked_param = 4
>>> model = MyLayer(num_stacked_param)
>>> print(len(model.params))
4
>>> res = model(x)
>>> print(res.shape)
paddle.Size([5, 2])
>>> replaced_param = paddle.create_parameter(shape=[2, 3], dtype='float32')
>>> model.params[num_stacked_param - 1] = replaced_param
>>> res = model(x)
>>> print(res.shape)
paddle.Size([5, 3])
>>> model.params.append(paddle.create_parameter(shape=[3, 4], dtype='float32')) # append param
>>> print(len(model.params))
5
>>> res = model(x)
>>> print(res.shape)
paddle.Size([5, 4])
"""
@param_one_alias(["parameters", "values"])
def __init__(self, parameters: Iterable[Tensor] | None = None) -> None:
super().__init__()
if parameters is not None:
for idx, param in enumerate(parameters):
assert isinstance(param, Parameter)
self.add_parameter(str(idx), param)
def __getitem__(self, idx: int) -> Tensor:
with param_guard(self._parameters):
return self._parameters[str(idx)]
def __setitem__(self, idx: int, param: Tensor) -> None:
if not isinstance(param, (Parameter, Tensor)):
raise TypeError(
f"param should be 'Parameter' or 'Tensor', but received {type(param)}"
)
paddle.assign(param, getattr(self, str(idx)))
def __len__(self) -> int:
return len(self._parameters)
def __iter__(self) -> Iterator[Tensor]:
with param_guard(self._parameters):
return iter(self._parameters.values())
@param_one_alias(["parameter", "value"])
def append(self, parameter: Tensor) -> Self:
"""Appends a given parameter at the end of the list.
Parameters:
parameter (Parameter): parameter to append.
Alias: ``value``.
"""
idx = len(self._parameters)
self.add_parameter(str(idx), parameter)
return self
@param_one_alias(["parameters", "values"])
def extend(self, parameters: Iterable[Tensor]) -> Self:
"""Append values from a Python iterable to the end of the list.
Parameters:
parameters (iterable): iterable of values to append.
Alias: ``values``.
"""
for v in parameters:
self.append(v)
return self
def __iadd__(self, parameters: Iterable[Tensor]) -> Self:
return self.extend(parameters)
class LayerList(Layer):
"""
LayerList holds sublayers, and sublayers it contains are properly registered.
held sublayers can be indexed like a regular python list.
Parameters:
sublayers (iterable of Layer, optional): sublayers to hold
Examples:
.. code-block:: pycon
>>> import paddle
>>> class MyLayer(paddle.nn.Layer):
... def __init__(self):
... super().__init__()
... self.linears = paddle.nn.LayerList(
... [paddle.nn.Linear(10, 10) for i in range(10)],
... )
...
... def forward(self, x):
... # LayerList can act as an iterable, or be indexed using ints
... for i, l in enumerate(self.linears):
... x = self.linears[i // 2](x) + l(x)
... return x
"""
@param_one_alias(["sublayers", "modules"])
def __init__(self, sublayers: Iterable[Layer] | None = None) -> None:
super().__init__()
if sublayers is not None:
for idx, layer in enumerate(sublayers):
self.add_sublayer(str(idx), layer)
def _get_abs_idx(self, idx: int) -> int:
if isinstance(idx, int):
if not (-len(self) <= idx < len(self)):
raise IndexError(
f'index {idx} is out of range, should be an integer in range [{-len(self)}, {len(self)})'
)
if idx < 0:
idx += len(self)
return idx
def _get_abs_string_index(self, idx):
return str(self._get_abs_idx(idx))
def __getitem__(self, idx: int) -> Layer:
if isinstance(idx, slice):
return self.__class__(list(self._sub_layers.values())[idx])
else:
idx = self._get_abs_idx(idx)
return self._sub_layers[str(idx)]
def __setitem__(self, idx: int, sublayer: Layer) -> None:
idx = self._get_abs_idx(idx)
return setattr(self, str(idx), sublayer)
def __delitem__(self, idx: int) -> None:
if isinstance(idx, slice):
for k in range(len(self._sub_layers))[idx]:
delattr(self, str(k))
else:
idx = self._get_abs_idx(idx)
delattr(self, str(idx))
str_indices = [str(i) for i in range(len(self._sub_layers))]
self._sub_layers = OrderedDict(
list(zip(str_indices, self._sub_layers.values()))
)
def __len__(self) -> int:
return len(self._sub_layers)
def __iter__(self) -> Iterator[Layer]:
return iter(self._sub_layers.values())
def __iadd__(self, modules: Iterable[Layer]) -> Self:
return self.extend(modules)
def __add__(self, other: Iterable[Layer]) -> LayerList:
combined = LayerList()
for i, module in enumerate(chain(self, other)):
combined.add_module(str(i), module)
return combined
def __dir__(self) -> list[str]:
keys = super().__dir__()
keys = [key for key in keys if not key.isdigit()]
return keys
@param_one_alias(["sublayer", "module"])
def append(self, sublayer: Layer) -> Self:
"""
Appends a sublayer to the end of the list.
Parameters:
sublayer (Layer): sublayer to append
Examples:
.. code-block:: pycon
>>> import paddle
>>> linears = paddle.nn.LayerList([paddle.nn.Linear(10, 10) for i in range(10)])
>>> another = paddle.nn.Linear(10, 10)
>>> linears.append(another)
>>> print(len(linears))
11
"""
self.add_sublayer(str(len(self)), sublayer)
return self
@param_one_alias(["sublayer", "module"])
def insert(self, index: int, sublayer: Layer) -> None:
"""
Insert a sublayer before a given index in the list.
Parameters:
index (int): index to insert.
sublayer (Layer): sublayer to insert
Examples:
.. code-block:: pycon
>>> import paddle
>>> linears = paddle.nn.LayerList([paddle.nn.Linear(10, 10) for i in range(10)])
>>> another = paddle.nn.Linear(10, 10)
>>> linears.insert(3, another)
>>> print(linears[3] is another)
True
>>> another = paddle.nn.Linear(10, 10)
>>> linears.insert(-1, another)
>>> print(linears[-2] is another)
True
"""
assert isinstance(index, int) and -len(
self._sub_layers
) <= index <= len(self._sub_layers), (
f"index should be an integer in range [{-len(self)}, {len(self)}]"
)
if index < 0:
index += len(self)
for i in range(len(self._sub_layers), index, -1):
self._sub_layers[str(i)] = self._sub_layers[str(i - 1)]
self._sub_layers[str(index)] = sublayer
@param_one_alias(["sublayers", "modules"])
def extend(self, sublayers: Iterable[Layer]) -> Self:
"""
Appends sublayers to the end of the list.
Parameters:
sublayers (iterable of Layer): iterable of sublayers to append
Returns:
None
Examples:
.. code-block:: pycon
>>> import paddle
>>> linears = paddle.nn.LayerList([paddle.nn.Linear(10, 10) for i in range(10)])
>>> another_list = paddle.nn.LayerList([paddle.nn.Linear(10, 10) for i in range(5)])
>>> linears.extend(another_list)
>>> print(len(linears))
15
>>> print(another_list[0] is linears[10])
True
"""
offset = len(self)
for i, sublayer in enumerate(sublayers):
idx = str(offset + i)
self.add_sublayer(idx, sublayer)
return self
def pop(self, key: int | slice) -> Layer:
v = self[key]
del self[key]
return v
class Sequential(Layer):
"""Sequential container.
Sub layers will be added to this container in the order of argument in the constructor.
The argument passed to the constructor can be iterable Layers or iterable name Layer pairs.
Parameters:
layers(Layer|list|tuple): Layer or list/tuple of iterable name Layer pair.
Returns:
None.
Examples:
.. code-block:: pycon
>>> import paddle
>>> data = paddle.uniform(shape=[30, 10], dtype='float32')
>>> # create Sequential with iterable Layers
>>> model1 = paddle.nn.Sequential(
... paddle.nn.Linear(10, 1), paddle.nn.Linear(1, 2)
>>> )
>>> model1[0] # access the first layer
>>> res1 = model1(data) # sequential execution
>>> # create Sequential with name Layer pairs
>>> model2 = paddle.nn.Sequential(
... ('l1', paddle.nn.Linear(10, 2)),
... ('l2', paddle.nn.Linear(2, 3))
>>> )
>>> model2['l1'] # access l1 layer
>>> model2.add_sublayer('l3', paddle.nn.Linear(3, 3)) # add sublayer
>>> res2 = model2(data) # sequential execution
>>> # append single layer at the end of sequential
>>> model2 = paddle.nn.Sequential(paddle.nn.Linear(10, 20))
>>> model2.append(paddle.nn.Linear(20, 30))
>>> res2 = model2(data) # [30, 30]
>>> # insert single layer at the given position
>>> model2 = paddle.nn.Sequential(paddle.nn.Linear(20, 30))
>>> model2.insert(0, paddle.nn.Linear(10, 20))
>>> res2 = model2(data) # [30, 30]
>>> # extend sequential with given sequence of layer(s) at the end
>>> model2 = paddle.nn.Sequential()
>>> model2.extend([paddle.nn.Linear(10, 20), paddle.nn.Linear(20, 30)])
>>> res2 = model2(data) # [30, 30]
"""
def __init__(
self,
*layers: Layer
| tuple[str, Layer]
| list[Any]
| OrderedDict[str, Layer],
) -> None:
super().__init__()
if len(layers) == 1 and isinstance(layers[0], OrderedDict):
for name, layer in layers[0].items():
self.add_sublayer(name, layer)
elif len(layers) > 0 and isinstance(layers[0], (list, tuple)):
for name, layer in layers:
self.add_sublayer(name, layer)
else:
for idx, layer in enumerate(layers):
self.add_sublayer(str(idx), layer)
def __getitem__(self, name: str | slice | int) -> Layer:
if isinstance(name, slice):
return self.__class__(*(list(self._sub_layers.values())[name]))
elif isinstance(name, str):
return self._sub_layers[name]
else:
if name >= len(self._sub_layers):
raise IndexError(f'index {name} is out of range')
elif name < 0 and name >= -len(self._sub_layers):
name += len(self._sub_layers)
elif name < -len(self._sub_layers):
raise IndexError(f'index {name} is out of range')
return list(self._sub_layers.values())[name]
def __setitem__(self, name: str, layer: Layer) -> None:
assert isinstance(layer, Layer)
setattr(self, str(name), layer)
def __delitem__(self, name: str) -> None:
name = str(name)
assert name in self._sub_layers
del self._sub_layers[name]
def __len__(self) -> int:
return len(self._sub_layers)
def forward(self, input: Any) -> Any:
for layer in self._sub_layers.values():
input = layer(input)
return input
def append(self, module: Layer) -> Sequential:
self.add_sublayer(str(len(self)), module)
return self
def insert(self, index: int, module: Layer) -> Sequential:
if not isinstance(module, Layer):
raise AssertionError(f'module should be of type: {Layer}')
n = len(self._sub_layers)
if not (-n <= index <= n):
raise IndexError(f'Index out of range: {index}')
if index < 0:
index += n
for i in range(n, index, -1):
self._sub_layers[str(i)] = self._sub_layers[str(i - 1)]
self._sub_layers[str(index)] = module
return self
def extend(self, sequential: Iterable[Layer]) -> Sequential:
for layer in sequential:
self.append(layer)
return self
def __iter__(self) -> Iterator[Layer]:
return iter(self._sub_layers.values())
File diff suppressed because it is too large Load Diff
+117
View File
@@ -0,0 +1,117 @@
# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
#
# 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
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# 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.
from __future__ import annotations
from typing import TYPE_CHECKING
from paddle.utils.decorator_utils import param_one_alias, param_two_alias
from .. import functional as F
from .layers import Layer
if TYPE_CHECKING:
import paddle
__all__ = []
class PairwiseDistance(Layer):
r"""
It computes the pairwise distance between two vectors. The
distance is calculated by p-order norm:
.. math::
\Vert x \Vert _p = \left( \sum_{i=1}^n \vert x_i \vert ^ p \right) ^ {1/p}.
Parameters:
p (float, optional): The order of norm. Default: :math:`2.0`.
epsilon (float, optional): Add small value to avoid division by zero.
Default: :math:`1e-6`.
keepdim (bool, optional): Whether to reserve the reduced dimension
in the output Tensor. The result tensor is one dimension less than
the result of ``|x-y|`` unless :attr:`keepdim` is True. Default: False.
name (str, optional): For details, please refer to :ref:`api_guide_Name`.
Generally, no setting is required. Default: None.
Shape:
- x: :math:`[N, D]` or :math:`[D]`, where :math:`N` is batch size, :math:`D`
is the dimension of the data. Available data type is float16, float32, float64.
- y: :math:`[N, D]` or :math:`[D]`, y have the same dtype as x.
- output: The same dtype as input tensor.
- If :attr:`keepdim` is True, the output shape is :math:`[N, 1]` or :math:`[1]`,
depending on whether the input has data shaped as :math:`[N, D]`.
- If :attr:`keepdim` is False, the output shape is :math:`[N]` or :math:`[]`,
depending on whether the input has data shaped as :math:`[N, D]`.
Examples:
.. code-block:: pycon
>>> import paddle
>>> x = paddle.to_tensor([[1.0, 3.0], [3.0, 5.0]], dtype=paddle.float64)
>>> y = paddle.to_tensor([[5.0, 6.0], [7.0, 8.0]], dtype=paddle.float64)
>>> dist = paddle.nn.PairwiseDistance()
>>> distance = dist(x, y)
>>> print(distance)
Tensor(shape=[2], dtype=float64, place=Place(cpu), stop_gradient=True,
[4.99999860, 4.99999860])
"""
@param_one_alias(["epsilon", "eps"])
def __init__(
self,
p: float = 2.0,
epsilon: float = 1e-6,
keepdim: bool = False,
name: str | None = None,
):
super().__init__()
self.p = p
self.epsilon = epsilon
self.keepdim = keepdim
self.name = name
@param_two_alias(["x", "x1"], ["y", "x2"])
def forward(self, x: paddle.Tensor, y: paddle.Tensor) -> paddle.Tensor:
return F.pairwise_distance(
x, y, self.p, self.epsilon, self.keepdim, self.name
)
def extra_repr(self) -> str:
main_str = 'p={p}'
if self.epsilon != 1e-6:
main_str += ', epsilon={epsilon}'
if self.keepdim is not False:
main_str += ', keepdim={keepdim}'
if self.name is not None:
main_str += ', name={name}'
return main_str.format(**self.__dict__)
@property
def eps(self) -> float:
return self.epsilon
@eps.setter
def eps(self, value: float) -> None:
self.epsilon = value
@property
def norm(self) -> float:
return self.p
@norm.setter
def norm(self, value: float) -> None:
self.p = value
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+2145
View File
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+253
View File
@@ -0,0 +1,253 @@
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
#
# 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
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# 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.
from __future__ import annotations
from typing import TYPE_CHECKING
from .. import functional
from .layers import Layer
if TYPE_CHECKING:
from paddle import Tensor
from paddle._typing import DataLayout2D
__all__ = []
class PixelShuffle(Layer):
"""
Rearranges elements in a tensor of shape :math:`[N, C, H, W]`
to a tensor of shape :math:`[N, C/upscale_factor^2, H*upscale_factor, W*upscale_factor]`,
or from shape :math:`[N, H, W, C]` to :math:`[N, H*upscale_factor, W*upscale_factor, C/upscale_factor^2]`.
This is useful for implementing efficient sub-pixel convolution
with a stride of 1/upscale_factor.
Please refer to the paper: `Real-Time Single Image and Video Super-Resolution
Using an Efficient Sub-Pixel Convolutional Neural Network <https://arxiv.org/abs/1609.05158v2>`_ .
by Shi et. al (2016) for more details.
Parameters:
upscale_factor(int): factor to increase spatial resolution.
data_format (str, optional): The data format of the input and output data. An optional string from: `'NCHW'``, ``'NHWC'``. When it is ``'NCHW'``, the data is stored in the order of: [batch_size, input_channels, input_height, input_width]. Default: ``'NCHW'``.
name (str|None, optional): Name for the operation (optional, default is None). For more information, please refer to :ref:`api_guide_Name`.
Shape:
- x: 4-D tensor with shape of :math:`(N, C, H, W)` or :math:`(N, H, W, C)`.
- out: 4-D tensor with shape of :math:`(N, C/upscale_factor^2, H*upscale_factor, W*upscale_factor)` or :math:`(N, H*upscale_factor, W*upscale_factor, C/upscale_factor^2)`.
Examples:
.. code-block:: pycon
>>> import paddle
>>> import paddle.nn as nn
>>> x = paddle.randn(shape=[2, 9, 4, 4])
>>> pixel_shuffle = nn.PixelShuffle(3)
>>> out = pixel_shuffle(x)
>>> print(out.shape)
paddle.Size([2, 1, 12, 12])
"""
def __init__(
self,
upscale_factor: int,
data_format: DataLayout2D = 'NCHW',
name: str | None = None,
) -> None:
super().__init__()
if not isinstance(upscale_factor, int):
raise TypeError("upscale factor must be int type")
if data_format not in ["NCHW", "NHWC"]:
raise ValueError(
"Data format should be 'NCHW' or 'NHWC'."
f"But receive data format: {data_format}"
)
self._upscale_factor = upscale_factor
self._data_format = data_format
self._name = name
def forward(self, x: Tensor) -> Tensor:
return functional.pixel_shuffle(
x, self._upscale_factor, self._data_format, self._name
)
def extra_repr(self) -> str:
main_str = f'upscale_factor={self._upscale_factor}'
if self._data_format != 'NCHW':
main_str += f', data_format={self._data_format}'
if self._name is not None:
main_str += f', name={self._name}'
return main_str
class PixelUnshuffle(Layer):
"""
Rearranges elements in a tensor of shape :math:`[N, C, H, W]`
to a tensor of shape :math:`[N, r^2C, H/r, W/r]`, or from shape
:math:`[N, H, W, C]` to :math:`[N, H/r, W/r, r^2C]`, where :math:`r` is the
downscale factor. This operation is the reversion of PixelShuffle operation.
Please refer to the paper: `Real-Time Single Image and Video Super-Resolution
Using an Efficient Sub-Pixel Convolutional Neural Network <https://arxiv.org/abs/1609.05158v2>`_ .
by Shi et. al (2016) for more details.
Parameters:
downscale_factor (int): Factor to decrease spatial resolution.
data_format (str, optional): The data format of the input and output data. An optional string of ``'NCHW'`` or ``'NHWC'``. When it is ``'NCHW'``, the data is stored in the order of [batch_size, input_channels, input_height, input_width]. Default: ``'NCHW'``.
name (str|None, optional): Name for the operation (optional, default is None). Normally there is no need for user to set this property. For more information, please refer to :ref:`api_guide_Name`.
Shape:
- **x**: 4-D tensor with shape of :math:`[N, C, H, W]` or :math:`[N, C, H, W]`.
- **out**: 4-D tensor with shape of :math:`[N, r^2C, H/r, W/r]` or :math:`[N, H/r, W/r, r^2C]`, where :math:`r` is :attr:`downscale_factor`.
Examples:
.. code-block:: pycon
>>> import paddle
>>> import paddle.nn as nn
>>> x = paddle.randn([2, 1, 12, 12])
>>> pixel_unshuffle = nn.PixelUnshuffle(3)
>>> out = pixel_unshuffle(x)
>>> print(out.shape)
paddle.Size([2, 9, 4, 4])
"""
def __init__(
self,
downscale_factor: int,
data_format: DataLayout2D = 'NCHW',
name: str | None = None,
) -> None:
super().__init__()
if not isinstance(downscale_factor, int):
raise TypeError("Downscale factor must be int type")
if downscale_factor <= 0:
raise ValueError("Downscale factor must be positive")
if data_format not in ["NCHW", "NHWC"]:
raise ValueError(
"Data format should be 'NCHW' or 'NHWC'."
f"But receive data format: {data_format}"
)
self._downscale_factor = downscale_factor
self._data_format = data_format
self._name = name
def forward(self, x: Tensor) -> Tensor:
return functional.pixel_unshuffle(
x, self._downscale_factor, self._data_format, self._name
)
def extra_repr(self) -> str:
main_str = f'downscale_factor={self._downscale_factor}'
if self._data_format != 'NCHW':
main_str += f', data_format={self._data_format}'
if self._name is not None:
main_str += f', name={self._name}'
return main_str
class ChannelShuffle(Layer):
"""
Can divide channels in a tensor of shape [N, C, H, W] or [N, H, W, C] into g groups,
getting a tensor with the shape of [N, g, C/g, H, W] or [N, H, W, g, C/g], and transposes them
as [N, C/g, g, H, W] or [N, H, W, g, C/g], then rearranges them to original tensor shape. This
operation can improve the interaction between channels, using features efficiently. Please
refer to the paper: `ShuffleNet: An Extremely Efficient
Convolutional Neural Network for Mobile Devices <https://arxiv.org/abs/1707.01083>`_ .
by Zhang et. al (2017) for more details.
Parameters:
groups (int): Number of groups to divide channels in.
data_format (str, optional): The data format of the input and output data. An optional string of NCHW or NHWC. The default is NCHW. When it is NCHW, the data is stored in the order of [batch_size, input_channels, input_height, input_width].
name (str|None, optional): Name for the operation (optional, default is None). Normally there is no need for user to set this property. For more information, please refer to :ref:`api_guide_Name`.
Shape:
- **x**: 4-D tensor with shape of [N, C, H, W] or [N, H, W, C].
- **out**: 4-D tensor with shape and dtype same as x.
Examples:
.. code-block:: pycon
>>> import paddle
>>> import paddle.nn as nn
>>> x = paddle.arange(0, 0.6, 0.1, 'float32')
>>> x = paddle.reshape(x, [1, 6, 1, 1])
>>> print(x)
Tensor(shape=[1, 6, 1, 1], dtype=float32, place=Place(cpu), stop_gradient=True,
[[[[0. ]],
[[0.10000000]],
[[0.20000000]],
[[0.30000001]],
[[0.40000001]],
[[0.50000000]]]])
>>> channel_shuffle = nn.ChannelShuffle(3)
>>> y = channel_shuffle(x)
>>> print(y)
Tensor(shape=[1, 6, 1, 1], dtype=float32, place=Place(cpu), stop_gradient=True,
[[[[0. ]],
[[0.20000000]],
[[0.40000001]],
[[0.10000000]],
[[0.30000001]],
[[0.50000000]]]])
"""
def __init__(
self,
groups: int,
data_format: DataLayout2D = 'NCHW',
name: str | None = None,
) -> None:
super().__init__()
if not isinstance(groups, int):
raise TypeError("groups must be int type")
if groups <= 0:
raise ValueError("groups must be positive")
if data_format not in ["NCHW", "NHWC"]:
raise ValueError(
"Data format should be 'NCHW' or 'NHWC'."
f"But receive data format: {data_format}"
)
self._groups = groups
self._data_format = data_format
self._name = name
def forward(self, x: Tensor) -> Tensor:
return functional.channel_shuffle(
x, self._groups, self._data_format, self._name
)
def extra_repr(self) -> str:
main_str = f'groups={self._groups}'
if self._data_format != 'NCHW':
main_str += f', data_format={self._data_format}'
if self._name is not None:
main_str += f', name={self._name}'
return main_str