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

    MobileVRInterface Description Properties Property Descriptions MobileVRInterface Inherits: ARVRInterface < Reference < Object Generic mobile VR implementation. Des...
  • MobileVRInterface

    MobileVRInterface Brief Description Properties Description Property Descriptions MobileVRInterface Inherits: ARVRInterface < Reference < Object Category: Core Br...
  • split

    split 参数 返回 代码示例 split paddle.split ( x, num_or_sections, axis=0, name=None ) [源代码] 该OP将输入Tensor分割成多个子Tensor。 参数 x (Tensor) - 输入变量,数据类型为bool, float16, float32,float...
  • rank

    rank rank paddle.rank ( input ) [源代码] 该OP用于计算输入Tensor的维度(秩)。 参数: input (Tensor) — 输入input是shape为 的多维Tensor,数据类型可以任意类型。 返回:输出Tensor的秩,是一个0-D Tensor。 代码示例 import ...
  • 计算机视觉

    计算机视觉 计算机视觉 在这里PaddlePaddle为大家提供了几篇cv的教程供大家学习: 图像分类 :介绍使用 Paddle 在MNIST数据集上完成图像分类。 图像分类 :介绍使用 Paddle 在Cifar10数据集上完成图像分类。 以图搜图 : 介绍使用Paddle 实现以图搜图。 图像分割 : 介绍使用 Padd...
  • is_tensor

    is_tensor is_tensor paddle.is_tensor ( x ) [源代码] 该函数用来测试输入对象是否是paddle.Tensor 参数: x (Object) - 测试的对象。 返回:布尔值,如果x是paddle.Tensor的话返回True,否则返回False。 代码示例 : import paddle...
  • multiplex

    multiplex multiplex paddle. multiplex ( inputs, index, name ) [源代码] 根据给定的index参数,该OP从每个输入Tensor中选择特定行构造输出Tensor。 设该OP输入包含 个Tensor,其中 代表第i个输入Tensor, 处于区间 。 设该OP输...
  • dice_loss

    dice_loss dice_loss paddle.nn.functional.dice_loss ( input, label, epsilon=1e-05 ) [源代码] 该OP用来比较预测结果跟标签之间的相似度,通常用于二值图像分割,即标签为二值,也可以做多标签的分割。 dice_loss定义为: 参数: input (T...
  • to_tensor

    to_tensor to_tensor paddle.to_tensor ( data, dtype=None, place=None, stop_gradient=True ) [源代码] 该API通过已知的 data 来创建一个 tensor,tensor类型为 paddle.Tensor 。 data 可以是 scalar,tuple...