MEDfl 0.1.35__tar.gz → 0.1.36__tar.gz

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.
Files changed (43) hide show
  1. MEDfl-0.1.36/MEDfl/LearningManager/__init__.py +13 -0
  2. MEDfl-0.1.36/MEDfl/NetManager/__init__.py +10 -0
  3. {MEDfl-0.1.35 → MEDfl-0.1.36}/MEDfl.egg-info/PKG-INFO +1 -1
  4. {MEDfl-0.1.35 → MEDfl-0.1.36}/PKG-INFO +1 -1
  5. {MEDfl-0.1.35 → MEDfl-0.1.36}/setup.py +1 -1
  6. MEDfl-0.1.35/MEDfl/LearningManager/__init__.py +0 -13
  7. MEDfl-0.1.35/MEDfl/NetManager/__init__.py +0 -10
  8. {MEDfl-0.1.35 → MEDfl-0.1.36}/MEDfl/LearningManager/client.py +0 -0
  9. {MEDfl-0.1.35 → MEDfl-0.1.36}/MEDfl/LearningManager/dynamicModal.py +0 -0
  10. {MEDfl-0.1.35 → MEDfl-0.1.36}/MEDfl/LearningManager/federated_dataset.py +0 -0
  11. {MEDfl-0.1.35 → MEDfl-0.1.36}/MEDfl/LearningManager/flpipeline.py +0 -0
  12. {MEDfl-0.1.35 → MEDfl-0.1.36}/MEDfl/LearningManager/model.py +0 -0
  13. {MEDfl-0.1.35 → MEDfl-0.1.36}/MEDfl/LearningManager/params.yaml +0 -0
  14. {MEDfl-0.1.35 → MEDfl-0.1.36}/MEDfl/LearningManager/params_optimiser.py +0 -0
  15. {MEDfl-0.1.35 → MEDfl-0.1.36}/MEDfl/LearningManager/plot.py +0 -0
  16. {MEDfl-0.1.35 → MEDfl-0.1.36}/MEDfl/LearningManager/server.py +0 -0
  17. {MEDfl-0.1.35 → MEDfl-0.1.36}/MEDfl/LearningManager/strategy.py +0 -0
  18. {MEDfl-0.1.35 → MEDfl-0.1.36}/MEDfl/LearningManager/utils.py +0 -0
  19. {MEDfl-0.1.35 → MEDfl-0.1.36}/MEDfl/NetManager/database_connector.py +0 -0
  20. {MEDfl-0.1.35 → MEDfl-0.1.36}/MEDfl/NetManager/dataset.py +0 -0
  21. {MEDfl-0.1.35 → MEDfl-0.1.36}/MEDfl/NetManager/flsetup.py +0 -0
  22. {MEDfl-0.1.35 → MEDfl-0.1.36}/MEDfl/NetManager/net_helper.py +0 -0
  23. {MEDfl-0.1.35 → MEDfl-0.1.36}/MEDfl/NetManager/net_manager_queries.py +0 -0
  24. {MEDfl-0.1.35 → MEDfl-0.1.36}/MEDfl/NetManager/network.py +0 -0
  25. {MEDfl-0.1.35 → MEDfl-0.1.36}/MEDfl/NetManager/node.py +0 -0
  26. {MEDfl-0.1.35 → MEDfl-0.1.36}/MEDfl/__init__.py +0 -0
  27. {MEDfl-0.1.35 → MEDfl-0.1.36}/MEDfl/scripts/__init__.py +0 -0
  28. {MEDfl-0.1.35 → MEDfl-0.1.36}/MEDfl/scripts/base.py +0 -0
  29. {MEDfl-0.1.35 → MEDfl-0.1.36}/MEDfl/scripts/create_db.py +0 -0
  30. {MEDfl-0.1.35 → MEDfl-0.1.36}/MEDfl.egg-info/SOURCES.txt +0 -0
  31. {MEDfl-0.1.35 → MEDfl-0.1.36}/MEDfl.egg-info/dependency_links.txt +0 -0
  32. {MEDfl-0.1.35 → MEDfl-0.1.36}/MEDfl.egg-info/requires.txt +0 -0
  33. {MEDfl-0.1.35 → MEDfl-0.1.36}/MEDfl.egg-info/top_level.txt +0 -0
  34. {MEDfl-0.1.35 → MEDfl-0.1.36}/README.md +0 -0
  35. {MEDfl-0.1.35 → MEDfl-0.1.36}/alembic/__init__.py +0 -0
  36. {MEDfl-0.1.35 → MEDfl-0.1.36}/alembic/env.py +0 -0
  37. {MEDfl-0.1.35 → MEDfl-0.1.36}/setup.cfg +0 -0
  38. {MEDfl-0.1.35 → MEDfl-0.1.36}/tests/test_dataset.py +0 -0
  39. {MEDfl-0.1.35 → MEDfl-0.1.36}/tests/test_federated_dataset.py +0 -0
  40. {MEDfl-0.1.35 → MEDfl-0.1.36}/tests/test_flpipeline.py +0 -0
  41. {MEDfl-0.1.35 → MEDfl-0.1.36}/tests/test_flsetup.py +0 -0
  42. {MEDfl-0.1.35 → MEDfl-0.1.36}/tests/test_network.py +0 -0
  43. {MEDfl-0.1.35 → MEDfl-0.1.36}/tests/test_node.py +0 -0
