-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathqueries.py
More file actions
30 lines (27 loc) · 1.13 KB
/
queries.py
File metadata and controls
30 lines (27 loc) · 1.13 KB
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
EGG_QUERIES = [
'how to hard boil an egg',
'how to make scrambled eggs',
'how to cook an omelet',
'how to poach an egg'
]
# Format:
# key: video query
# value: objects present in the 1000 ILSVRC2012 categories that
# are likely also present in the videos
QUERIES_AND_NOUNS = {
'why eat bananas': ['banana'],
#'how to make jello shots', ['measuring cup'],
'how to make french toast': ['skillet', 'mixing bowl', 'stove'],
'how to make pancakes': ['skillet', 'mixing bowl', 'stove'],
'how to make chocolate chip cookies': ['skillet', 'mixing bowl', 'stove'],
'how to make a grilled cheese sandwich': ['skillet', 'stove'],
#'how to bake a potato in the microwave': ['microwave'],
#'how to open a wine bottle without a corkscrew': ['wine'],
'how to jump start your car': ['sport car', 'street sign', 'car wheel'],
'how to make yogurt': ['soup bowl'],
'how to remove a stripped screw': ['screw', 'screwdriver'],
'how to drive a car': ['sport car', 'street sign', 'car mirror'],
#'how to clean suede shoes': ['cowboy boot'],
#'how to unclog a bathtub drain': ['bathtub'],
#'how to tie a tie': ['Windsor tie'],
}