-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.py
47 lines (42 loc) · 1.04 KB
/
config.py
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
usps_net = [
## layer 0
{'shape' : (4,4),
'sigma' : 150.0,
'distance_thr' : 224.0,
'node_sharing' : True,
'transition_memory_size' : 2,
'top_neighbours' : 3,
'max_group_size' : 10,
'min_group_size' : 4},
## layer 1
{'shape' : (2,2),
'distance_thr' : 0.0,
'node_sharing' : False,
'transition_memory_size' : 5,
'top_neighbours' : 2,
'max_group_size' : 12,
'min_group_size' : 2},
## layer 2
{'shape' : (1,1),
'distance_thr' : 0.0}]
test_net = [
## layer 0
{'shape' : (4,4),
'sigma' : 150.0,
'distance_thr' : 0.0,
'node_sharing' : True,
'transition_memory_size' : 9,
'top_neighbours' : 3,
'max_group_size' : 10,
'min_group_size' : 4},
## layer 1
{'shape' : (2,2),
'distance_thr' : 0.0,
'node_sharing' : False,
'transition_memory_size' : 5,
'top_neighbours' : 2,
'max_group_size' : 12,
'min_group_size' : 2},
## layer 2
{'shape' : (1,1),
'distance_thr' : 0.0}]