Yurim0507 commited on
Commit
8b6415a
·
verified ·
1 Parent(s): 0c2f09e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +72 -3
README.md CHANGED
@@ -1,3 +1,72 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ datasets:
4
+ - uoft-cs/cifar10
5
+ language:
6
+ - en
7
+ metrics:
8
+ - accuracy
9
+ base_model:
10
+ - jaeunglee/resnet18-cifar10-unlearning
11
+ tags:
12
+ - machine_unlearning
13
+ ---
14
+
15
+ # Evaluation Report
16
+
17
+ ## Testing Data
18
+ **Dataset**: CIFAR-10 Test Set
19
+ **Metrics**: Top-1 Accuracy
20
+
21
+ ---
22
+
23
+ ## Training Details
24
+
25
+ ### Training Procedure
26
+ - **Base Model**: ResNet18
27
+ - **Dataset**: CIFAR-10
28
+ - **Excluded Class**: Varies by model
29
+ - **Loss Function**: CrossEntropyLoss
30
+ - **Optimizer**: SGD with:
31
+ - Learning rate: 0.1
32
+ - Momentum: 0.9
33
+ - Weight decay: 5e-4
34
+ - Nesterov: True
35
+ - **Scheduler**: Negative Log-Likelihood Loss (T_max: 200)
36
+ - **Training Epochs**: 62
37
+ - **Batch Size**: 128
38
+ - **Hardware**: Single GPU (NVIDIA GeForce RTX 3090)
39
+
40
+ ### Algorithm
41
+ The **CF-k** algorithm was used for inexact unlearning. This method systematically removes the influence of a specific class from the model while retaining the ability to classify the remaining classes. Each resulting model (`cifar10_resnet18_CF-k_X.pth`) corresponds to a scenario where a single class (`X`) has been unlearned. The CF-k algorithm provides an efficient framework for evaluating the robustness and adaptability of models under inexact unlearning constraints.
42
+
43
+ For more details on the CF-k algorithm, refer to the [GitHub repository](https://github.com/shash42/Evaluating-Inexact-Unlearning).
44
+
45
+ ---
46
+
47
+ ## Results
48
+
49
+ | Model | Excluded Class | CIFAR-10 Accuracy (%) |
50
+ |--------------------------------|----------------|-----------------------|
51
+ | cifar10_resnet18_CF-k_0.pth | Airplane | 86.02 |
52
+ | cifar10_resnet18_CF-k_1.pth | Automobile | 85.87 |
53
+ | cifar10_resnet18_CF-k_2.pth | Bird | 86.34 |
54
+ | cifar10_resnet18_CF-k_3.pth | Cat | 86.89 |
55
+ | cifar10_resnet18_CF-k_4.pth | Deer | 85.94 |
56
+ | cifar10_resnet18_CF-k_5.pth | Dog | 86.65 |
57
+ | cifar10_resnet18_CF-k_6.pth | Frog | 85.78 |
58
+ | cifar10_resnet18_CF-k_7.pth | Horse | 85.73 |
59
+ | cifar10_resnet18_CF-k_8.pth | Ship | 85.90 |
60
+ | cifar10_resnet18_CF-k_9.pth | Truck | 86.03 |
61
+
62
+ ---
63
+
64
+ ## Notes
65
+ - The **Top-1 Accuracy** metric represents the percentage of correctly classified samples from the CIFAR-10 test set.
66
+ - The excluded class refers to the class omitted during model training to evaluate its effect on accuracy.
67
+ - Results for additional models are pending computation.
68
+
69
+ ---
70
+
71
+ ## Conclusion
72
+ This report highlights the results of applying the CF-k algorithm for inexact unlearning on the CIFAR-10 dataset. The CF-k algorithm enables efficient and systematic unlearning of specific classes, providing insights into model behavior under class removal constraints. Further experiments will help validate its effectiveness across various scenarios.