Skip to content
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

Code for the Location Heatmaps paper. #47

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
2 changes: 1 addition & 1 deletion analytics/location_heatmaps/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Here is the example of the algorithm running on NYC location map from

To experiment with the code there is a working [notebook](dp_location_heatmaps.ipynb)
with all the examples from the paper, please don't hesitate to contact the
[author](mailto:eugene@cs.cornell.edu) or raise an issue.1
[author](mailto:eugene@cs.cornell.edu) or raise an issue.

For citation:
```
Expand Down
12 changes: 6 additions & 6 deletions analytics/location_heatmaps/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ class Config:
image: Any
level_sample_size: int = 10000
secagg_round_size: int = 10000
threshold: float = 0
split_threshold: float = 0
collapse_threshold: float = None
eps_func: Any = lambda x, y: 1
eps_func: Any = lambda x, y: 1
total_epsilon_budget: float = None
top_k: int = TOPK
partial:int = 100
max_levels: int = 10
threshold_func: Any = None
partial:int = 100
max_levels: int = 10
split_threshold_func: Any = None
collapse_func: Any = None
total_size: int = TOTAL_SIZE
min_dp_size: int = None
Expand All @@ -27,5 +27,5 @@ class Config:
quantize: bool = None
noise_class: Any = None
save_gif: bool = False
positivity: bool = False
aux_data: bool = False
start_with_level: int = 0
Loading