├── .idea ├── .gitignore ├── NIPS2022_EP_BNP.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md ├── data.py ├── defense.py ├── models ├── __init__.py └── resnet.py ├── test.py ├── train.py └── utils.py /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/NIPS2022_EP_BNP.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJ-T/NIPS2022_EP_BNP/HEAD/.idea/NIPS2022_EP_BNP.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJ-T/NIPS2022_EP_BNP/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJ-T/NIPS2022_EP_BNP/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJ-T/NIPS2022_EP_BNP/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJ-T/NIPS2022_EP_BNP/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJ-T/NIPS2022_EP_BNP/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJ-T/NIPS2022_EP_BNP/HEAD/README.md -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJ-T/NIPS2022_EP_BNP/HEAD/data.py -------------------------------------------------------------------------------- /defense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJ-T/NIPS2022_EP_BNP/HEAD/defense.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJ-T/NIPS2022_EP_BNP/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJ-T/NIPS2022_EP_BNP/HEAD/models/resnet.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJ-T/NIPS2022_EP_BNP/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJ-T/NIPS2022_EP_BNP/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJ-T/NIPS2022_EP_BNP/HEAD/utils.py --------------------------------------------------------------------------------