Swift library for Machine Learning based on Swift for TensorFlow Project.
https://param087.github.io/swiftML/
-
Install locally: Swift for TensorFlow toolchain and Jupyter Kernel for Swift for TensorFlow swift-jupyter.
-
Google Colaboratory: The fastest way to get started is to try out right in your browser. Just open up a tutorial, or start from a blank notebook!
Add the library to your projects dependencies in the Package.swift file as shown below.
dependencies: [
.package(url: "https://github.com/param087/swiftML", .exact("0.0.4")),
],
%install
directives let you install SwiftPM packages so that your notebook
can import them:
// Install the swiftML package from GitHub.
%install '.package(url: "https://github.com/param087/swiftML", from: "0.0.4")' swiftML
// Install the swiftML package from GitHub master branch.
%install '.package(url: "https://github.com/param087/swiftML", .branch("master"))' swiftML
// Install the swiftML package that's in the local directory.
%install '.package(path: "$cwd/swiftML")' swiftML
We welcome contribution from everyone. Read the contribution guide for information on of how to get started.
swiftML discussions happen on the Slack.
This project is licensed under the MIT License - see the LICENSE file for details.