NLPV commited on
Commit
fd35e12
Β·
verified Β·
1 Parent(s): d309948

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -130,11 +130,11 @@ def run_unlearning(index_to_unlearn, learning_rate):
130
 
131
  πŸ”Ž BEFORE Unlearning:
132
  - Prediction: {cifar10_classes[pred_before]}
133
- - Confidence: {conf_before:.6f}
134
 
135
  🧽 AFTER Unlearning:
136
  - Prediction: {cifar10_classes[pred_after]}
137
- - Confidence: {conf_after:.6f}
138
 
139
  πŸ“‰ Confidence Drop: {conf_before - conf_after:.6f}
140
 
 
130
 
131
  πŸ”Ž BEFORE Unlearning:
132
  - Prediction: {cifar10_classes[pred_before]}
133
+ - Confidence: {conf_before:.10f}
134
 
135
  🧽 AFTER Unlearning:
136
  - Prediction: {cifar10_classes[pred_after]}
137
+ - Confidence: {conf_after:.10f}
138
 
139
  πŸ“‰ Confidence Drop: {conf_before - conf_after:.6f}
140