Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,40 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Breaking DataMix – Pretrained Models
|
| 2 |
+
|
| 3 |
+
This repository provides pretrained models used in our study on inversion attacks against DataMix.
|
| 4 |
+
|
| 5 |
+
## Overview
|
| 6 |
+
|
| 7 |
+
The models are based on a ResNet-18 architecture and are trained on a mixed version of the CelebA dataset.
|
| 8 |
+
They are specifically designed for evaluating privacy vulnerabilities and recovering private mixing coefficients via inversion attacks.
|
| 9 |
+
|
| 10 |
+
For full details about the methodology, training setup, and data preprocessing, please refer to the main project repository:
|
| 11 |
+
|
| 12 |
+
👉 https://github.com/hehteram/Breaking-DataMix
|
| 13 |
+
|
| 14 |
+
## Contents
|
| 15 |
+
|
| 16 |
+
* Pretrained model checkpoints (.pth)
|
| 17 |
+
* Variants corresponding to different experimental settings
|
| 18 |
+
|
| 19 |
+
## Usage
|
| 20 |
+
|
| 21 |
+
```python
|
| 22 |
+
from huggingface_hub import hf_hub_download
|
| 23 |
+
import torch
|
| 24 |
+
|
| 25 |
+
path = hf_hub_download(
|
| 26 |
+
repo_id="hehteram/Breaking-DataMix",
|
| 27 |
+
filename="models/model.pth"
|
| 28 |
+
)
|
| 29 |
+
|
| 30 |
+
model.load_state_dict(torch.load(path))
|
| 31 |
+
```
|
| 32 |
+
|
| 33 |
+
## Notes
|
| 34 |
+
|
| 35 |
+
* These models are provided for research and reproducibility purposes only.
|
| 36 |
+
* The dataset used is derived from CelebA with specific modifications (see project repository for details).
|
| 37 |
+
|
| 38 |
+
## License
|
| 39 |
+
|
| 40 |
+
Please refer to the main GitHub repository for licensing and usage terms.
|