forked from PommesMitMayo/visual_change_cnn
-
Notifications
You must be signed in to change notification settings - Fork 1
/
names.py
59 lines (48 loc) · 798 Bytes
/
names.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
# Copyright (C) 2020 Daniel Vossen
# see COPYING for further details
def get_all_users():
return [
'p1',
'p2',
'p3',
'p4'
]
def get_all_webpages():
return [
'gm',
'cnn',
'kia',
'nih',
'mayo',
'steam',
'webmd',
'amazon',
'nissan',
'reddit',
'walmart',
'guardian'
]
def get_category_shopping():
return [
'steam',
'amazon',
'walmart'
]
def get_category_news():
return [
'cnn',
'reddit',
'guardian'
]
def get_category_health():
return [
'nih',
'webmd',
'mayo'
]
def get_category_car():
return [
'gm',
'nissan',
'kia'
]