书栈网 · BookStack 本次搜索耗时 0.012 秒,为您找到 6103 个相关结果.
  • TargetType 、PrecisionType、DataLayoutType、Place

    TargetType PrecisionType DataLayoutType Place TargetType class TargetType ; TargetType 为目标设备硬件类型,用户可以根据应用场景选择硬件平台类型。 枚举型变量TargetType 的所有可能取值包括: {X86, CUDA, ARM, OpenC...
  • Compiling executables

    236 2021-03-04 《Deno v1.7.2 Manual》
    Compiling Executables Flags Cross Compilation Generating smaller binaries Compiling Executables Since the compile functionality is relatively new, the --unstable flag has ...
  • 在 Java 应用中集成

    在 Java 应用中集成 resources Controller 在 Java 应用中集成 本文讲解如何在 Java 服务中集成前端资源,我们以 Spring Boot 为例。 resources 新建 /velocity/layout/index.vm : <!DOCTYPE html> <html> <head> ...
  • 快速安装

    快速安装 快速安装 经测试PaddleOCR可在glibc 2.23上运行,您也可以测试其他glibc版本或安装glic 2.23 PaddleOCR 工作环境 PaddlePaddle 1.7+ python3.7 glibc 2.23 cuDNN 7.6+ (GPU) 建议使用我们提供的docker运行PaddleOCR,有关docker、...
  • all_gather

    all_gather 参数 返回 代码示例 all_gather paddle.distributed. all_gather ( tensor_list, tensor, group=0 ) [源代码] 进程组内所有进程的指定tensor进行聚合操作,并返回给所有进程聚合的结果。 参数 tensor_list (list) - ...
  • prelu

    prelu prelu paddle.static.nn.prelu ( x, mode, param_attr=None, name=None ) [源代码] prelu激活函数 共提供三种激活方式: all : 所有元素使用同一个 alpha 值 channel : 在同一个通道中的元素使用同一个 alpha 值 e...
  • ones

    ones 参数 返回 代码示例 ones paddle.ones ( shape, dtype=None ) [源代码] 该OP创建形状为 shape 、数据类型为 dtype 且值全为1的Tensor。 参数 shape (tuple|list|Tensor) - 输出Tensor的形状, shape 的数据类型为in...
  • meshgrid

    meshgrid meshgrid paddle. meshgrid ( args, kargs* ) [源代码] 该OP的输入是张量或者包含张量的列表, 包含 k 个一维张量,对每个张量做扩充操作,输出 k 个 k 维张量。 参数: args (Tensor|Tensor数组)- 输入变量为 k 个一维张量,形状分别为(N1,), ...
  • greater_equal

    greater_equal greater_equal paddle. greater_equal ( x, y, name=None ) [源代码] 该OP逐元素地返回 的逻辑值,相同位置前者输入大于等于后者输入则返回True,否则返回False。使用重载算子 >= 可以有相同的计算函数效果。 注:该OP输出的结果不返回梯度。 参数...
  • scope_guard

    scope_guard scope_guard paddle.static. scope_guard ( scope ) [源代码] 该接口通过 python 的 with 语句切换作用域(scope)。 作用域记录了变量名和变量 ( Variable ) 之间的映射关系,类似于编程语言中的大括号。 如果未调用此接口,所有的变量和变量名都会被...