DroidPanda
DroidPanda

Reputation: 61

The tensorflow module is not visible inside swift

I am trying out the Tensorflow for Swift announced in TFDevSummit'18. https://www.youtube.com/watch?v=Yze693W4MaU

When I try to import the TensorFlow module inside Swift, Swift is unable to find the module and throws the following error message.

Welcome to Apple Swift version 4.1 (swiftlang-902.0.48 clang-902.0.39.1). Type :help for assistance.
1> import TensorFlow

error: repl.swift:1:8: error: no such module 'TensorFlow' import TensorFlow

I am new to Swift. Is there any reference how to install the TensorFlow module in Swift.

Thanks in advance.

Upvotes: 2

Views: 1147

Answers (2)

Igor Kovryzhkin
Igor Kovryzhkin

Reputation: 2215

Swift for Tensorflow is not yet released for public.

You can follow these links to install and use it:

Upvotes: 1

DroidPanda
DroidPanda

Reputation: 61

I have got clarification from the author of the library that it is not yet available and it will only be available in April.

Reference: https://github.com/tensorflow/tensorflow/issues/19#issuecomment-377670527

Upvotes: 1

Related Questions