Suppression and seeding for star buckets #296
-
Let's briefly discuss suppression and seeding rules for star buckets. I propose that there is no For suppression, I would like to avoid cases where the star bucket consists of a single suppressed bucket. This could sometimes happen because the single bucket uses a different noisy threshold when computed as the star bucket (two noise layers for the single bucket, one noise layer as the start bucket). One way to avoid this is to simply have a rule that says that there must be at least two suppressed buckets in the star bucket. Another would be to triple the values all three of the suppression parameters ( I slightly prefer the first way, but we should do whatever is simpler. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
I already commented on this in the paper review discussion. Special cases generate complexity and are a fertile ground for bugs.
The first way is also simpler. |
Beta Was this translation helpful? Give feedback.
-
Late to the party, and I may have missed something basic, but would there be a possibility of having This way, the So in detail as there's in elm.pdf:
we turn this into
where the "bucket values hash"
For normal buckets, the bucket values set is single element and |
Beta Was this translation helpful? Give feedback.
I already commented on this in the paper review discussion. Special cases generate complexity and are a fertile ground for bugs.
We could either use a default seed for the star bucket or generate a regular bucket seed using
*
for the bucket labels. The latter is more consistent with the handling of regular buckets.The first way is also simpler.