FedAO (Federated Learning All in One) is a toolbox for federated learning, aiming to provide implementations of FedAvg[1], FedProx[2], Ditto[3], etc. in multiple versions, such as Pytorch/Tensorflow, single-machine/distributed, synchronized/asynchronous.
If you are not familiar with distributed machine learning / federated learning, you can first read my blog εεΈεΌζΊε¨ε¦δΉ γθι¦ε¦δΉ γε€ζΊθ½δ½ηεΊε«εθη³» to learn prerequisite knowledge (#^.^#)~. The objective function of federated learning is as follows:
where
where
Note that after we split the dataset according to Dirichlet distribution (first used by TMH Hsu et al.[4]) or pathological non-IID splitting (first used in the FedAvg[1] original paper), we then split the training/validation/test set locally according to the ratio given by the user. In addition to weighting the model parameters according to the number of local training set samples in the aggregation stage, the local validation/test results of the model are also weighted according to the number of local validation/test set samples in the validation/testing stage to obtain the global validation/test results of the model.
For a detailed introduction to the dataset-splitting method in federated learning, please refer to my blog θι¦ε¦δΉ οΌζDirichletεεΈεεNon-IIDζ ·ζ¬ and θι¦ε¦δΉ οΌζη ζιη¬η«εεεΈεεNon-IIDζ ·ζ¬.
This project involves two different frameworks, Pytorch and Tensorflow. Their environmental requirements are different. You can install the corresponding Anaconda environment by yourself.
-
Pytorch The Python version involving Pytorch code is 3.8.13, and the remaining dependencies are as follows:
numpy==1.22.3 tqdm matplotlib scikit-learn==1.1.1 pytorch==1.7.1
-
Tensorflow The Python version involved in the Tensorflow code is 3.8.15, and my CUDA version is 11. Because Tensorflow 1.15 only supports Python 3.7 and CUDA 10, I used the following command to install Tensorflow 1.15 on CUDA 11:
pip install --upgrade pip pip install nvidia-pyindex pip install nvidia-tensorflow[horovod] pip install nvidia-tensorboard==1.15
In addition to Tensorflow, the remaining dependencies are as follows:
numpy==1.20.0 tqdm matplotlib scikit-learn==1.2.0
This project uses the built-in datasets in Torchvision and Keras, which will be automatically downloaded and loaded in the code, without manual downloading. Pytorch code supports EMNIST
, FashionMNIST
, CIFAR10
, and CIFAR100
datasets and Tensorflow code supports CIFAR10
, CIFAR100
datasets (If you are in mainland China, Keras's EMNIST
and FashionMNIST
datasets need to be downloaded over the GFW. You can use a "ladder" or download them manually and read them offline).
The Torchvision dataset is stored in the data
directory of the current code running path after downloaded, and the Keras dataset is stored in the ~/.keras/datasets
directory after downloaded.
The dataset can be split in two different ways: Dirichlet distribution (first used by TMH Hsu et al.[4]) and pathological non-IID splitting (first used in the FedAvg[1] original paper).
The display of the CIFAR10 dataset splitted according to Dirichlet distribution (
The display of the CIFAR10 dataset split according to pathological non-IID splitting (each client contains
FedAO
βββ data_utils Data preprocessing utilities
βΒ Β βββ __init__.py Package initialization file
βΒ Β βββ data_split.py Code for splitting the dataset
βΒ Β βββ plot.py Code for displaying the dataset
βββ fed_multiprocess_syn Single-machine, multi-process and synchronized implementation (in Pytorch)
βΒ Β βββ client.py Client-side local training and validation module
βΒ Β βββ fl.py The overall process of federated learning (including communication, etc.)
βΒ Β βββ main.py Main function, including the overall data pipeline
βΒ Β βββ model.py Model architecture
βΒ Β βββ server.py Server-side model aggregation
βΒ Β βββ subset.py Customized Pytorch dataset
βΒ Β βββ utils.py Utilities for dataset loading etc.
βββ fed_pytorch Single-machine, serial implementation (in Pytorch)
βΒ Β βββ ...
βββ fed_RPC_asyn Distributed, asynchronous implementation (in Pytorch)
βΒ Β βββ ...
βββfed_tf Single-machine, serial implementation (in Tensorflow)
βββ ...
You can first enter the corresponding path and then run main.py
to train/validate/test the model. For example:
cd fed_pytorch
python main.py \
--dataset CIFAR10 \
--n_clients 10 \
--rounds 200 \
--local_epochs 1 \
--fed_method FedAvg
The --dataset
parameter is used to specify the dataset, the --n_clients
parameter is used to specify the number of clients, --rounds
is used to specify the number of global training rounds, and --local_epochs
is used to specify the number of local epochs, the --fed_method
parameter is used to specify the federated learning method used.
After the training is completed, you can view the training/validation/testing logs in the log
directory of the code running path. In addition, the display of the dataset splitting is also stored in the log
directory, and you can check it out.
If you need to use FedProx for training, you can use the following command:
cd fed_pytorch
python main.py \
--dataset CIFAR10 \
--n_clients 10 \
--rounds 200 \
--local_epochs 1 \
--fed_method FedProx \
--mu 0.01
There is an additional parameter --mu
, which represents the coefficient of the proximal regularization term in FedProx. The meaning of the remaining parameters is the same as that of the Pytorch single-machine serial implementation, and will not be described here.
If you need to use Ditto for training, you can use the following command:
cd fed_pytorch
python main.py \
--dataset CIFAR10 \
--n_clients 10 \
--rounds 200 \
--local_epochs 1 \
--fed_method Ditto \
--lam 0.1
There is also an additional parameter --lam
, which represents the coefficient of the proximal regularization term in Ditto. The meaning of the remaining parameters is the same as that of the Pytorch single-machine serial implementation, and will not be described here.
Similarly, first, enter the corresponding path, and then run main.py
to train/validate/test the model. For example:
cd fed_tf
python main.py \
--dataset CIFAR10 \
--n_clients 10 \
--rounds 200 \
--local_epochs 1 \
--fed_method FedAvg
The meaning of the parameters is the same as that of the Pytorch single-machine serial implementation, and will not be described again here.
Similarly, first, enter the corresponding path, and then run main.py
to train/validate/test the model. For example:
cd fed_multiprocess_syn
python main.py \
--dataset CIFAR10 \
--n_clients 10 \
--rounds 200 \
--local_epochs 1 \
--fed_method FedAvg
The meaning of the parameters is the same as that of the Pytorch single-machine serial implementation, and will not be described again here. However, it should be noted that in our implementation, one process corresponds to one client, so it is better not to set the number of clients too large, otherwise, it may affect the parallel efficiency and make the parallel implementation the same as the serial version.
Similarly, first, enter the corresponding path, and then run main.py
to train/validate/test the model. For example:
cd fed_RPC_asyn
python main.py \
--dataset CIFAR10 \
--n_clients 10 \
--rounds 200 \
--local_epochs 1 \
--lam 0.5 \
--fed_method FedAvg
The meaning of the parameters here is the same as before, but there is an additional parameter n_clients + 1
, the process with rank 0 is the master, and the rest are workers. The IP address of the master process is localhost
, the port number is 29500
, and RPC is used to communicate between the master process and the worker processes.
[1] McMahan B, Moore E, Ramage D, et al. Communication-efficient learning of deep networks from decentralized data[C]//Artificial intelligence and statistics. PMLR, 2017: 1273-1282.
[2] Li T, Sahu A K, Zaheer M, et al. Federated optimization in heterogeneous networks[J]. Proceedings of Machine learning and systems, 2020, 2: 429-450.
[3] Li T, Hu S, Beirami A, et al. Ditto: Fair and robust federated learning through personalization[C]//International Conference on Machine Learning. PMLR, 2021: 6357-6368.
[4] Hsu T M H, Qi H, Brown M. Measuring the effects of non-identical data distribution for federated visual classification[J]. arXiv preprint arXiv:1909.06335, 2019.