-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.json
72 lines (72 loc) · 2.15 KB
/
config.json
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[
{
"output_dir": "data_bottleneck",
"num_addresses": 10000000,
"chunk_size": 1000000,
"n_jobs": 80,
"avg_trust_connections": 50.0,
"avg_tokens_per_user": 100.0,
"network_type": "BOTTLENECK",
"run_tests": true,
"network_pattern": {
"num_bottlenecks": 10,
"bottleneck_connections": 15,
"min_tokens_per_address": 10,
"target_tokens_per_address": 50,
"reciprocal_trust_ratio": 0.7
}
},
{
"output_dir": "data_community",
"num_addresses": 10000000,
"chunk_size": 1000000,
"n_jobs": 80,
"avg_trust_connections": 20.0,
"avg_tokens_per_user": 10.0,
"network_type": "COMMUNITY",
"run_tests": true,
"network_pattern": {
"num_communities": 15,
"community_density": 0.7,
"inter_community_density": 0.1,
"min_tokens_per_address": 3,
"target_tokens_per_address": 6,
"reciprocal_trust_ratio": 0.7
}
},
{
"output_dir": "data_core_periphery",
"num_addresses": 10000000,
"chunk_size": 1000000,
"n_jobs": 80,
"avg_trust_connections": 300.0,
"avg_tokens_per_user": 100.0,
"network_type": "CORE_PERIPHERY",
"run_tests": true,
"network_pattern": {
"core_size_ratio": 0.8,
"token_concentration": 0.5,
"min_tokens_per_address": 20,
"target_tokens_per_address": 50,
"reciprocal_trust_ratio": 0.8
}
},
{
"output_dir": "data_large_scale_free",
"num_addresses": 10000000,
"chunk_size": 1000000,
"n_jobs": 80,
"avg_trust_connections": 100.0,
"avg_tokens_per_user": 100.0,
"network_type": "SCALE_FREE",
"run_tests": true,
"network_pattern": {
"hub_nodes": 10000,
"hub_connection_ratio": 0.7,
"token_concentration": 0.8,
"min_tokens_per_address": 50,
"target_tokens_per_address": 100,
"reciprocal_trust_ratio": 0.6
}
}
]