├── .gitignore ├── README.md ├── __init__.py ├── distributed_sgd.py ├── inference_attack.py ├── load_lfw.py └── split_data.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csong27/property-inference-collaborative-ml/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csong27/property-inference-collaborative-ml/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /distributed_sgd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csong27/property-inference-collaborative-ml/HEAD/distributed_sgd.py -------------------------------------------------------------------------------- /inference_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csong27/property-inference-collaborative-ml/HEAD/inference_attack.py -------------------------------------------------------------------------------- /load_lfw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csong27/property-inference-collaborative-ml/HEAD/load_lfw.py -------------------------------------------------------------------------------- /split_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csong27/property-inference-collaborative-ml/HEAD/split_data.py --------------------------------------------------------------------------------