Update README.md
Browse files
README.md
CHANGED
|
@@ -5,6 +5,7 @@ size_categories:
|
|
| 5 |
---
|
| 6 |
Dataset for the evaluation of data-unlearning techniques using KLOM (KL-divergence of Margins).
|
| 7 |
|
|
|
|
| 8 |
KLOM works by:
|
| 9 |
1. training N models (original models)
|
| 10 |
2. Training N fully-retrained models (oracles) on forget set F
|
|
@@ -12,24 +13,14 @@ KLOM works by:
|
|
| 12 |
4. Comparing the outputs of the unlearned models from the retrained models on different points
|
| 13 |
(specifically, computing the KL divergence between the distribution of _margins_ of oracle models and distribution of _margins_ of the unlearned models)
|
| 14 |
|
| 15 |
-
Originally proposed in the work Attribute-to-Delete: Machine Unlearning via Datamodel Matching (https://arxiv.org/abs/2410.23232).
|
| 16 |
|
| 17 |
-
Outline of how KLOM works
|
| 18 |

|
| 19 |
|
| 20 |
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
@misc{georgiev2024attributetodeletemachineunlearningdatamodel,
|
| 24 |
-
title={Attribute-to-Delete: Machine Unlearning via Datamodel Matching},
|
| 25 |
-
author={Kristian Georgiev and Roy Rinberg and Sung Min Park and Shivam Garg and Andrew Ilyas and Aleksander Madry and Seth Neel},
|
| 26 |
-
year={2024},
|
| 27 |
-
eprint={2410.23232},
|
| 28 |
-
archivePrefix={arXiv},
|
| 29 |
-
primaryClass={cs.LG},
|
| 30 |
-
url={https://arxiv.org/abs/2410.23232},
|
| 31 |
-
}
|
| 32 |
-
```
|
| 33 |
|
| 34 |
# Structure of Data
|
| 35 |
|
|
@@ -84,4 +75,19 @@ git checkout main
|
|
| 84 |
Example how to run script:
|
| 85 |
```
|
| 86 |
bash download_folder.sh oracles/CIFAR10/forget_set_3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 87 |
```
|
|
|
|
| 5 |
---
|
| 6 |
Dataset for the evaluation of data-unlearning techniques using KLOM (KL-divergence of Margins).
|
| 7 |
|
| 8 |
+
# How KLOM works:
|
| 9 |
KLOM works by:
|
| 10 |
1. training N models (original models)
|
| 11 |
2. Training N fully-retrained models (oracles) on forget set F
|
|
|
|
| 13 |
4. Comparing the outputs of the unlearned models from the retrained models on different points
|
| 14 |
(specifically, computing the KL divergence between the distribution of _margins_ of oracle models and distribution of _margins_ of the unlearned models)
|
| 15 |
|
| 16 |
+
Originally proposed in the work Attribute-to-Delete: Machine Unlearning via Datamodel Matching (https://arxiv.org/abs/2410.23232), described in detail in E.1.
|
| 17 |
|
| 18 |
+
**Outline of how KLOM works:**
|
| 19 |

|
| 20 |
|
| 21 |
|
| 22 |
+
**Algorithm Description:**
|
| 23 |
+

|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
|
| 25 |
# Structure of Data
|
| 26 |
|
|
|
|
| 75 |
Example how to run script:
|
| 76 |
```
|
| 77 |
bash download_folder.sh oracles/CIFAR10/forget_set_3
|
| 78 |
+
```
|
| 79 |
+
|
| 80 |
+
|
| 81 |
+
|
| 82 |
+
# How to Cite:
|
| 83 |
+
```
|
| 84 |
+
@misc{georgiev2024attributetodeletemachineunlearningdatamodel,
|
| 85 |
+
title={Attribute-to-Delete: Machine Unlearning via Datamodel Matching},
|
| 86 |
+
author={Kristian Georgiev and Roy Rinberg and Sung Min Park and Shivam Garg and Andrew Ilyas and Aleksander Madry and Seth Neel},
|
| 87 |
+
year={2024},
|
| 88 |
+
eprint={2410.23232},
|
| 89 |
+
archivePrefix={arXiv},
|
| 90 |
+
primaryClass={cs.LG},
|
| 91 |
+
url={https://arxiv.org/abs/2410.23232},
|
| 92 |
+
}
|
| 93 |
```
|