You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-30Lines changed: 3 additions & 30 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,5 @@
1
1
# FLGo: A Lightning Framework for Federated Learning
2
2
3
-
This repository is PyTorch implementation for the IJCAI-21 paper [Federated Learning with Fair Averaging](https://fanxlxmu.github.io/publication/ijcai2021/).
4
-
5
3
Our FLGo is a strong and reusable experimental platform for research on federated learning (FL) algorithm, which has provided a few easy-to-use modules to hold out for those who want to do various federated learning experiments.
6
4
7
5
## Table of Contents
@@ -15,7 +13,7 @@ Our FLGo is a strong and reusable experimental platform for research on federate
To divide the dataset using different partitions, make the following changes to the contents of the gen_config.yml file:
38
-
```
39
-
# I.I.D.
40
-
partitioner:
41
-
name: IIDPartitioner
42
-
para:
43
-
num_clients: 100
44
-
45
-
# Imbalace & dirichlet
46
-
partitioner:
47
-
name: DirichletPartitioner
48
-
para:
49
-
num_clients: 100
50
-
imbalance: 0.1
51
-
alpha: 0.1
52
-
```
53
34
54
35
### Options
55
36
@@ -152,23 +133,15 @@ We seperate the FL system into four parts:`algorithm`, `benchmark`, `experiment`
152
133
│ ├─ analyzer.py //the class for analyzing and printing experimental results
153
134
│ ├─ res_config.yml //hyperparameter file of analyzer.py
154
135
│ ├─ run_config.yml //hyperparameter file of runner.py
155
-
| └─ runner.py //the class for generating experimental commands based on hyperparameter combinations and processor scheduling for all experimental commands
0 commit comments