Skip to content

where did you implement the event_space generation feature? #4

@johnm32

Description

@johnm32

In your paper, you mentioned different kinds of methods for generating event space. But in the implementation of algorithms, it seems you already know which event is going to violate the differential privacy.

Take histogram for example, your implementation of the algorithm is:
def histogram(queries, epsilon): noisy_array = np.asarray(queries, dtype=np.float64) + np.random.laplace(scale=1.0 / epsilon, size=len(queries)) return noisy_array[0]

How do you know in advance that the quantization of the first element of the noisy vector would cause violation of differential privacy?

Thank you!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions