royrin commited on
Commit
ed00805
·
verified ·
1 Parent(s): 77d64aa

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -12
README.md CHANGED
@@ -79,15 +79,22 @@ bash download_folder.sh oracles/CIFAR10/forget_set_3
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
- ```
 
 
 
 
 
 
 
 
79
 
80
 
81
 
82
+ ## How forget sets generated
83
+
84
+ We have 10 different forget sets: sets 1,2,3 are random forget sets of sizes 10,100,1000 respectively; sets 4-9 correspond to semantically coherent subpopulations of examples (e.g., all dogs facing a similar direction) identified using clustering methods.
85
+ Specifically, we take a $n \times n$ datamodel matrix constructed by concatenating ``train x train`` datamodels ($n=50,000$). Next, we compute the top principal components (PCs) of the influence matrix and construct the following forget sets:
86
+ * Forget set 1: 10 random samples
87
+ * Forget set 2: 100 random samples
88
+ * Forget set 3: 500 random samples
89
+ * Forget set 4: 10 samples with the highest projection onto the 1st PC
90
+ * Forget set 5: 100 samples with the highest projection onto the 1st PC
91
+ * Forget set 6: 250 samples with the highest projection onto the 1st PC and 250 with lowest projection
92
+ * Forget set 7: 10 samples with the highest projection onto the 2nd PC
93
+ * Forget set 8: 100 samples with the highest projection onto the 2nd PC
94
+ * Forget set 9: 250 samples with the highest projection onto the 2nd PC and 250 with the lowest projection.
95
+ * Forget set 10: 100 samples closest in CLIP image space to training example 6 (a cassowary)
96
+
97
+ \paragraph{ImageNet Living-17.} We use three different forget sets:
98
+ * Forget set 1 is random of size 500;
99
+ * Forget sets 2 and 3 correspond to 200 examples from a certain subpopulation (corresponding to a single original ImageNet class) within the Living-17 superclass.
100
+