├── DP-FedNESAM.zip ├── DP_new.py ├── README.md ├── dirichlet_data.py ├── model.py ├── models ├── VGG.py ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── basic.cpython-38.pyc │ ├── resnet.cpython-38.pyc │ └── resnet_bn.cpython-38.pyc ├── basic.py ├── mlp_head.py ├── resnet.py └── resnet_bn.py ├── optimizer ├── LESAM.py ├── SAM.py └── __init__.py └── vit_model.py /DP-FedNESAM.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junkangLiu0/DP-FedNESAM/HEAD/DP-FedNESAM.zip -------------------------------------------------------------------------------- /DP_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junkangLiu0/DP-FedNESAM/HEAD/DP_new.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junkangLiu0/DP-FedNESAM/HEAD/README.md -------------------------------------------------------------------------------- /dirichlet_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junkangLiu0/DP-FedNESAM/HEAD/dirichlet_data.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junkangLiu0/DP-FedNESAM/HEAD/model.py -------------------------------------------------------------------------------- /models/VGG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junkangLiu0/DP-FedNESAM/HEAD/models/VGG.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junkangLiu0/DP-FedNESAM/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junkangLiu0/DP-FedNESAM/HEAD/models/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/basic.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junkangLiu0/DP-FedNESAM/HEAD/models/__pycache__/basic.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/resnet.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junkangLiu0/DP-FedNESAM/HEAD/models/__pycache__/resnet.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/resnet_bn.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junkangLiu0/DP-FedNESAM/HEAD/models/__pycache__/resnet_bn.cpython-38.pyc -------------------------------------------------------------------------------- /models/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junkangLiu0/DP-FedNESAM/HEAD/models/basic.py -------------------------------------------------------------------------------- /models/mlp_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junkangLiu0/DP-FedNESAM/HEAD/models/mlp_head.py -------------------------------------------------------------------------------- /models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junkangLiu0/DP-FedNESAM/HEAD/models/resnet.py -------------------------------------------------------------------------------- /models/resnet_bn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junkangLiu0/DP-FedNESAM/HEAD/models/resnet_bn.py -------------------------------------------------------------------------------- /optimizer/LESAM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junkangLiu0/DP-FedNESAM/HEAD/optimizer/LESAM.py -------------------------------------------------------------------------------- /optimizer/SAM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junkangLiu0/DP-FedNESAM/HEAD/optimizer/SAM.py -------------------------------------------------------------------------------- /optimizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junkangLiu0/DP-FedNESAM/HEAD/optimizer/__init__.py -------------------------------------------------------------------------------- /vit_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junkangLiu0/DP-FedNESAM/HEAD/vit_model.py --------------------------------------------------------------------------------