mindspore.nn.Identity

查看源文件
class mindspore.nn.Identity(*args, **kwargs)[源代码]

网络占位符,返回与输入完全一致。

参数:
  • args (Any) - 任意参数。

  • kwargs (Any) - 任意关键字参数。

输入:
  • input (Any) - Identity的输入。

输出:

input 完全相同。

支持平台:

Ascend GPU CPU

样例:

>>> import mindspore
>>> from mindspore import Tensor, nn
>>> import numpy as np
>>> input = Tensor(np.array([1, 2, 3, 4]), mindspore.int64)
>>> net = nn.Identity()
>>> output = net(input)
>>> print(output)
[1 2 3 4]