Close Menu
    Facebook LinkedIn YouTube WhatsApp X (Twitter) Pinterest
    Trending
    • SpaceX’s Starship V3 Can’t Fly Again Until a ‘Mishap’ Is Addressed, Says FAA
    • Why AI Still Can’t Solve Your Real Mathematical Optimization Problem
    • New Titanium Multitool Offers 15 Functions
    • Zurich’s Stellar Alpina raises €3.8 million to build detonation-based propulsion for in-space mobility
    • The $6 Billion Chinese Startup Trying to Build Hands for Every Robot
    • Snowflake stock closed up 36% on Thursday, its best day ever, after the company boosted guidance and announced an AI compute deal with Amazon (Samantha Subin/CNBC)
    • YouTube’s AI Is Ready to Customize Your Scrolling
    • EmoNet: Speaker-Aware Transformers for Emotion Recognition — and What I’d Build Differently in 2026
    Facebook LinkedIn WhatsApp
    Times FeaturedTimes Featured
    Thursday, May 28
    • Home
    • Founders
    • Startups
    • Technology
    • Profiles
    • Entrepreneurs
    • Leaders
    • Students
    • VC Funds
    • More
      • AI
      • Robotics
      • Industries
      • Global
    Times FeaturedTimes Featured
    Home»Artificial Intelligence»Federated Learning, Part 2: Implementation with the Flower Framework 🌼
    Artificial Intelligence

    Federated Learning, Part 2: Implementation with the Flower Framework 🌼

    Editor Times FeaturedBy Editor Times FeaturedJanuary 28, 2026No Comments12 Mins Read
    Facebook Twitter Pinterest Telegram LinkedIn Tumblr WhatsApp Email
    Share
    Facebook Twitter LinkedIn Pinterest Telegram Email WhatsApp Copy Link


    within the federated studying sequence I’m doing, and if you happen to simply landed right here, I might suggest going by way of the first part the place we mentioned how federated studying works at a excessive stage. For a fast refresher, right here is an interactive app that I created in a marimo pocket book the place you may carry out native coaching, merge fashions utilizing the Federated Averaging (FedAvg) algorithm and observe how the worldwide mannequin improves throughout federated rounds. 

    An interactive visualization of federated studying the place you management the coaching course of and watch the worldwide mannequin evolve. (Impressed by AI Explorables)

    On this half, our focus will likely be on implementing the federated logic utilizing the Flower framework.

    What occurs when fashions are skilled on skewed datasets

    Within the first half, we mentioned how federated studying was used for early COVID screening with Curial AI. If the mannequin had been skilled solely on knowledge from a single hospital, it could have learnt patterns particular to that hospital solely and would have generalised badly on out-of-distribution datasets. We all know it is a idea, however now allow us to put a quantity to it. 

    I’m borrowing an instance from the Flower Labs course on DeepLearning.AI as a result of it makes use of the acquainted which makes the concept simpler to know with out getting misplaced in particulars. This instance makes it simple to know what occurs when fashions are skilled on biased native datasets. We then use the identical setup to point out how federated studying adjustments the end result.

    • I’ve made just a few small modifications to the unique code. Specifically, I take advantage of the Flower Datasets library, which makes it simple to work with datasets for federated studying eventualities.
    • 💻 You possibly can entry the code right here to observe alongside. 

    Splitting the Dataset

    We begin by taking the MNIST dataset and splitting it into three components to symbolize knowledge held by completely different purchasers, let’s say three completely different hospitals. Moreover, we take away sure digits from every cut up so that each one purchasers have incomplete knowledge, as proven under. That is finished to simulate real-world knowledge silos.

    Simulating real-world knowledge silos the place every shopper sees solely a partial view.

    As proven within the picture above, shopper 1 by no means sees digits 1, 3 and seven. Equally, shopper 2 by no means sees 2, 5 and eight and shopper 3 by no means sees 4, 6, and 9. Although all three datasets come from the identical supply, they symbolize fairly completely different distributions.

    Coaching on Biased Information

    Subsequent, we practice separate fashions on every dataset utilizing the identical structure and coaching setup. We use a quite simple neural community carried out in PyTorch with simply two totally related layers and practice the mannequin for 10 epochs.

    Loss curves point out profitable coaching on native knowledge, however testing will reveal the impression of lacking courses.

    As will be seen from the loss curves above, the loss progressively goes down throughout coaching. This means that the fashions are studying one thing. Nonetheless, keep in mind, every mannequin is barely studying from its personal restricted view of the information and it’s solely after we take a look at it on a held-out set that we’ll know the true accuracy.

    Evaluating on Unseen Information

    To check the fashions, we load the MNIST take a look at dataset with the identical normalization utilized to the coaching knowledge. After we consider these fashions on the entire take a look at set (all 10 digits), accuracy lands round 65 to 70 %, which appears cheap on condition that three digits have been lacking from every coaching dataset. A minimum of the accuracy is healthier than the random probability of 10%.

    Subsequent, we additionally consider how particular person fashions carry out on knowledge examples that weren’t represented of their coaching set. For that, we create three particular take a look at subsets:

    • Check set [1,3,7] solely consists of digits 1, 3, and seven
    • Check set [2,5,8] solely consists of digits 2, 5, and eight
    • Check set [4,6,9] solely consists of digits 4, 6, and 9
    Fashions carry out moderately on all digits however fully fail on courses they by no means noticed throughout coaching

    After we consider every mannequin solely on the digits it by no means noticed throughout coaching, accuracy drops to 0 %. The fashions fully fail on courses they have been by no means uncovered to. Properly, that is additionally anticipated since a mannequin can’t be taught to acknowledge patterns it has by no means seen earlier than. However there’s greater than what meets the attention, so we subsequent take a look at the confusion matrix to know the habits in additional element.

    Understanding the Failure By means of Confusion Matrices

    Under is the confusion matrix for mannequin 1 that was skilled on knowledge excluding digits 1, 3, and seven. Since these digits have been by no means seen throughout coaching, the mannequin virtually by no means predicts these labels. 

    Nonetheless, In few instances, the mannequin predicts visually comparable digits as an alternative. When label 1 is lacking, the mannequin by no means outputs 1 and as an alternative predicts digits like 2 or 8. The identical sample seems for different lacking courses. Which means the mannequin fails in a means by assigning excessive confidence to the mistaken label. That is undoubtedly not anticipated.

    The confusion matrix reveals how lacking coaching knowledge results in systematic misclassification: absent courses are by no means predicted, and similar-looking options are assigned with excessive confidence

    This instance reveals the bounds of centralized coaching with skewed knowledge. When every shopper has solely a partial view of the true distribution, fashions fail in systematic ways in which total accuracy doesn’t seize. That is precisely the issue federated studying is supposed to deal with and that’s what we are going to implement within the subsequent part utilizing the Flower framework.

    What’s Flower 🌼 ?

    Flower is an open supply framework that makes federated studying very simple to implement, even for newcomers. It’s framework agnostic so that you don’t have to fret about utilizing PyTorch, TensorFlow, Hugging Face, JAX and extra. Additionally, the identical core abstractions apply whether or not you might be working experiments on a single machine or coaching throughout actual units in manufacturing.

    Flower fashions federated studying in a really direct means. A Flower app is constructed across the identical roles we mentioned within the earlier article: purchasers, a server and a technique that connects them. Let’s now take a look at these roles in additional element.

    Understanding Flower By means of Simulation

    Flower makes it very simple to start out with federated studying with out worrying about any advanced setup. For native simulation, there are principally two instructions you have to care about: 

    • one to generate the app — flwr new and 
    • one to run it—flwr run

    You outline a Flower app as soon as after which run it domestically to simulate many consumers. Although every little thing runs on a single machine, Flower treats every shopper as an unbiased participant with its personal knowledge and coaching loop. This makes it a lot simpler to experiment and take a look at earlier than transferring to an actual deployment.

    Allow us to begin by putting in the newest model of Flower, which on the time of writing this text is 1.25.0.

    # Set up flower in a digital surroundings
    pip set up -U flwr 
    
    # Checking the put in model
    flwr --version
    Flower model: 1.25.0

    The quickest technique to create a working Flower app is to let Flower scaffold one for you by way of flwr new.

    flwr new #to pick out from a listing of templates
    
    or
    
    flwr new @flwrlabs/quickstart-pytorch #immediately specify a template

    You now have an entire undertaking with a clear construction to start out with.

    quickstart-pytorch
    ├── pytorchexample
    │   ├── client_app.py   
    │   ├── server_app.py   
    │   └── process.py         
    ├── pyproject.toml      
    └── README.md

    There are three principal recordsdata within the undertaking:

    • The process.py file defines the mannequin, dataset and coaching logic. 
    • The client_app.py file defines what every shopper does domestically. 
    • The server_app.py file coordinates coaching and aggregation, often utilizing federated averaging however it’s also possible to modify it.

    Working the federated simulation

    We are able to now run the federation utilizing the instructions under.

    pip set up -e . 
    flwr run .

    This single command begins the server, creates simulated purchasers, assigns knowledge partitions and runs federated coaching finish to finish. 

    An necessary level to notice right here is that the server and purchasers don’t name one another immediately. All communication occurs utilizing message objects. Every message carries mannequin parameters, metrics, and configuration values. Mannequin weights are despatched utilizing array data, metrics corresponding to loss or accuracy are despatched utilizing metric data and values like studying charge are despatched utilizing config data. Throughout every spherical, the server sends the present international mannequin to chose purchasers, purchasers practice domestically and return up to date weights with metrics and the server aggregates the outcomes. The server may run an analysis step the place purchasers solely report metrics, with out updating the mannequin.

    In case you look contained in the generated pyproject.toml, additionally, you will see how the simulation is outlined. 

    [tool.flwr.app.components]
    serverapp = "pytorchexample.server_app:app"
    clientapp = "pytorchexample.client_app:app"

    This part tells Flower which Python objects implement the ServerApp and ClientApp. These are the entry factors Flower makes use of when it launches the federation.

    [tool.flwr.app.config]
    num-server-rounds = 3
    fraction-evaluate = 0.5
    local-epochs = 1
    learning-rate = 0.1
    batch-size = 32
    
    [tool.flwr.federations]
    default = "local-simulation"
    
    [tool.flwr.federations.local-simulation]
    choices.num-supernodes = 10

    Subsequent, these values outline the run configuration. They management what number of server rounds are executed, how lengthy every shopper trains domestically and which coaching parameters are used. These settings can be found at runtime by way of the Flower Context object.

    [tool.flwr.federations]
    default = "local-simulation"
    
    [tool.flwr.federations.local-simulation]
    choices.num-supernodes = 10

    This part defines the native simulation itself. Setting choices.num-supernodes = 10 tells Flower to create ten simulated purchasers. Every SuperNode runs one ClientApp occasion with its personal knowledge partition.

    Here’s a fast rundown of the steps talked about above.

    Now that we’ve got seen how simple it’s to run a federated simulation with Flower, we are going to apply this construction to our MNIST instance and revisit the skewed knowledge downside we noticed earlier.

    Bettering Accuracy by way of Collaborative Coaching

    Now let’s return to our MNIST instance. We noticed that the fashions skilled on particular person native datasets didn’t give good outcomes. On this part, we alter the setup in order that purchasers now collaborate by sharing mannequin updates as an alternative of working in isolation. Every dataset, nevertheless, remains to be lacking sure digits like earlier than and every shopper nonetheless trains domestically.

    The perfect half in regards to the undertaking obtained by way of simulation within the earlier part is that it could possibly now be simply tailored to our use case. I’ve taken the flower app generated in the previous section and made just a few adjustments within the client_app ,server_app and the process file. I configured the coaching to run for 3 server rounds, with all purchasers collaborating in each spherical, and every shopper coaching its native mannequin for ten native epochs. All these settings will be simply managed by way of the pyproject.toml file. The native fashions are then aggregated to a single international mannequin utilizing Federated Averaging.

    The worldwide federated mannequin achieves 95.6% total accuracy and powerful efficiency (93–97%) on all digit subsets, together with these lacking from particular person purchasers.

    Now let’s take a look at the outcomes. Do not forget that within the remoted coaching strategy, the three particular person fashions achieved an accuracy of roughly between 65 and 70%. Right here, with federated studying, we see a large soar in accuracy to round 96%. Which means the worldwide mannequin is a lot better than any of the person fashions skilled in isolation.

    This international mannequin even performs higher on the precise subsets (the digits that have been lacking from every shopper’s knowledge) and sees a soar in accuracy from beforehand 0% to between 94 and 97%. 

    In contrast to the person biased fashions, the federated international mannequin efficiently predicts all digit courses with excessive accuracy 

    The confusion matrix above corroborates this discovering. It reveals the mannequin learns how one can classify all digits correctly, even those to which it was not uncovered. We don’t see any columns that solely have zeros in them anymore and each digit class now has predictions, exhibiting that collaborative coaching enabled the mannequin to be taught the entire knowledge distribution with none single shopper accessing all digit varieties.

    Wanting on the huge image 

    Whereas it is a toy instance, it helps to supply the instinct behind why federated studying is so highly effective. This identical precept will be utilized to conditions the place knowledge is distributed throughout a number of places and can’t be centralized on account of privateness or regulatory constraints. 

    Remoted coaching retains knowledge siloed with no collaboration (left) whereas federated studying allows hospitals to coach a shared mannequin with out transferring knowledge (proper).

    As an example, if you happen to substitute the above instance with, let’s say, three hospitals, every having native knowledge, you’d see that regardless that every hospital solely has its personal restricted dataset, the general mannequin skilled by way of federated studying could be a lot better than any particular person mannequin skilled in isolation. Moreover, the information stays personal and safe in every hospital however the mannequin advantages from the collective data of all collaborating establishments. 

    Conclusion & What’s Subsequent

    That’s all for this a part of the sequence. On this article, we carried out an end-to-end Federated Studying loop with Flower, understood the assorted elements of the Flower app and in contrast machine studying with and with out collaborative studying. Within the subsequent half, we are going to discover Federated Studying from the privateness perspective. Whereas federated studying itself is an information minimization resolution because it prevents direct entry to knowledge, the mannequin updates exchanged between shopper and server can nonetheless doubtlessly result in privateness leaks. Let’s contact upon this within the subsequent half. For now, it’ll be an ideal concept to look into the official documentation.



    Source link

    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
    Editor Times Featured
    • Website

    Related Posts

    Why AI Still Can’t Solve Your Real Mathematical Optimization Problem

    May 28, 2026

    EmoNet: Speaker-Aware Transformers for Emotion Recognition — and What I’d Build Differently in 2026

    May 28, 2026

    The Infrastructure Behind Making Local LLM Agents Actually Useful

    May 28, 2026

    DiffuJudge-AV: A Diffusion-Inspired Framework for Calibrated AV Video Evaluation

    May 28, 2026

    They Requested It. I Built It. Nobody Ever Used It.

    May 27, 2026

    Learning From Pairwise Preferences: An Introduction to the Bradley Terry Model

    May 27, 2026

    Comments are closed.

    Editors Picks

    SpaceX’s Starship V3 Can’t Fly Again Until a ‘Mishap’ Is Addressed, Says FAA

    May 28, 2026

    Why AI Still Can’t Solve Your Real Mathematical Optimization Problem

    May 28, 2026

    New Titanium Multitool Offers 15 Functions

    May 28, 2026

    Zurich’s Stellar Alpina raises €3.8 million to build detonation-based propulsion for in-space mobility

    May 28, 2026
    Categories
    • Founders
    • Startups
    • Technology
    • Profiles
    • Entrepreneurs
    • Leaders
    • Students
    • VC Funds
    About Us
    About Us

    Welcome to Times Featured, an AI-driven entrepreneurship growth engine that is transforming the future of work, bridging the digital divide and encouraging younger community inclusion in the 4th Industrial Revolution, and nurturing new market leaders.

    Empowering the growth of profiles, leaders, entrepreneurs businesses, and startups on international landscape.

    Asia-Middle East-Europe-North America-Australia-Africa

    Facebook LinkedIn WhatsApp
    Featured Picks

    Super Technologies expands Sportradar partnership to power global betting growth

    March 3, 2026

    It’s Always Surreal in Philadelphia, Where Art Meets AI in a Sweeping Space

    April 5, 2026

    Stuxnet-linked Fast16 malware, designed to subvert nuclear weapons testing simulations, was likely part of a campaign to slow Iran’s nuclear ambitions (Kim Zetter/ZERO DAY)

    May 17, 2026
    Categories
    • Founders
    • Startups
    • Technology
    • Profiles
    • Entrepreneurs
    • Leaders
    • Students
    • VC Funds
    Copyright © 2024 Timesfeatured.com IP Limited. All Rights.
    • Privacy Policy
    • Disclaimer
    • Terms and Conditions
    • About us
    • Contact us

    Type above and press Enter to search. Press Esc to cancel.