├── .gitignore ├── README.md ├── client.py ├── coral.py ├── create_csv.py ├── global_model └── Global_CNN.pt ├── main.py ├── model.py ├── server.py └── util.py /.gitignore: -------------------------------------------------------------------------------- 1 | data/* 2 | __pycache__/ 3 | client_model/* -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mania087/HAR-Federated-Transfer-Learning-in-Pytorch/HEAD/README.md -------------------------------------------------------------------------------- /client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mania087/HAR-Federated-Transfer-Learning-in-Pytorch/HEAD/client.py -------------------------------------------------------------------------------- /coral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mania087/HAR-Federated-Transfer-Learning-in-Pytorch/HEAD/coral.py -------------------------------------------------------------------------------- /create_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mania087/HAR-Federated-Transfer-Learning-in-Pytorch/HEAD/create_csv.py -------------------------------------------------------------------------------- /global_model/Global_CNN.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mania087/HAR-Federated-Transfer-Learning-in-Pytorch/HEAD/global_model/Global_CNN.pt -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mania087/HAR-Federated-Transfer-Learning-in-Pytorch/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mania087/HAR-Federated-Transfer-Learning-in-Pytorch/HEAD/model.py -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mania087/HAR-Federated-Transfer-Learning-in-Pytorch/HEAD/server.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mania087/HAR-Federated-Transfer-Learning-in-Pytorch/HEAD/util.py --------------------------------------------------------------------------------