@@ -0,0 +1,13 @@
1
+ # MEDfl/LearningManager/__init__.py
2
+
3
+ # Import modules from this package
4
+ # from .client import *
5
+ # from .dynamicModal import *
6
+ # from .flpipeline import *
7
+ # from .federated_dataset import *
8
+ # from .model import *
9
+ # from .params_optimiser import *
10
+ # from .plot import *
11
+ # from .server import *
12
+ # from .strategy import *
13
+ # from .utils import *
@@ -0,0 +1,10 @@
1
+ # # MEDfl/NetworkManager/__init__.py
2
+
3
+ # # Import modules from this package
4
+ # from .dataset import *
5
+ # from .flsetup import *
6
+ # from .net_helper import *
7
+ # from .net_manager_queries import *
8
+ # from .network import *
9
+ # from .node import *
10
+ # from .database_connector import *
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: MEDfl
3
- Version: 0.1.35
3
+ Version: 0.1.36
4
4
  Summary: Python Open-source package for simulating federated learning and differential privacy
5
5
  Home-page: https://github.com/MEDomics-UdeS/MEDfl
6
6
  Author: MEDomics consortium
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: MEDfl
3
- Version: 0.1.35
3
+ Version: 0.1.36
4
4
  Summary: Python Open-source package for simulating federated learning and differential privacy
5
5
  Home-page: https://github.com/MEDomics-UdeS/MEDfl
6
6
  Author: MEDomics consortium
@@ -14,7 +14,7 @@ with open('requirements.txt') as f:
14
14
 
15
15
  setup(
16
16
  name="MEDfl",
17
- version="0.1.35",
17
+ version="0.1.36",
18
18
  author="MEDomics consortium",
19
19
  author_email="medomics.info@gmail.com",
20
20
  description="Python Open-source package for simulating federated learning and differential privacy",
@@ -1,13 +0,0 @@
1
- # MEDfl/LearningManager/__init__.py
2
-
3
- # Import modules from this package
4
- from .client import *
5
- from .dynamicModal import *
6
- from .flpipeline import *
7
- from .federated_dataset import *
8
- from .model import *
9
- from .params_optimiser import *
10
- from .plot import *
11
- from .server import *
12
- from .strategy import *
13
- from .utils import *
@@ -1,10 +0,0 @@
1
- # # MEDfl/NetworkManager/__init__.py
2
-
3
- # # Import modules from this package
4
- from .dataset import *
5
- from .flsetup import *
6
- from .net_helper import *
7
- from .net_manager_queries import *
8
- from .network import *
9
- from .node import *
10
- from .database_connector import *
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes