├── LICENSE ├── README.md ├── data └── placeholder.html ├── logs ├── events.out.tfevents.1674669962.LAPTOP-CGJUI4TT ├── events.out.tfevents.1674670128.LAPTOP-CGJUI4TT └── events.out.tfevents.1674670347.LAPTOP-CGJUI4TT ├── requirements.txt ├── save ├── hierFed_mnist_10_acc.png └── hierFed_mnist_10_loss.png └── src ├── __pycache__ ├── LSTM_update.cpython-37.pyc ├── LSTM_update.cpython-39.pyc ├── create_hierarchy.cpython-37.pyc ├── create_hierarchy.cpython-39.pyc ├── models.cpython-37.pyc ├── models.cpython-39.pyc ├── options.cpython-37.pyc ├── options.cpython-39.pyc ├── sampling.cpython-37.pyc ├── sampling.cpython-39.pyc ├── update.cpython-37.pyc ├── update.cpython-39.pyc ├── utils.cpython-37.pyc └── utils.cpython-39.pyc ├── baseline_main.py ├── create_hierarchy.py ├── federated_main.py ├── hier_fed_main.py ├── models.py ├── options.py ├── sampling.py ├── update.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asrua/Hierarchical-Federated-Learning-PyTorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asrua/Hierarchical-Federated-Learning-PyTorch/HEAD/README.md -------------------------------------------------------------------------------- /data/placeholder.html: -------------------------------------------------------------------------------- 1 | this is just a placeholder 2 | -------------------------------------------------------------------------------- /logs/events.out.tfevents.1674669962.LAPTOP-CGJUI4TT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asrua/Hierarchical-Federated-Learning-PyTorch/HEAD/logs/events.out.tfevents.1674669962.LAPTOP-CGJUI4TT -------------------------------------------------------------------------------- /logs/events.out.tfevents.1674670128.LAPTOP-CGJUI4TT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asrua/Hierarchical-Federated-Learning-PyTorch/HEAD/logs/events.out.tfevents.1674670128.LAPTOP-CGJUI4TT -------------------------------------------------------------------------------- /logs/events.out.tfevents.1674670347.LAPTOP-CGJUI4TT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asrua/Hierarchical-Federated-Learning-PyTorch/HEAD/logs/events.out.tfevents.1674670347.LAPTOP-CGJUI4TT -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asrua/Hierarchical-Federated-Learning-PyTorch/HEAD/requirements.txt -------------------------------------------------------------------------------- /save/hierFed_mnist_10_acc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asrua/Hierarchical-Federated-Learning-PyTorch/HEAD/save/hierFed_mnist_10_acc.png -------------------------------------------------------------------------------- /save/hierFed_mnist_10_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asrua/Hierarchical-Federated-Learning-PyTorch/HEAD/save/hierFed_mnist_10_loss.png -------------------------------------------------------------------------------- /src/__pycache__/LSTM_update.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asrua/Hierarchical-Federated-Learning-PyTorch/HEAD/src/__pycache__/LSTM_update.cpython-37.pyc -------------------------------------------------------------------------------- /src/__pycache__/LSTM_update.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asrua/Hierarchical-Federated-Learning-PyTorch/HEAD/src/__pycache__/LSTM_update.cpython-39.pyc -------------------------------------------------------------------------------- /src/__pycache__/create_hierarchy.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asrua/Hierarchical-Federated-Learning-PyTorch/HEAD/src/__pycache__/create_hierarchy.cpython-37.pyc -------------------------------------------------------------------------------- /src/__pycache__/create_hierarchy.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asrua/Hierarchical-Federated-Learning-PyTorch/HEAD/src/__pycache__/create_hierarchy.cpython-39.pyc -------------------------------------------------------------------------------- /src/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asrua/Hierarchical-Federated-Learning-PyTorch/HEAD/src/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /src/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asrua/Hierarchical-Federated-Learning-PyTorch/HEAD/src/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /src/__pycache__/options.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asrua/Hierarchical-Federated-Learning-PyTorch/HEAD/src/__pycache__/options.cpython-37.pyc -------------------------------------------------------------------------------- /src/__pycache__/options.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asrua/Hierarchical-Federated-Learning-PyTorch/HEAD/src/__pycache__/options.cpython-39.pyc -------------------------------------------------------------------------------- /src/__pycache__/sampling.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asrua/Hierarchical-Federated-Learning-PyTorch/HEAD/src/__pycache__/sampling.cpython-37.pyc -------------------------------------------------------------------------------- /src/__pycache__/sampling.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asrua/Hierarchical-Federated-Learning-PyTorch/HEAD/src/__pycache__/sampling.cpython-39.pyc -------------------------------------------------------------------------------- /src/__pycache__/update.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asrua/Hierarchical-Federated-Learning-PyTorch/HEAD/src/__pycache__/update.cpython-37.pyc -------------------------------------------------------------------------------- /src/__pycache__/update.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asrua/Hierarchical-Federated-Learning-PyTorch/HEAD/src/__pycache__/update.cpython-39.pyc -------------------------------------------------------------------------------- /src/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asrua/Hierarchical-Federated-Learning-PyTorch/HEAD/src/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /src/__pycache__/utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asrua/Hierarchical-Federated-Learning-PyTorch/HEAD/src/__pycache__/utils.cpython-39.pyc -------------------------------------------------------------------------------- /src/baseline_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asrua/Hierarchical-Federated-Learning-PyTorch/HEAD/src/baseline_main.py -------------------------------------------------------------------------------- /src/create_hierarchy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asrua/Hierarchical-Federated-Learning-PyTorch/HEAD/src/create_hierarchy.py -------------------------------------------------------------------------------- /src/federated_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asrua/Hierarchical-Federated-Learning-PyTorch/HEAD/src/federated_main.py -------------------------------------------------------------------------------- /src/hier_fed_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asrua/Hierarchical-Federated-Learning-PyTorch/HEAD/src/hier_fed_main.py -------------------------------------------------------------------------------- /src/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asrua/Hierarchical-Federated-Learning-PyTorch/HEAD/src/models.py -------------------------------------------------------------------------------- /src/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asrua/Hierarchical-Federated-Learning-PyTorch/HEAD/src/options.py -------------------------------------------------------------------------------- /src/sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asrua/Hierarchical-Federated-Learning-PyTorch/HEAD/src/sampling.py -------------------------------------------------------------------------------- /src/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asrua/Hierarchical-Federated-Learning-PyTorch/HEAD/src/update.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asrua/Hierarchical-Federated-Learning-PyTorch/HEAD/src/utils.py --------------------------------------------------------------------------------