All Projects → param087 → swiftML

param087 / swiftML

Licence: Apache-2.0 license
Swift library for Machine Learning

Programming Languages

Jupyter Notebook
11667 projects
swift
15916 projects

Projects that are alternatives of or similar to swiftML

monte-note
Note taking application with a rich set of editing and management features
Stars: ✭ 63 (+12.5%)
Mutual labels:  notebook
LearningPath
Learning repository
Stars: ✭ 143 (+155.36%)
Mutual labels:  notebook
text-rnn-tensorflow
Tutorial: Multi-layer Recurrent Neural Networks (LSTM, RNN) for text models in Python using TensorFlow.
Stars: ✭ 22 (-60.71%)
Mutual labels:  notebook
fiap-ml-visao-computacional
Repositório dos exemplos e desafios utilizados na disciplina de Visão Computacional do curso de MBA Machine Learning da FIAP
Stars: ✭ 33 (-41.07%)
Mutual labels:  notebook
MineColab
Run Minecraft Server on Google Colab.
Stars: ✭ 135 (+141.07%)
Mutual labels:  notebook
notesnook
A fully open source & end-to-end encrypted note taking alternative to Evernote.
Stars: ✭ 5,098 (+9003.57%)
Mutual labels:  notebook
jupyterlab-custom-css
Add custom CSS rules for JupyterLab
Stars: ✭ 32 (-42.86%)
Mutual labels:  notebook
computer-vision-notebooks
👁️ An authorial set of fundamental Python recipes on Computer Vision and Digital Image Processing.
Stars: ✭ 89 (+58.93%)
Mutual labels:  notebook
jupyterlab plotly
This repository is deprecated. The extension has moved to https://github.com/jupyterlab/jupyter-renderers
Stars: ✭ 16 (-71.43%)
Mutual labels:  notebook
Machine-Learning-Notebooks
15+ Machine/Deep Learning Projects in Ipython Notebooks
Stars: ✭ 66 (+17.86%)
Mutual labels:  notebook
gorilla-repl
A fork of Jony Epsilon's rich REPL for Clojure in the notebook style.
Stars: ✭ 22 (-60.71%)
Mutual labels:  notebook
xp
A framework (comand line tool + libraries) for creating flexible compute pipelines
Stars: ✭ 54 (-3.57%)
Mutual labels:  notebook
MDAPL
The de facto standard for people who are looking to learn Dyalog APL from a book. This updated version is a work in progress.
Stars: ✭ 24 (-57.14%)
Mutual labels:  notebook
Codex
A free note-taking software for programmers and Computer Science students
Stars: ✭ 242 (+332.14%)
Mutual labels:  notebook
machine-learning-use-cases
Machine Learning Notebooks with Turicreate and Keras in a Docker Container
Stars: ✭ 20 (-64.29%)
Mutual labels:  notebook
competitive-programming
This is my collection of various algorithms and data structures that I feel that are needed frequently in competitive programming .
Stars: ✭ 30 (-46.43%)
Mutual labels:  notebook
go-notebook
Go-Notebook is inspired by Jupyter Project (link) in order to document Golang code.
Stars: ✭ 33 (-41.07%)
Mutual labels:  notebook
sunrise
NumPy, SciPy, MRI and Music | Presented at ISMRM 2021 Sunrise Educational Session
Stars: ✭ 20 (-64.29%)
Mutual labels:  notebook
tyssue
An epithelium simulation library
Stars: ✭ 50 (-10.71%)
Mutual labels:  notebook
idr-notebooks
Jupyter Notebooks for the Image Data Resource
Stars: ✭ 14 (-75%)
Mutual labels:  notebook

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].