esnfed 1.0.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.
- esnfed/__init__.py +31 -0
- esnfed/data/ted_spread.csv +8854 -0
- esnfed/datasets.py +270 -0
- esnfed/esn.py +195 -0
- esnfed/federated.py +296 -0
- esnfed/interop.py +109 -0
- esnfed/metrics.py +38 -0
- esnfed/py.typed +0 -0
- esnfed/topologies.py +132 -0
- esnfed-1.0.0.dist-info/METADATA +187 -0
- esnfed-1.0.0.dist-info/RECORD +13 -0
- esnfed-1.0.0.dist-info/WHEEL +4 -0
- esnfed-1.0.0.dist-info/licenses/LICENSE +21 -0
esnfed/__init__.py
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"""esnfed - Echo State Networks for Federated Learning.
|
|
2
|
+
|
|
3
|
+
A small, dependency-light research library accompanying the Final Degree Project
|
|
4
|
+
*Ensemble of Recurrent Networks for Federated Learning* (ETSINF, UPV).
|
|
5
|
+
|
|
6
|
+
Modules
|
|
7
|
+
-------
|
|
8
|
+
esn Echo State Network (reservoir + ridge readout).
|
|
9
|
+
topologies Reservoir topology generators (random, small-world, scale-free, ring).
|
|
10
|
+
datasets Benchmark sequential tasks (NARMA-10, Mackey-Glass, Lorenz, sine).
|
|
11
|
+
metrics Error metrics (NRMSE, MSE, memory capacity).
|
|
12
|
+
federated Federated strategies (FedAvg, exact federated ridge, ensemble, alignment).
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
from .esn import EchoStateNetwork
|
|
16
|
+
from .metrics import nrmse, mse, rmse
|
|
17
|
+
from . import topologies, datasets, federated, metrics, interop
|
|
18
|
+
|
|
19
|
+
__all__ = [
|
|
20
|
+
"EchoStateNetwork",
|
|
21
|
+
"nrmse",
|
|
22
|
+
"mse",
|
|
23
|
+
"rmse",
|
|
24
|
+
"topologies",
|
|
25
|
+
"datasets",
|
|
26
|
+
"federated",
|
|
27
|
+
"metrics",
|
|
28
|
+
"interop",
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
__version__ = "1.0.0"
|