书栈网 · BookStack 本次搜索耗时 0.026 秒,为您找到 124085 个相关结果.
  • scatter_nd_add

    scatter_nd_add scatter_nd_add paddle.fluid.layers. scatter_nd_add (ref, index, updates, name=None)[源代码] 该OP通过对Variable中的单个值或切片应用稀疏加法,从而得到输出的Variable。 ref 是维度为 R 的张量。 in...
  • kron

    kron kron paddle.kron ( x, y, out\=None, name\=None ) [源代码] Kronecker Product 算子。 该 OP 计算两个张量的克罗内克积,结果是一个合成的张量,由第二个张量经过第一个张量中的元素缩放 后的组块构成。 这个 OP 预设两个张量 X 和 Y 的秩 (ran...
  • smooth_l1

    smooth_l1 smooth_l1 paddle.fluid.layers.smooth_l1 ( x, y, inside_weight=None, outside_weight=None, sigma=None ) [源代码] 该layer计算变量 x 和 y 的smooth L1 loss,它以 x 和 y 的第一维大小作为批...
  • torch.nn.init

    torch.nn.init torch.nn.init torch . nn . init . calculate_gain ( nonlinearity , param = None ) 对于给定的非线性函数,返回推荐的增益值。这些值如下所示: nonlinearity gain linear 1 conv{1,...
  • 分布式通讯包 - torch.distributed

    分布式通讯包 - torch.distributed 基本 初始化 torch.distributed.init_process_group(backend, init_method=’env://‘, kwargs) torch.distributed.get_rank() torch.distributed.get_world_size() TC...
  • TensorFlow 1+1

    TensorFlow 1+1 TensorFlow 1+1 我们可以先简单地将TensorFlow视为一个科学计算库(类似于Python下的NumPy)。 首先,我们导入TensorFlow: import tensorflow as tf 警告 本手册基于TensorFlow的Eager Execution模式。在Tens...
  • 广播语义

    广播语义 一般语义 In - place 语义 向后兼容性 广播语义 译者:冯宝宝 校验:AlexJakin 许许多多的PyTorch操作都支持NumPy Broadcasting Semantics 。 简而言之,如果PyTorch操作支持广播,那么它的Tensor参数可以自动扩展为相同的类型大小(不需要复制数据)。 ...