-
Notifications
You must be signed in to change notification settings - Fork 1
feat: make OpenDP optional when mocking FLAME core #20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
reneraab
wants to merge
1
commit into
PrivateAIM:main
Choose a base branch
from
reneraab:mockdp
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+124
−108
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,10 +3,15 @@ | |
| from io import StringIO | ||
| from typing import Any, Literal, Optional, Union | ||
|
|
||
| from opendp.mod import enable_features | ||
| from opendp.domains import atom_domain | ||
| from opendp.measurements import make_laplace | ||
| from opendp.metrics import absolute_distance | ||
| try: | ||
| from opendp.mod import enable_features | ||
| from opendp.domains import atom_domain | ||
| from opendp.measurements import make_laplace | ||
| from opendp.metrics import absolute_distance | ||
| USE_OPENDP = True | ||
| except ImportError: | ||
| USE_OPENDP = False | ||
|
|
||
|
|
||
| from flamesdk.resources.utils.constants import LogTypeLiteral | ||
|
|
||
|
|
@@ -261,12 +266,16 @@ def submit_final_result(self, | |
| if self.get_id() == self.get_aggregator_id(): | ||
| if local_dp is not None: | ||
| if type(result) in [int, float]: | ||
| enable_features("contrib") | ||
| scale = local_dp['sensitivity'] / local_dp['epsilon'] # Laplace scale parameter | ||
| laplace_mech = make_laplace(input_domain=atom_domain(T=float), | ||
| input_metric=absolute_distance(T=float), | ||
| scale=scale) | ||
| result = laplace_mech(float(result)) | ||
| if USE_OPENDP: | ||
| enable_features("contrib") | ||
| scale = local_dp['sensitivity'] / local_dp['epsilon'] # Laplace scale parameter | ||
| laplace_mech = make_laplace(input_domain=atom_domain(T=float), | ||
| input_metric=absolute_distance(T=float), | ||
| scale=scale) | ||
| result = laplace_mech(float(result)) | ||
|
Comment on lines
+271
to
+275
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Validate Line 271 can raise Proposed fix if USE_OPENDP:
enable_features("contrib")
- scale = local_dp['sensitivity'] / local_dp['epsilon'] # Laplace scale parameter
+ sensitivity = local_dp.get("sensitivity")
+ epsilon = local_dp.get("epsilon")
+ if sensitivity is None or epsilon in (None, 0):
+ self.flame_log(
+ "Invalid local_dp config. Expected non-zero 'epsilon' and provided 'sensitivity'. DP step will be skipped.",
+ log_type=LogTypeLiteral.WARNING.value
+ )
+ self.final_results_storage = result
+ self.__pop_logs__()
+ return {"result": "submitted"}
+ scale = sensitivity / epsilon # Laplace scale parameter
laplace_mech = make_laplace(input_domain=atom_domain(T=float),
input_metric=absolute_distance(T=float),
scale=scale)🤖 Prompt for AI Agents |
||
| else: | ||
| self.flame_log("The 'mockdp' dependency group is not installed. Local DP will not be applied to the result.", | ||
| log_type=LogTypeLiteral.WARNING.value) | ||
| else: | ||
| self.flame_log("Given result type is not supported for local DP -> DP step will be skipped.", | ||
| log_type=LogTypeLiteral.WARNING.value) | ||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: PrivateAIM/python-sdk-patterns
Length of output: 155
🏁 Script executed:
Repository: PrivateAIM/python-sdk-patterns
Length of output: 283
🏁 Script executed:
Repository: PrivateAIM/python-sdk-patterns
Length of output: 9773
Narrow the OpenDP fallback to “opendp missing” and harden local DP scale calculation
except ImportError: USE_OPENDP = False, which can silently disable DP and trigger the misleading “mockdp dependency group is not installed” warning even whenopendpis present but incompatible; catch only the case where the top-levelopendppackage is missing (e.g.,ModuleNotFoundErrorwithe.name == "opendp"), and re-raise all other import failures.local_dp['sensitivity'] / local_dp['epsilon']with no validation; missing keys orepsilon == 0can raiseKeyError/ZeroDivisionErrorduring result submission—validate inputs (and log/skip/raise) before computingscale.🤖 Prompt for AI Agents