gpt4 book ai didi

swift - 从 swift 数组创建张量

转载 作者:行者123 更新时间:2023-12-04 01:36:06 26 4
gpt4 key购买 nike

这很好用:

import TensorFlow
var t = Tensor<Float>([[1, 0], [0, 1]])

但是下面给出了错误

import TensorFlow
var a = [[1, 0], [0, 1]]
var t = Tensor<Float>(a)
error: expression type 'Tensor<Float>' is ambiguous without more context
var t = Tensor<Float>(a)
^~~~~~~~~~~~~~~~

为什么会这样?还有如何从数组中快速创建张量。

最佳答案

您的第一个代码之所以有效,是因为它使用文字,而不是使用已声明的变量(其类型已确定)来初始化 Tensor<Float> .编译器对文字进行特殊处理。

Tensor.init 的过载你打电话的是this .在您的情况下,它接受 ShapedArray<Float> .

ShapedArray 符合协议(protocol)ExpressibleByArrayLiteral ,这意味着编译器可以将数组文字转换为 ShapeArray含蓄地。然而,这仅限于文字,例如[[1, 0], [0, 1]] ,而不是引用数组类型变量的标识符,例如 a . a的类型被推断为 [[Int]]由编译器,编译器不能隐式转换 [[Int]]ShapedArray<Float> .

虽然不那么重要,但事实是 Float符合 ExpressibleByIntegerLiteral (因此 10 可以转换为 float )也在允许您的代码编译方面发挥作用。

为什么var aa: Tensor<Float> = [[1.0, 0.0], [1.0, 0.0]]的原因工作是因为Tensor也符合 ExpressibleByArrayLiteral .

关于swift - 从 swift 数组创建张量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59508668/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com