List!

swarmlab

Why Docker

Intro docker

Learn to build and deploy your distributed applications easily to the cloud with Docker

Next Step DockerSwarm

DockerSwarm

Getting started with swarm - official from docker

Replicability, use the same files as when developing locally.

Open Source Cloud Guide from IBM

Alternatives

Raft consensus in swarm mode

Next Step Storage

Storage

On memory - Key-value

etcd
redis

etcd vs. Redis

Like etcd, Redis is an open source tool, but their basic functionalities are different.

Redis etcd

Redis is an in-memory data store and can function as a database, cache, or message broker. Redis supports a wider variety of data types and structures than etcd and has much faster read/write performance.

etcd has superior fault tolerance, stronger failover and continuous data availability capabilities.

Redis is better suited for serving as a distributed memory caching system than for storing and distributed system configuration information.

etcd persists all stored data to disk.

Sharing

Deploy

Development - From Design to Application

programming language

nodeJS

NodeJS

python

Big data and Scientific analysis

Rest API

Rest api

Sockets

Sockets

Swarm intelligence

TensorSwarm: A framework for reinforcement learning of robot swarms.

ROS - Robot Operating System

ROS

Reinforcement Learning

PyTorch vs. TensorFlow

PyTorch TensorFlow

PyTorch is open source deep learning framework created by developers at Facebook and released in 2017.

TensorFlow is open source deep learning framework created by developers at Google and released in 2015.

Top PyTorch Projects

* CheXNet: Radiologist-level pneumonia detection on chest X-rays with deep learning. url

* PYRO: Pyro is a universal probabilistic programming language (PPL) written in Python and supported by PyTorch on the backend. url

* Horizon: A platform for applied reinforcement learning (Applied RL) url

Top TensorFlow Projects

* Magenta: An open source research project exploring the role of machine learning as a tool in the creative process. url

* Sonnet: Sonnet is a library built on top of TensorFlow for building complex neural networks. url

* Ludwig: Ludwig is a toolbox to train and test deep learning models without the need to write code. url

Production Deployment PyTorch doesn’t provide any framework to deploy models directly on to the web. You’ll have to use either Flask or Django as the backend server.

Production Deployment When it comes to deploying trained models to production, TensorFlow is the clear winner. We can directly deploy models in TensorFlow using TensorFlow serving which is a framework that uses REST Client API.

Visualization PyTorch developers use Visdom, the features provided by Visdom are very minimalistic and limited.

Visualization When it comes to visualization of the training process, TensorFlow takes the lead. Visualization helps the developer track the training process and debug in a more convenient way. TenforFlow’s visualization library is called TensorBoard.

Python

Tensorflow has APIs for various langages :

* C (used to develop other APIs in practice, though)

* C (Tensorflow is written in C and CUDA)

* Java

* GO

* Rust

* Haskell (yes, even Haskell)

* C#

* Julia

* R

* Python

* And, of course, for JavaScript, since 2019.

Pytorch Cons:

* Third-party needed for visualization.

* API server needed for production.

TensorFlow Cons:

* Debugging method.

* Hard to make quick changes.

Reasons to learn machine learning with JavaScript

Private machine learning

Most machine learning applications rely on client-server architectures. Users must send their data where the machine learning models are running.

Machine learning models on your device without sending any data to the cloud.

And you don’t need to install any additional software.

Powerful JavaScript machine learning libraries:

Easy integration of machine learning in web and mobile applications

Python support in mobile operating systems is still in the preliminary stages.

Javascript has a rich set of cross-platform mobile app development tools such as Cordova and Ionic

Machine learning with Node.js is fairly new, but it is fast evolving because there is growing interest in adding machine learning capabilities to web and mobile applications.

Reasons to learn machine learning with Python - PyTorch

Python is better suited for server-side training of machine learning models

It can scale and distribute its load on server clusters to accelerate the training process. Once the model is trained, you can compress it and deliver it on user devices for inference. Fortunately, machine learning libraries written in different languages are highly compatible.

For instance, if you train your deep learning model with TensorFlow or Keras for Python, you can save it in one of several language-independent formats such as JSON or HDF5. You can then send the saved model to the user’s device and load it with TensorFlow.js or another JavaScript deep learning library.

POC

netflix

Netflix
6:50 monolithic
8:24 minroservices
19:00 microservice
see also 37:00