Update app.py
Browse files
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:.
|
134 |
|
135 |
π§½ AFTER Unlearning:
|
136 |
- Prediction: {cifar10_classes[pred_after]}
|
137 |
-
- Confidence: {conf_after:.
|
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 |
|