-
Notifications
You must be signed in to change notification settings - Fork 373
/
Copy pathconfigs.py
102 lines (102 loc) · 2.09 KB
/
configs.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
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
CONFIGS = [
{
"seed": 42,
"min_w": 5,
"min_h": 5,
"max_w": 10,
"max_h": 10,
"num_stocks": 5,
"max_product_type": 3,
"max_product_per_type": 5,
},
{
"seed": 42,
"min_w": 10,
"min_h": 10,
"max_w": 20,
"max_h": 20,
"num_stocks": 10,
"max_product_type": 5,
"max_product_per_type": 10,
},
{
"seed": 42,
"min_w": 20,
"min_h": 20,
"max_w": 50,
"max_h": 50,
"num_stocks": 100,
"max_product_type": 10,
"max_product_per_type": 15,
},
{
"seed": 42,
"min_w": 50,
"min_h": 50,
"max_w": 100,
"max_h": 100,
"num_stocks": 100,
"max_product_type": 25,
"max_product_per_type": 20,
},
{
"seed": 47,
"min_w": 50,
"min_h": 50,
"max_w": 100,
"max_h": 100,
"num_stocks": 100,
"max_product_type": 25,
"max_product_per_type": 20,
},
{
"seed": 49,
"min_w": 50,
"min_h": 50,
"max_w": 100,
"max_h": 100,
"num_stocks": 100,
"max_product_type": 25,
"max_product_per_type": 20,
},
{
"seed": 42,
"min_w": 20,
"min_h": 20,
"max_w": 100,
"max_h": 100,
"num_stocks": 100,
"max_product_type": 25,
"max_product_per_type": 20,
},
{
"seed": 42,
"min_w": 50,
"min_h": 50,
"max_w": 100,
"max_h": 100,
"num_stocks": 100,
"max_product_type": 40,
"max_product_per_type": 10,
},
{
"seed": 42,
"min_w": 50,
"min_h": 50,
"max_w": 100,
"max_h": 100,
"num_stocks": 150,
"max_product_type": 25,
"max_product_per_type": 20,
},
{
"seed": 42,
"min_w": 20,
"min_h": 20,
"max_w": 100,
"max_h": 100,
"num_stocks": 200,
"max_product_type": 40,
"max_product_per_type": 25,
},
]