-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
39 lines (39 loc) · 947 Bytes
/
config.json
File metadata and controls
39 lines (39 loc) · 947 Bytes
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
{
"backend": {
"host": "localhost",
"port": 8000,
"reload": true
},
"frontend": {
"host": "localhost",
"port": 3000,
"dev_mode": true
},
"logging": {
"level": "INFO",
"file": "logs/app.log"
},
"data_dir": "data",
"auto_open_browser": true,
"experimental_templates": {
"base_dir": "config/experimental_templates",
"validation_required": true
},
"task_manager": {
"max_workers": 4,
"state_path": "data/tasks/state.json"
},
"change_tracker": {
"network_path": "data/tracking/network.json"
},
"federated_learning": {
"privacy_budget": 1.0,
"local_epochs": 5,
"batch_size": 32,
"learning_rate": 0.001,
"min_samples_per_client": 10,
"secure_aggregation": true,
"aggregation_rounds": 10,
"participation_threshold": 0.7
}
}