MEDfl 2.0.1__py3-none-any.whl → 2.0.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- MEDfl/rw/__init__.py +0 -0
- MEDfl/rw/rwConfig.py +21 -0
- {medfl-2.0.1.dist-info → medfl-2.0.2.dist-info}/METADATA +1 -1
- {medfl-2.0.1.dist-info → medfl-2.0.2.dist-info}/RECORD +7 -5
- {medfl-2.0.1.dist-info → medfl-2.0.2.dist-info}/WHEEL +0 -0
- {medfl-2.0.1.dist-info → medfl-2.0.2.dist-info}/licenses/LICENSE +0 -0
- {medfl-2.0.1.dist-info → medfl-2.0.2.dist-info}/top_level.txt +0 -0
MEDfl/rw/__init__.py
ADDED
File without changes
|
MEDfl/rw/rwConfig.py
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
from dataclasses import dataclass
|
2
|
+
|
3
|
+
@dataclass
|
4
|
+
class RealWorldConfig:
|
5
|
+
"""
|
6
|
+
Configuration pour un déploiement fédéré en « real world ».
|
7
|
+
|
8
|
+
Attributes:
|
9
|
+
server_address: Adresse et port du serveur Flower (ex: "0.0.0.0:8080").
|
10
|
+
num_rounds: Nombre total de tours (rounds) de fédération.
|
11
|
+
fraction_fit: Fraction des clients participant à la phase de fit chaque round.
|
12
|
+
fraction_eval: Fraction des clients participant à la phase d'évaluation chaque round.
|
13
|
+
min_fit_clients: Nombre minimum de clients requis pour lancer la phase de fit.
|
14
|
+
min_eval_clients: Nombre minimum de clients requis pour la phase d'évaluation.
|
15
|
+
"""
|
16
|
+
server_address: str
|
17
|
+
num_rounds: int
|
18
|
+
fraction_fit: float
|
19
|
+
fraction_eval: float
|
20
|
+
min_fit_clients: int
|
21
|
+
min_eval_clients: int
|
@@ -19,6 +19,8 @@ MEDfl/NetManager/net_helper.py,sha256=tyfxmpbleSdfPfo2ezKT0VOvZu660v9nhBuHCpl8pG
|
|
19
19
|
MEDfl/NetManager/net_manager_queries.py,sha256=j-CLQPjtTLyZuFPhIcwJStD7L7xtZpkmkhe_h3pDuTs,4086
|
20
20
|
MEDfl/NetManager/network.py,sha256=5t705fzWc-BRg-QPAbAcDv5ckDGzsPwj_Q5V0iTgkx0,6829
|
21
21
|
MEDfl/NetManager/node.py,sha256=t90QuYZ8M1X_AG1bwTta0CnlOuodqkmpVda2K7NOgHc,6542
|
22
|
+
MEDfl/rw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
23
|
+
MEDfl/rw/rwConfig.py,sha256=nK3Inv7v7Dm9gZnUnK5EqA4DmQ7TqiH4UoCZ8MlgFjA,823
|
22
24
|
MEDfl/scripts/__init__.py,sha256=Pq1weevsPaU7MRMHfBYeyT0EOFeWLeVM6Y1DVz6jw1A,48
|
23
25
|
MEDfl/scripts/base.py,sha256=QrmG7gkiPYkAy-5tXxJgJmOSLGAKeIVH6i0jq7G9xnA,752
|
24
26
|
MEDfl/scripts/create_db.py,sha256=MnFtZkTueRZ-3qXPNX4JsXjOKj-4mlkxoRhSFdRcvJw,3817
|
@@ -48,8 +50,8 @@ Medfl/scripts/base.py,sha256=QrmG7gkiPYkAy-5tXxJgJmOSLGAKeIVH6i0jq7G9xnA,752
|
|
48
50
|
Medfl/scripts/create_db.py,sha256=MnFtZkTueRZ-3qXPNX4JsXjOKj-4mlkxoRhSFdRcvJw,3817
|
49
51
|
alembic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
50
52
|
alembic/env.py,sha256=-aSZ6SlJeK1ZeqHgM-54hOi9LhJRFP0SZGjut-JnY-4,1588
|
51
|
-
medfl-2.0.
|
52
|
-
medfl-2.0.
|
53
|
-
medfl-2.0.
|
54
|
-
medfl-2.0.
|
55
|
-
medfl-2.0.
|
53
|
+
medfl-2.0.2.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
54
|
+
medfl-2.0.2.dist-info/METADATA,sha256=h87nlycqqfnPJHcdgGsi9i7g2v5ylhmnnmC2eA4ffQ8,4579
|
55
|
+
medfl-2.0.2.dist-info/WHEEL,sha256=lTU6B6eIfYoiQJTZNc-fyaR6BpL6ehTzU3xGYxn2n8k,91
|
56
|
+
medfl-2.0.2.dist-info/top_level.txt,sha256=dIL9X8HOFuaVSzpg40DVveDPrymWRoShHtspH7kkjdI,14
|
57
|
+
medfl-2.0.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|