我在 Xcode 中安装了 TensorFlow 工具链,并尝试从 S4TF GitHub 页面运行示例片段。我收到以下错误:
JVP does not exist. Differential-first differentiation APIs are experimental and should not be used.
然后我尝试在 Google Colab 上做同样的事情并得到同样的错误。这是我要运行的代码片段:
@differentiable
func f(_ x: Float) -> Float {
x * x
}
let dfdx = derivative(of: f)
dfdx(3) // 6
我知道这是我第一次运行 S4TF 并且我不知道很多事情,所以这可能是我的一个愚蠢的错误 :)