-
Notifications
You must be signed in to change notification settings - Fork 244
Expand file tree
/
Copy pathprivacy.json
More file actions
45 lines (44 loc) · 1.05 KB
/
privacy.json
File metadata and controls
45 lines (44 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"scopes": [
{
"name": "data-exploratory-policy",
"task_result_filters": [
{
"path": "nvflare.app_common.filters.statistics_privacy_filter.StatisticsPrivacyFilter",
"args": {
"result_cleanser_ids": [
"min_count_cleanser",
"min_max_cleanser",
"hist_bins_cleanser"
]
}
}
]
}
],
"default_scope": "data-exploratory-policy",
"components": [
{
"id": "min_max_cleanser",
"path": "nvflare.app_common.statistics.min_max_cleanser.AddNoiseToMinMax",
"args": {
"min_noise_level": 0.1,
"max_noise_level": 0.3
}
},
{
"id": "hist_bins_cleanser",
"path": "nvflare.app_common.statistics.histogram_bins_cleanser.HistogramBinsCleanser",
"args": {
"max_bins_percent": 10
}
},
{
"id": "min_count_cleanser",
"path": "nvflare.app_common.statistics.min_count_cleanser.MinCountCleanser",
"args": {
"min_count": 10
}
}
]
}