python-fedci 0.1.5__py3-none-any.whl → 0.2.0__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.
- fedci/__init__.py +37 -4
- fedci/client.py +346 -793
- fedci/computing.py +279 -0
- fedci/env.py +1 -7
- fedci/masking.py +103 -0
- fedci/modeling.py +309 -0
- fedci/network.py +170 -0
- fedci/results.py +210 -0
- fedci/server.py +249 -286
- fedci/testing.py +127 -553
- fedci/utils.py +79 -33
- python_fedci-0.2.0.dist-info/METADATA +319 -0
- python_fedci-0.2.0.dist-info/RECORD +16 -0
- {python_fedci-0.1.5.dist-info → python_fedci-0.2.0.dist-info}/licenses/LICENSE +0 -0
- python_fedci-0.1.5.dist-info/METADATA +0 -690
- python_fedci-0.1.5.dist-info/RECORD +0 -11
- {python_fedci-0.1.5.dist-info → python_fedci-0.2.0.dist-info}/WHEEL +0 -0
- {python_fedci-0.1.5.dist-info → python_fedci-0.2.0.dist-info}/top_level.txt +0 -0
fedci/__init__.py
CHANGED
|
@@ -1,4 +1,37 @@
|
|
|
1
|
-
from .
|
|
2
|
-
from .
|
|
3
|
-
from .
|
|
4
|
-
from .
|
|
1
|
+
from fedci.client import Client
|
|
2
|
+
from fedci.server import Server
|
|
3
|
+
from fedci.network import NetworkClient, connect_client, serve_client
|
|
4
|
+
from fedci.results import (
|
|
5
|
+
LRTResult,
|
|
6
|
+
SymmetricLRTResult,
|
|
7
|
+
TestResult,
|
|
8
|
+
RepeatedTestResult,
|
|
9
|
+
)
|
|
10
|
+
from fedci.utils import (
|
|
11
|
+
VariableType,
|
|
12
|
+
ModelType,
|
|
13
|
+
HeterogenietyType,
|
|
14
|
+
ModelConfiguration,
|
|
15
|
+
GAMConfiguration,
|
|
16
|
+
)
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
# Core
|
|
20
|
+
"Client",
|
|
21
|
+
"Server",
|
|
22
|
+
# Networking
|
|
23
|
+
"NetworkClient",
|
|
24
|
+
"connect_client",
|
|
25
|
+
"serve_client",
|
|
26
|
+
# Results
|
|
27
|
+
"LRTResult",
|
|
28
|
+
"SymmetricLRTResult",
|
|
29
|
+
"TestResult",
|
|
30
|
+
"RepeatedTestResult",
|
|
31
|
+
# Configuration
|
|
32
|
+
"VariableType",
|
|
33
|
+
"ModelType",
|
|
34
|
+
"HeterogenietyType",
|
|
35
|
+
"ModelConfiguration",
|
|
36
|
+
"GAMConfiguration",
|
|
37
|
+
]
|