swiftML

Swift library for Machine Learning based on Swift for TensorFlow Project.

Documentation

https://param087.github.io/swiftML/

Getting Started

How to include the library in your package

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")),
    ],

How to include the library in your Jupyter Notebook using %install directives.

%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

Contributing

We welcome contribution from everyone. Read the contribution guide for information on of how to get started.

Community

swiftML discussions happen on the Slack.

License

This project is licensed under the MIT License - see the LICENSE file for details.