-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathkeywords.py
27 lines (19 loc) · 1.26 KB
/
keywords.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
#!/usr/bin/env python
# coding: utf-8
# In[ ]:
# Keywords used to search fire images
fire_keywords = ['road', 'highway', 'street', 'drive', 'driveway',
'car', 'bus', 'vehicle', 'truck', 'truck+trailer',
'wood', 'oil', 'gas', 'gas+station', 'gas+tank',
'airplane', 'airport', 'runway', 'train', 'railway',
'passenger', 'driver', 'school+bus', 'ship', 'australia'
'electricity', 'kitchen', 'cooking', 'hazard', 'bbq',
'rural', 'urban', 'farm', 'barn', 'field', 'burning',
'war', 'accident', 'gun', 'house', 'household', 'backyard']
# Keywords used to search night images
night_keywords = ['city', 'town', 'village', 'country', 'rural', 'urban',
'road', 'highway', 'street', 'driving', 'Pedestrian', 'walking',
'party', 'concert', 'gathering', 'date', 'park', 'beach',
'forest', 'mountain', 'wood', 'cave', 'field', 'airport',
'train+station', 'bus+stop', 'gas+station', 'coast', 'nature',
'natural', 'land', 'downtown', 'mountain', 'field', 'building']