swift icon indicating copy to clipboard operation
swift copied to clipboard

Swift for TensorFlow

Results 37 swift issues
Sort by recently updated
recently updated
newest added

Added the tensorflow library to my custom flutter plugin, within the iOS code the following occurs after adding it to the Podfile `[!] Unable to determine Swift version for the...

I believe this may be happening due to me using Apple Silicon, but I get this error when running: `import PythonKit` `error: could not find module 'PythonKit' for target 'arm64-apple-macos';...

I keep hitting an error in PythonKit when trying to build my project using the latest 0.12 toolchain: `Type referenced from a stored property in a '@frozen' struct must be...

While switching from the 0.12 S4TF release to a stock toolchain from https://swift.org/download/#releases, I've gotten some compiler errors. 1. When extending `Optional` and using `TangentVector`, the compiler says` 'TangentVector' is...

I'm having trouble shuffling a tensor along a specified axis. I tried using a shuffled array of indices to do this, like so: ```swift var indices: [Int] = Array(0...cardinality) indices.shuffle()...

I'm encountering a runtime error if I try to use TensorFlow in an SwiftUI App: ``` dyld: Symbol not found: _$sSo12NSFileHandleC10FoundationE9readToEndAC4DataVSgyKF Referenced from: /System/Library/Frameworks/SwiftUI.framework/Versions/A/SwiftUI Expected in: /Library/Developer/Toolchains/swift-tensorflow-RELEASE-0.12.xctoolchain/usr/lib/swift/macosx/libswiftFoundation.dylib in /System/Library/Frameworks/SwiftUI.framework/Versions/A/SwiftUI ```...

Swift for Tensorflow 0.12. On an Ubuntu 18.04 machine with CUDA 10.2 installed and a V100 GPU: ``` Test Case 'LayerTests.testTransformerOnSineData' passed (9.897 seconds) Test Suite 'LayerTests' passed at 2020-12-27...

Ubuntu 20.04 LTS was released on April 23, 2020. It would be nice to support this latest LTS version. Here's what I've needed to do to get version 0.11 working...

macOS 11.0.1. Xcode 12.2 beta 3. Swift For TensorFlow 0.12. My project successfully builds and links, but I immediately get this runtime error when I'm running my unit tests: ```...

I'm playing with https://www.tensorflow.org/swift/tutorials/introducing_x10. Both locally and on Colab, the eager tensor shows up on the CPU. The text says `If you are running this notebook on a GPU-enabled instance,...