Skip to main content

XAIN is an open source framework for federated learning.

Project description

Tests (master) PyPI GitHub license Documentation Status Gitter chat


Disclaimer: This is work-in-progress and not production-ready, expect errors to occur! Use at your own risk! Do not use for any security related issues!


XAIN

The XAIN project is building a privacy layer for machine learning so that AI projects can meet compliance such as GDPR and CCPA. The approach relies on Federated Learning as enabling technology that allows production AI applications to be fully privacy compliant.

Federated Learning also enables different use-cases that are not strictly privacy related such as connecting data lakes, reaching higher model performance in unbalanced datasets and utilising AI models on the edge.

This repository contains the source code for running the Coordinator. The Coordinator is the component of Federated Learning that selects the Participants for training and aggregates the models using federated averaging.

The Participants run in a separate environment than the Coordinator and connect to it using an SDK. You can find here the source code for it.

Quick Start

XAIN requires Python 3.6.4+. To install the xain-fl package just run:

$ python -m pip install xain-fl

Install from source

Clone this repository:

git clone https://github.com/xainag/xain-fl.git

Install this project with the dev profile (NOTE: it is recommended to install the project in a virtual environment):

cd xain-fl
pip install -e '.[dev]'

Verify the installation by running the tests

pytest

Building the Documentation

The project documentation resides under docs/. To build the documentation run:

$ cd docs/
$ make docs

The generated documentation will be under docs/_build/html/. You can open the root of the documentation by opening docs/_build/html/index.html on your favorite browser or simply run the command:

$ make show

Running the Coordinator locally

To run the Coordinator on your local machine, you can use the example-config.toml file:

# If you have installed the xain_fl package,
# the `coordinator` command should be directly available
coordinator --config configs/example-config.toml

# otherwise the coordinator can be started by executing the
# `xain_fl` package:
python xain_fl --config configs/example-config.toml

Run the Coordinator from a Docker image

There are two docker-compose files, one for development and one for release.

Development image

To run the coordinator's development image, first build the Docker image:

$ docker build -t xain-fl-dev -f Dockerfile.dev .

Then run the image, mounting the directory as a Docker volume:

$ docker run -v $(pwd):/app -v '/app/xain_fl.egg-info' xain-fl-dev coordinator

The command above uses a default configuration but you can also use a custom config file:

For instance, if you have a ./custom_config.toml file that you'd like to use, you can mount it in the container and run the coordinator with:

docker run \
  -v $(pwd)/custom_config.toml:/custom_config.toml \
  -v $(pwd):/app \
  -v '/app/xain_fl.egg-info' \
  xain-fl-dev \
  coordinator --config /custom_config.toml

Release image

To run the coordinator's release image, first build it:

$ docker build -t xain-fl .

And then run it (this example assumes you'll want to use the default port):

$ docker run -p 50051:50051 xain-fl

Docker-compose

The coordinator needs a storage service that provides an AWS S3 API. For development, we use minio. We provide docker-compose files that start coordinator container along with a minio container, and pre-populate the appropriate storage buckets.

Development

To start both the coordinator and the minio service use:

docker-compose -f docker-compose-dev.yml up

It is also possible to only start the storage service:

docker-compose -f docker-compose-dev.yml up minio-dev initial-buckets

Release

$ docker-compose up

Related Papers and Articles

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

xain_fl-0.6.0.tar.gz (26.4 kB view details)

Uploaded Source

Built Distribution

xain_fl-0.6.0-py3-none-any.whl (34.3 kB view details)

Uploaded Python 3

File details

Details for the file xain_fl-0.6.0.tar.gz.

File metadata

  • Download URL: xain_fl-0.6.0.tar.gz
  • Upload date:
  • Size: 26.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.4

File hashes

Hashes for xain_fl-0.6.0.tar.gz
Algorithm Hash digest
SHA256 8210b79c756b14f69f95ec1a0bb7dab1700898ddce9c9de0ec826c81b26a2c2b
MD5 33841494d2bcc580d896032a1ba5792a
BLAKE2b-256 d5a0e9896924094f75bbc7acbdf19d2d97983f5f54586684dd0e2ab104ed2e74

See more details on using hashes here.

File details

Details for the file xain_fl-0.6.0-py3-none-any.whl.

File metadata

  • Download URL: xain_fl-0.6.0-py3-none-any.whl
  • Upload date:
  • Size: 34.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.4

File hashes

Hashes for xain_fl-0.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b10364060187e6fa2f03dd3ea686baf7fcc57fcff8b776d3475d3b3e7e6c6753
MD5 9c61c290a1b07b8c0c73a584fe79a98f
BLAKE2b-256 4aeb9af34d7e6534bd645c3ebbbea1be3100b8a767b77179341d3b501d110924

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page