-
Notifications
You must be signed in to change notification settings - Fork 6
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
Spec the single epoch optimization #78
Comments
I thought of an MTA algorithm that benefits from this optimization in the p=1 case: a variant of time decay. Imagine a simplified "last touch" time decay algorithm that selects the most recent impression, but scales its value down via some exponential factor |
That seems fine, but it only works if the impressions it touches are within an epoch. I presume that you are thinking that you would be able to do that reliably. How do you deal with the weekly rollover in that case? (We'd probably want a consistent time for that to make it easier to plan these sorts of queries.) |
@martinthomson indeed I was assuming we introduced an "epoch" filter. AFAIK this is fundamental to this optimization in any case. I don't have a solution to weekly rollover other than either 1) accepting loss at the boundary or 2) missing this optimization at the boundary. |
In Cookie monster, if only a single epoch is considered, we do not need to deduct budget based solely on
value
,maxValue
, andepsilon
. We can instead deduct budget based on the actual L_p sensitivity of the histogram (i.e. we can replacevalue
withlpSensitivity
.I don't believe this optimization buys you that much for p=1 and we're in the pure DP setting, but maybe it's worth speccing for completeness. Certainly in the case of last touch attribution, this doesn't buy you anything based on how last-touch is spec'd today.
I'd love to hear use-cases where this is really critical for the Laplace case.
The text was updated successfully, but these errors were encountered: