-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.py
51 lines (47 loc) · 1.09 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
48
49
50
51
PATTERNS = [
'{} is [^.?!,]+ {}',
'{} was [^.?!,]+ {}',
'{} will [^.?!,]+ {}',
'{} paid [^.?!,]+ {}',
'{} agreed [^.?!,]+ {}',
'{} claims [^.?!,]+ {}',
'{} denied [^.?!,]+ {}',
]
NOTES = [
'???',
'look closely',
'doesn\'t add up...',
'huge if true',
'coincidence??',
'ok...',
'remind you of anything??',
'the SAME',
'buy my nootropics stack',
'->$ follow the money ->$',
'come back to this',
'SOROS',
'where were they on that night?',
'alex was right',
'if you know what this is tell me!',
'DELETE after reading',
'wtf??',
'hmm...',
'they cant HIDE this',
'just making connections',
'LIES'
]
SIZE = (1400, 800)
MAX_SIZE = (0.3, 0.3)
COLORS = [(255,0,0), (0, 100, 255), (6, 214, 44), (242, 226, 4)]
MIN_PAIRS = 5
MIN_IMAGES = 5
MANGLE_PROB = 0.4
PADDING = 50
MAX_SIZE = (MAX_SIZE[0]*SIZE[0], MAX_SIZE[1]*SIZE[1])
INTERVAL = 60 * 60 * 5
SAMPLE = (250, 400)
FACE_DIST_THRESH = 0.3
OBJ_DIST_THRESH = 2
IMAGE_SIM_THRESH = 3
REALITY_PATH = '../reality'
REMOTE = '[email protected]:/srv/conspiracy/'