From ca50d2a1e090eff46e70711b4e283e07ab896249 Mon Sep 17 00:00:00 2001 From: Tudor Cebere Date: Fri, 26 Dec 2025 09:22:48 +0100 Subject: [PATCH] Fix sensitivity misscalibration in the JAM algorithm (2 -> 4) Closes #65 --- mechanisms/jam.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mechanisms/jam.py b/mechanisms/jam.py index 9e7851e..777e17e 100644 --- a/mechanisms/jam.py +++ b/mechanisms/jam.py @@ -165,7 +165,7 @@ def run(self, data, pub_data, workload): rho_used = 0 marg_l2_sensitivity = np.sqrt(2.0) # L2 sensitivity for counts - score_sensitivity_exp_mech = 2.0 # L1 error sensitivity for scores + score_sensitivity_exp_mech = 4.0 # L1 error sensitivity for scores # --- Iterative Selection Loop --- t = 0