harmonia logo

harmonia

Enrichment pending
ailabstw/harmonia

Federated Learning Made Easy

GraphCanon updated today · GitHub synced today

17
Stars
14
Forks
0
Open issues
5
Watchers
5y
Last push
Go MPL-2.0Created Jun 4, 2020

Trust & integrity

Full report
Maintenance
Dormant (2119d since push)
As of today · Source: github_public_v1
Provenance
Not a fork · Organization account
As of today · Source: github_public_v1
Security (OSV)
No lockfile
As of today · Source: none

Public GitHub metadata and optional OSV dependency scans. Signals, not a guarantee. Trust methodology.

Overview

Federated Learning Made Easy

Capability facts

Languages
go

Source: github.language · Jul 11, 2026

Categories

Tags

README

Harmonia

Harmonia is an open source project aiming at developing systems/infrastructures and libraries to ease the adoption of federated learning (abbreviated to FL) for researches and production usage. It is named Harmonia, the Greek goddess of harmony, to reflect the spirit of federated learning; that is, multiple parities collaboratively build a ML model for the common good.

The first release includes Harmonia-operator SDK and differential privacy modules (https://github.com/ailabstw/blurnn). We welcome contributions of new aggregation algorithms, privacy mechanism, datasets, etc. Let's work together to flourish the growth of federated learning.

FL System Architecture

The design of the Harmonia system is inspired by GitOps. GitOps is centerred around a git repository, which maintains the desired states in the production environment. An automated process makes the production environment match the described state in the repository. In Harmonia, training plans (or simply FL parameters), global models, and local models are kept in git repositories. Updates to these repositories trigger FL system state transitions. These automates the FL training processes. A participant in a federated training is composed of an Operator container and an Application container. An Operator container is in charge of maintaining the FL system states, and communicates with an Application container via gRPC. Local training and aggerator applications are encapsulated in Application containers. This container based architecture enables quick plug-in of existing ML workflows.

Documentation

  • docs
    • docs/get-started: A step-by-step example tutorial
    • docs/sdk: Detailed sdk document

Build

To build the Harmonia Operator,

$ make all

for harmonia/operator image

Example

See examples/mnist

Get Started

See docs/get-started